.elementor-7 .elementor-element.elementor-element-c47162d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-7 .elementor-element.elementor-element-c8d9000{width:100%;max-width:100%;}@media(min-width:768px){.elementor-7 .elementor-element.elementor-element-c47162d{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-c8d9000 */@tailwind base;
@tailwind components;
@tailwind utilities;

/* Definition of the design system. All colors, gradients, fonts, etc should be defined here. 
All colors MUST be HSL.
*/

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 210 100% 19.6%; /* #073463 */
    --primary-foreground: 0 0% 100%;
    --primary-accent: 195 88% 55%; /* Accent blue */

    --secondary: 210 20% 96%;
    --secondary-foreground: 210 100% 19.6%;

    --muted: 210 20% 96%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --accent: 195 88% 55%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 210 100% 19.6%;

    --radius: 0.5rem;

    /* Custom design tokens */
    --gradient-primary: linear-gradient(135deg, hsl(210 100% 19.6%), hsl(195 88% 55%));
    --gradient-hero: linear-gradient(135deg, hsl(210 100% 19.6%) 0%, hsl(210 85% 25%) 100%);
    --shadow-elegant: 0 20px 40px -10px hsl(210 100% 19.6% / 0.15);
    --shadow-premium: 0 10px 30px -5px hsl(195 88% 55% / 0.2);
    
    /* Premium color palette */
    --premium-gold: 45 100% 65%;
    --premium-platinum: 200 10% 85%;
    --success-green: 142 76% 36%;

    --sidebar-background: 0 0% 98%;
    --sidebar-foreground: 240 5.3% 26.1%;
    --sidebar-primary: 240 5.9% 10%;
    --sidebar-primary-foreground: 0 0% 98%;
    --sidebar-accent: 240 4.8% 95.9%;
    --sidebar-accent-foreground: 240 5.9% 10%;
    --sidebar-border: 220 13% 91%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }

  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;

    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;

    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;

    --primary: 210 100% 19.6%;
    --primary-foreground: 0 0% 100%;
    --primary-accent: 195 88% 55%;

    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;

    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;

    --accent: 195 88% 55%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;

    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 195 88% 55%;
    
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 224.3 76.3% 48%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 217.2 91.2% 59.8%;
  }
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply bg-background text-foreground font-sans;
  }
}

@layer components {
  /* Top Bar */
  .top-bar {
    background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(210 85% 25%) 100%);
    animation: pulse 3s ease-in-out infinite;
  }
  
  /* Hero Section */
  .hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    position: relative;
    background-attachment: fixed;
  }
  
  .hero-overlay {
    background: linear-gradient(135deg, 
      hsl(210 100% 19.6% / 0.95) 0%, 
      hsl(210 85% 25% / 0.9) 50%,
      hsl(195 88% 55% / 0.1) 100%);
    backdrop-filter: blur(1px);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: hsl(var(--primary-foreground));
    text-shadow: 0 4px 20px hsl(0 0% 0% / 0.3);
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: hsl(var(--primary-foreground) / 0.9);
    line-height: 1.6;
  }
  
  .text-primary-accent {
    color: hsl(var(--primary-accent));
    text-shadow: 0 0 30px hsl(var(--primary-accent) / 0.5);
  }
  
  /* Social Icons */
  .social-icon {
    @apply w-12 h-12 rounded-full flex items-center justify-center transition-all duration-300 hover:scale-110;
    box-shadow: var(--shadow-premium);
  }
  
  .social-icon.youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
  }
  
  .social-icon.instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4, #FD1D1D);
    color: white;
  }
  
  .social-icon.facebook {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
    color: white;
  }
  
  .social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
  }
  
  /* Form Styles */
  .lead-form {
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, 
      hsl(0 0% 100% / 0.95) 0%, 
      hsl(var(--primary) / 0.02) 100%);
    border: 2px solid hsl(var(--primary) / 0.1);
    box-shadow: 
      var(--shadow-elegant),
      inset 0 1px 0 hsl(0 0% 100% / 0.6);
    position: relative;
    overflow: hidden;
  }
  
  .lead-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
      transparent 0%, 
      hsl(var(--primary-accent) / 0.1) 50%, 
      transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
  }
  
  @keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    text-align: center;
  }
  
  .form-input {
    @apply border-2 focus:border-primary/50 transition-colors duration-300;
    background: hsl(0 0% 100%);
  }
  
  .cta-button {
    background: var(--gradient-primary);
    @apply text-white font-bold py-4 px-8 rounded-lg transition-all duration-300 hover:scale-105;
    box-shadow: var(--shadow-elegant);
  }
  
  /* Section Styles */
  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: hsl(var(--primary));
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: hsl(var(--muted-foreground));
    text-align: center;
    line-height: 1.6;
  }
  
  /* Video Section */
  .video-section {
    background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--secondary)) 100%);
  }
  
  .video-wrapper {
    box-shadow: var(--shadow-elegant);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -10px hsl(210 100% 19.6% / 0.2);
  }
  
  .bg-gradient-primary {
    background: var(--gradient-primary);
  }
  
  .play-button {
    @apply w-20 h-20 rounded-full bg-white/20 flex items-center justify-center transition-all duration-300 hover:scale-110;
    backdrop-filter: blur(10px);
  }
  
  /* Before After Cards */
  .before-after-card {
    @apply transition-all duration-300 hover:scale-105;
  }
  
  .patient-photo {
    background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--border)));
    @apply shadow-lg;
  }
  
  /* Problem Cards */
  .problem-card {
    @apply text-center transition-all duration-300 hover:scale-105;
  }
  
  .problem-image {
    background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--border)));
    @apply shadow-lg;
  }
  
  .problem-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
  }
  
  .problem-description {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  /* Testimonial Cards */
  .video-testimonial {
    @apply transition-all duration-300 hover:scale-105;
  }
  
  .video-thumb {
    @apply cursor-pointer;
    box-shadow: var(--shadow-premium);
  }
  
  .testimonial-card {
    @apply transition-all duration-300 hover:scale-105;
    box-shadow: var(--shadow-premium);
  }
  
  .testimonial-text {
    color: hsl(var(--muted-foreground));
    font-style: italic;
    line-height: 1.6;
  }
  
  .testimonial-author {
    @apply flex items-center gap-3;
  }
  
  .author-name {
    font-weight: 600;
    color: hsl(var(--primary));
  }
  
  .author-info {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
  }
  
  /* Footer */
  .footer-title {
    font-size: 2rem;
    font-weight: 700;
  }
  
  .footer-cta {
    @apply border-white text-white hover:bg-white hover:text-primary transition-all duration-300;
  }
  
  .shadow-elegant {
    box-shadow: var(--shadow-elegant);
  }
  
  /* Enhanced animations and effects */
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  .floating {
    animation: float 3s ease-in-out infinite;
  }
  
  /* Improved card hover effects */
  .enhanced-card {
    @apply transition-all duration-500 hover:scale-105;
    box-shadow: var(--shadow-premium);
  }
  
  .enhanced-card:hover {
    box-shadow: 
      0 20px 40px -10px hsl(var(--primary) / 0.2),
      0 0 30px hsl(var(--primary-accent) / 0.1);
  }
  
  /* Gradient text effect */
  .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}/* End custom CSS */