/* ===== DESIGN SYSTEM - JEANE BEAUTY CLINIC ===== */

/* === CSS Variables === */
:root {
      /* Colors - Inspired by gradient (pink/turquoise/peach) */
      --primary: #7ec8c8;
      /* Turquoise */
      --primary-light: #a8dede;
      /* Light turquoise */
      --primary-dark: #5db3b3;
      /* Dark turquoise */
      --secondary: #e8b4b8;
      /* Soft pink */
      --secondary-light: #f5d5d8;
      /* Light pink */
      --accent: #f5ebe0;
      /* Cream/Peach */
      --accent-warm: #fae1d0;
      /* Warm peach */
      --gold: #c4a574;
      /* Gold for logo compatibility */

      /* Neutrals */
      --text: #2d3436;
      --text-light: #636e72;
      --text-muted: #b2bec3;
      --white: #ffffff;
      --background: #fdfcfb;
      --background-alt: #f8f6f3;

      /* Gradients */
      --gradient-hero: linear-gradient(135deg, #f5ebe0 0%, #e8d5d0 50%, #d4e7e7 100%);
      --gradient-cta: linear-gradient(135deg, #7ec8c8 0%, #5db3b3 100%);
      --gradient-pink: linear-gradient(135deg, #e8b4b8 0%, #f5d5d8 100%);

      /* Typography */
      --font-heading: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

      /* Spacing */
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 1.5rem;
      --spacing-lg: 2rem;
      --spacing-xl: 3rem;
      --spacing-2xl: 4rem;
      --spacing-3xl: 6rem;

      /* Border Radius */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 9999px;

      /* Shadows */
      --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
      --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);

      /* Transitions */
      --transition-fast: 0.15s ease;
      --transition-base: 0.3s ease;
      --transition-slow: 0.5s ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

html {
      scroll-behavior: smooth;
      font-size: 16px;
}

body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text);
      background-color: var(--background);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}

img {
      max-width: 100%;
      height: auto;
      display: block;
}

a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition-base);
}

ul,
ol {
      list-style: none;
}

/* === Container === */
.container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 var(--spacing-lg);
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
      font-family: var(--font-heading);
      font-weight: 500;
      line-height: 1.2;
      color: var(--text);
}

.section-badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: var(--spacing-sm);
}

.section-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: var(--spacing-md);
}

.section-title-lg {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: var(--spacing-lg);
}

/* === Buttons === */
.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--spacing-xs);
      padding: 0.875rem 1.75rem;
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      border: none;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: var(--transition-base);
      white-space: nowrap;
}

.btn-primary {
      background: var(--primary);
      color: var(--white);
      position: relative;
      overflow: hidden;
}

.btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
}

.btn-primary:active::after {
      opacity: 1;
}

.btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
}

.btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--text);
}

.btn-outline:hover {
      background: var(--text);
      color: var(--white);
}

.btn-white {
      border-color: var(--white);
      color: var(--white);
}

.btn-white:hover {
      background: var(--white);
      color: var(--primary);
}

.btn-text {
      background: none;
      padding: 0;
      color: var(--text-light);
}

.btn-text:hover {
      color: var(--primary);
}

.btn-lg {
      padding: 1rem 2rem;
      font-size: 1rem;
}

.btn-submit {
      width: 100%;
      padding: 1rem;
}

/* === Header === */
.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: var(--transition-base);
}

.header.scrolled {
      box-shadow: var(--shadow-md);
}

.nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
}

.logo {
      display: flex;
      align-items: center;
}

.logo-img {
      height: 50px;
      width: auto;
}

.logo-img-footer {
      filter: brightness(0) invert(1);
      height: 40px;
}

.nav-links {
      display: flex;
      align-items: center;
      gap: var(--spacing-xl);
}

.nav-link {
      font-size: 0.875rem;
      font-weight: 400;
      color: var(--text-light);
      position: relative;
}

.nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--primary);
      transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
      width: 100%;
}

.nav-link:hover,
.nav-link.active {
      color: var(--text);
}

.nav-buttons {
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
}

.nav-buttons .btn {
      padding: 0.625rem 1.25rem;
      font-size: 0.8125rem;
}

.mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
}

.mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      transition: var(--transition-base);
}

/* === Header Float - Human Academy Style === */
.header-float {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      transition: all 0.3s ease;
}

.header-float.scrolled {
      top: 12px;
}

.nav-pill {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      background: #2a2a2a;
      padding: 0.5rem 0.5rem 0.5rem 1.5rem;
      border-radius: 50px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-pill-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
}

.nav-pill-link {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 0.625rem 1rem;
      font-size: 0.875rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      transition: all 0.2s ease;
      white-space: nowrap;
      position: relative;
}

.nav-pill-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--primary-light);
      transition: width 0.3s ease, left 0.3s ease;
      border-radius: 2px;
}

.nav-pill-link:hover::after {
      width: calc(100% - 2rem);
      left: 1rem;
}

.nav-pill-link:hover {
      color: #ffffff;
}

.nav-pill-link-dropdown svg {
      opacity: 0.6;
      transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-pill-link-dropdown svg {
      transform: rotate(180deg);
}

/* Center Icon */
.nav-pill-center {
      margin: 0 1.5rem;
}

.nav-pill-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(91, 191, 181, 0.2) 0%, rgba(126, 200, 200, 0.3) 100%);
      border-radius: 50%;
      color: var(--primary-light);
      animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

      0%,
      100% {
            opacity: 0.7;
            transform: scale(1);
      }

      50% {
            opacity: 1;
            transform: scale(1.05);
      }
}

/* Right Side */
.nav-pill-right {
      display: flex;
      align-items: center;
      gap: 0.25rem;
}

/* CTA Button */
.nav-pill-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0.75rem 1.25rem;
      margin-left: 0.5rem;
      background: #5BBFB5;
      color: #1a1a1a;
      font-size: 0.875rem;
      font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
}

.nav-pill-cta:hover {
      background: #4aada3;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(91, 191, 181, 0.4);
}

.nav-pill-cta svg {
      transition: transform 0.3s ease;
}

.nav-pill-cta:hover svg {
      transform: translateX(4px);
}

/* Mobile Menu Button */
.nav-pill-mobile-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      margin-left: 0.5rem;
}

.nav-pill-mobile-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 2px;
      transition: all 0.3s ease;
}

/* Navbar Responsive */
/* Navbar Responsive - Fix for centering */
/* Navbar Responsive - Fix for centering */
@media (max-width: 900px) {

      .nav-pill-links,
      .nav-pill-right .nav-pill-link {
            display: none !important;
      }

      /* CTA Button - Absolute Center */
      .nav-pill-right {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
            width: auto;
            display: flex;
            justify-content: center;
            z-index: 5;
      }

      /* Hamburger Menu - Right Anchor */
      .nav-pill-mobile-btn {
            display: flex !important;
            /* Force visible */
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            position: relative;
            z-index: 10;
            background: none;
            border: none;
            padding: 8px;
            margin: 0;
            margin-left: auto;
            /* Push to right */
      }

      .nav-pill-mobile-btn span {
            display: block;
            width: 20px;
            height: 2px;
            background: #fff;
            margin: 2px 0;
            border-radius: 2px;
            transition: 0.3s;
      }

      .nav-pill {
            padding: 0.5rem 0.25rem;
            display: flex;
            justify-content: flex-end;
            /* Align hamburger to right */
            gap: 0;
            position: relative;
            min-height: 56px;
            width: 100%;
      }

      .nav-pill-cta {
            margin-left: 0;
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
            white-space: nowrap;
      }
}

@media (max-width: 480px) {
      .header-float {
            top: 10px;
            width: 94%;
            max-width: 380px;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
      }

      .nav-pill-mobile-btn {
            width: 40px;
      }

      .nav-pill-cta {
            font-size: 0.75rem;
            padding: 0.5rem 0.8rem;
            margin-right: 0;
      }

      .nav-pill-cta svg {
            display: none;
      }
}


.hero {
      padding-top: 120px;
      padding-bottom: var(--spacing-3xl);
      background: var(--gradient-hero);
      min-height: 100vh;
      display: flex;
      align-items: center;
}

.hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-2xl);
      align-items: center;
}

.hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
      color: var(--primary);
      font-style: italic;
}

.hero-description {
      font-size: 1.125rem;
      color: var(--text-light);
      margin-bottom: var(--spacing-lg);
      max-width: 480px;
}

.hero-actions {
      display: flex;
      align-items: center;
      gap: var(--spacing-lg);
      flex-wrap: wrap;
}

.social-icons {
      display: flex;
      margin-right: var(--spacing-xs);
}

.avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid var(--white);
      margin-left: -8px;
      object-fit: cover;
}

.avatar:first-child {
      margin-left: 0;
}

.hero-stats {
      margin-top: var(--spacing-xl);
}

.stat-card {
      display: inline-flex;
      align-items: center;
      gap: var(--spacing-sm);
      padding: var(--spacing-sm) var(--spacing-md);
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
}

.stat-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-warm);
      border-radius: 50%;
      color: var(--primary-dark);
}

.stat-content {
      display: flex;
      flex-direction: column;
}

.stat-number {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text);
}

.stat-label {
      font-size: 0.75rem;
      color: var(--text-light);
}

.hero-image {
      position: relative;
}

.hero-image-wrapper {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
}

.hero-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
}

/* === Hero Premium - Full-Bleed with Selective Blur === */
.hero-premium {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
}

/* Background Image Layer - Full bleed sharp image */
.hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
}

.hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
}

/* Blur Overlay - Left side with gradient transition */
.hero-blur-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 60%;
      height: 100%;
      z-index: 2;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      /* Gradient mask for smooth transition */
      mask-image: linear-gradient(to right,
                  rgba(0, 0, 0, 1) 0%,
                  rgba(0, 0, 0, 1) 60%,
                  rgba(0, 0, 0, 0) 100%);
      -webkit-mask-image: linear-gradient(to right,
                  rgba(0, 0, 0, 1) 0%,
                  rgba(0, 0, 0, 1) 60%,
                  rgba(0, 0, 0, 0) 100%);
}

/* Fallback for browsers without mask support */
@supports not (mask-image: linear-gradient(black, black)) {
      .hero-blur-overlay {
            background: linear-gradient(to right,
                        rgba(255, 255, 255, 0.85) 0%,
                        rgba(255, 255, 255, 0.7) 50%,
                        transparent 100%);
            backdrop-filter: none;
      }
}

/* Dark overlay for text legibility */
.hero-dark-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 55%;
      height: 100%;
      z-index: 3;
      background: linear-gradient(to right,
                  rgba(0, 0, 0, 0.35) 0%,
                  rgba(0, 0, 0, 0.2) 50%,
                  transparent 100%);
}

/* Content Wrapper */
.hero-content-wrapper {
      position: relative;
      z-index: 10;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 var(--spacing-3xl);
      padding-top: 80px;
      /* Account for fixed header */
}

.hero-content-inner {
      max-width: 550px;
      animation: heroFadeIn 1s ease forwards;
}

/* Logo in Hero */
.hero-brand {
      display: inline-block;
      margin-bottom: var(--spacing-lg);
}

.hero-logo {
      height: 60px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.9;
}

/* Headline */
.hero-headline {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 400;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: var(--spacing-md);
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-headline-accent {
      font-style: italic;
      color: var(--primary-light);
}

/* Subtitle */
.hero-subtitle {
      font-size: 1.125rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: var(--spacing-xl);
      max-width: 450px;
}

/* CTA Button */
/* CTA Button */
.hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2.8rem;
      background: linear-gradient(110deg, #FAD0C4 0%, #FFD1FF 40%, #a8edea 100%);
      background-size: 200% auto;
      color: #1a1a1a;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 600;
      border-radius: var(--radius-full);
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
      margin-bottom: var(--spacing-xl);
      text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.02em;
}

/* Wave Shine Effect */
.hero-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      transform: skewX(-20deg);
      animation: wave-shine 3s infinite linear;
      pointer-events: none;
}

@keyframes wave-shine {
      0% {
            left: -100%;
      }

      20% {
            left: 200%;
      }

      100% {
            left: 200%;
      }
}

.hero-cta:hover {
      background-position: right center;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(168, 237, 234, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
      filter: brightness(1.02);
}

/* Social Proof Badge */
.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--spacing-sm);
      padding: 0.75rem 1.25rem;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-lg);
}

.hero-badge-icon {
      color: #FFD700;
}

.hero-badge-text {
      display: flex;
      flex-direction: column;
}

.hero-badge-number {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1;
}

.hero-badge-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.8);
}

/* Hero Team Card - Apple Style with Brand Gradient */
.hero-team-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1.25rem;
      padding: 0.875rem 1.25rem;
      background: linear-gradient(135deg,
                  rgba(255, 220, 220, 0.95) 0%,
                  rgba(220, 240, 245, 0.95) 50%,
                  rgba(180, 220, 220, 0.95) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 60px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-team-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.hero-team-avatars {
      display: flex;
      align-items: center;
}

.hero-team-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      border: 3px solid #fff;
      margin-left: -12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
}

.hero-team-avatar:first-child {
      margin-left: 0;
}

.hero-team-card:hover .hero-team-avatar {
      transform: scale(1.05);
}

.hero-team-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
}

.hero-team-label {
      font-size: 0.7rem;
      font-weight: 500;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.05em;
}

.hero-team-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #2a2a2a;
      text-decoration: none;
      transition: all 0.2s ease;
}

.hero-team-btn:hover {
      color: #5BBFB5;
}

.hero-team-btn svg {
      transition: transform 0.3s ease;
}

.hero-team-btn:hover svg {
      transform: translateX(4px);
}

/* Hero Team Card Responsive */
@media (max-width: 768px) {
      .hero-team-card {
            flex-direction: column;
            padding: 1rem;
            border-radius: 20px;
            gap: 0.75rem;
      }

      .hero-team-avatars {
            justify-content: center;
      }

      .hero-team-info {
            align-items: center;
            text-align: center;
      }
}

/* Scroll Indicator */
.hero-scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
}

.hero-scroll-indicator span {
      display: block;
      width: 24px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.5);
      border-radius: 12px;
      position: relative;
}

.hero-scroll-indicator span::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 8px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 2px;
      animation: scrollBounce 1.5s infinite;
}

/* Animations */
@keyframes heroFadeIn {
      from {
            opacity: 0;
            transform: translateY(30px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

@keyframes scrollBounce {

      0%,
      100% {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
      }

      50% {
            transform: translateX(-50%) translateY(10px);
            opacity: 0.5;
      }
}

/* Hero Premium Responsive */
@media (max-width: 1024px) {
      .hero-content-wrapper {
            padding: 0 var(--spacing-xl);
      }

      .hero-headline {
            font-size: clamp(2rem, 5vw, 3.5rem);
      }

      .hero-blur-overlay {
            width: 70%;
      }

      .hero-dark-overlay {
            width: 65%;
      }
}

@media (max-width: 768px) {
      .hero-premium {
            height: 100vh;
            min-height: 550px;
      }

      /* Mobile: Focus on top (eyes), text at bottom */
      .hero-bg-img {
            object-position: center 20%;
      }

      /* Mobile: Blur overlay at bottom for text */
      .hero-blur-overlay {
            display: block;
            top: auto;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            z-index: 2;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
            -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
      }

      /* Darker overlay for readability on bottom */
      .hero-dark-overlay {
            top: auto;
            bottom: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
      }

      .hero-content-wrapper {
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 90px;
            padding-top: 0;
      }

      .hero-content-inner {
            max-width: 100%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 1.5rem;
      }

      .hero-brand {
            display: block;
            margin-bottom: 0.5rem;
      }

      .hero-logo {
            height: 32px;
            margin: 0 auto;
      }

      .hero-headline {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      }

      .hero-subtitle {
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
            max-width: 90%;
            opacity: 0.9;
      }

      .hero-actions {
            flex-direction: column;
            gap: 0.75rem;
            width: 100%;
            align-items: center;
      }

      /* Compact Buttons */
      .hero-cta {
            width: auto;
            min-width: 180px;
            max-width: 260px;
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
            margin-bottom: 0;
      }

      /* Hide Social Badge on Mobile */
      .hero-badge {
            display: none;
      }

      /* Show Team Card on Mobile - Replaces Badge */
      .hero-team-card {
            display: flex;
            flex-direction: row;
            /* Horizontal like uploaded image */
            align-items: center;
            gap: 0.75rem;
            margin-top: 0.5rem;
            padding: 0.5rem 0.75rem 0.5rem 0.5rem;
            /* Tight padding */
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 50px;
            /* Pill shape */
            width: auto;
            max-width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      }

      .hero-team-avatars {
            margin-right: 0;
            flex-shrink: 0;
      }

      .hero-team-avatar {
            width: 32px;
            height: 32px;
            border-width: 2px;
            margin-left: -10px;
      }

      .hero-team-avatar:first-child {
            margin-left: 0;
      }

      .hero-team-info {
            align-items: flex-start;
            text-align: left;
            gap: 0;
      }

      .hero-team-label {
            font-size: 0.55rem;
            color: #666;
            letter-spacing: 0.05em;
            margin-bottom: 2px;
      }

      .hero-team-btn {
            font-size: 0.75rem;
            font-weight: 700;
            color: #1a1a1a;
      }

      .hero-team-btn svg {
            width: 12px;
            height: 12px;
      }

      .hero-scroll-indicator {
            display: block;
            bottom: 25px;
      }

      .hero-scroll-indicator span {
            width: 20px;
            height: 34px;
      }
}



/* === About Treatment Section === */
.about-treatment {
      padding: var(--spacing-3xl) 0;
      background: var(--white);
}

@media (max-width: 900px) {
      .about-treatment {
            padding: var(--spacing-xl) 0;
      }
}

.about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: var(--spacing-3xl);
      align-items: center;
}

@media (max-width: 900px) {
      .about-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
      }

      .about-image {
            order: -1;
      }

      .about-image img {
            height: 300px;
      }
}

.about-image {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
}

.about-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
}

.about-content .section-title {
      margin-bottom: var(--spacing-lg);
}

.about-text {
      color: var(--text-light);
      margin-bottom: var(--spacing-md);
      line-height: 1.8;
}

/* === Services Section === */
.services {
      padding: var(--spacing-3xl) 0;
      background: var(--background-alt);
}

.section-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto var(--spacing-2xl);
}

.services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--spacing-md);
}

@media (max-width: 1024px) {
      .services-grid {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 550px) {
      .services-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
      }

      .service-card {
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
      }
}

.service-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.4s ease;
      cursor: pointer;
}

.service-card:hover {
      transform: translateY(-12px);
      box-shadow: var(--shadow-xl);
}

.service-title {
      transition: color 0.3s ease;
}

.service-card:hover .service-title {
      color: var(--primary);
}

.service-image {
      height: 280px;
      overflow: hidden;
}

.service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-slow);
}

.service-card:hover .service-image img {
      transform: scale(1.05);
}

.service-title {
      padding: var(--spacing-md);
      font-size: 1rem;
      font-weight: 500;
      text-align: center;
}

.service-card-alt {
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
}

.service-card-alt .service-title {
      font-size: 1.25rem;
      color: var(--text);
}

/* === Features Section === */
.features {
      padding: var(--spacing-3xl) 0;
      background: var(--white);
}

.features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-2xl);
}

@media (max-width: 768px) {
      .features-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
      }

      .feature-card {
            padding: var(--spacing-lg);
      }
}

.feature-card {
      padding: var(--spacing-xl);
      background: var(--background-alt);
      border-radius: var(--radius-lg);
      transition: var(--transition-base);
}

.feature-card:hover {
      box-shadow: var(--shadow-lg);
}

.feature-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border-radius: var(--radius-md);
      margin-bottom: var(--spacing-md);
      color: var(--primary);
      transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
      transform: scale(1.1) rotate(5deg);
      background: var(--primary-light);
}

.feature-icon svg {
      transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
      transform: scale(1.1);
}

.feature-title {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-sm);
}

.feature-text {
      color: var(--text-light);
      line-height: 1.7;
}

/* === Why Us Section === */
.why-us {
      padding: var(--spacing-3xl) 0;
      background: var(--background);
}

.why-us-header {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
}

.why-us-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 400;
      letter-spacing: 0.1em;
}

.why-us-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-2xl);
      align-items: center;
}

@media (max-width: 900px) {
      .why-us-content {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
      }

      .why-us-image {
            order: -1;
      }

      .why-us-image img {
            height: 300px;
      }
}

.why-us-card {
      padding: var(--spacing-xl);
      background: var(--primary-light);
      border-radius: var(--radius-lg);
}

.why-us-card-title {
      font-size: 1.5rem;
      margin-bottom: var(--spacing-md);
}

.why-us-text {
      color: var(--text-light);
      line-height: 1.8;
}

.why-us-image {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
}

.why-us-image img {
      width: 100%;
      height: 400px;
      object-fit: cover;
}

/* === Team Section === */
.team {
      padding: var(--spacing-3xl) 0;
      background: var(--white);
}

.team-header {
      margin-bottom: var(--spacing-2xl);
}

.team-member-main {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: var(--spacing-2xl);
      margin-bottom: var(--spacing-3xl);
      padding: var(--spacing-xl);
      background: var(--background-alt);
      border-radius: var(--radius-xl);
}

@media (max-width: 900px) {
      .team-member-main {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
            padding: var(--spacing-lg);
      }

      .team-member-image img {
            height: 350px;
      }
}

.team-member-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
}

.team-member-image img {
      width: 100%;
      height: 450px;
      object-fit: cover;
      object-position: top;
}

.team-member-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
}

.team-member-name {
      font-size: 2rem;
      margin-bottom: var(--spacing-xs);
}

.team-member-role {
      display: block;
      font-size: 1rem;
      color: var(--primary);
      margin-bottom: var(--spacing-md);
}

.team-member-bio,
.team-member-experience {
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: var(--spacing-md);
}

.team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-lg);
}

@media (max-width: 768px) {
      .team-grid {
            grid-template-columns: 1fr;
      }

      .team-card {
            grid-template-columns: 120px 1fr;
      }
}

@media (max-width: 500px) {
      .team-card {
            grid-template-columns: 1fr;
            text-align: center;
      }

      .team-card-image img {
            height: 250px;
      }

      .team-card-content {
            align-items: center;
      }
}

.team-card {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: var(--spacing-md);
      padding: var(--spacing-md);
      background: var(--background-alt);
      border-radius: var(--radius-lg);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      border: 2px solid transparent;
}

.team-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-light);
}

.team-card-image {
      border-radius: var(--radius-md);
      overflow: hidden;
}

.team-card-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: top;
}

.team-card-content {
      display: flex;
      flex-direction: column;
}

.team-card-name {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-xs);
}

.team-card-role {
      display: block;
      font-size: 0.875rem;
      color: var(--primary);
      margin-bottom: var(--spacing-xs);
}

.team-card-crm {
      display: block;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: var(--spacing-sm);
}

.team-card-bio {
      font-size: 0.875rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: var(--spacing-sm);
      flex-grow: 1;
}

.team-card-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--primary);
}

.team-card-link:hover {
      color: var(--primary-dark);
}

/* === Testimonials Section === */
.testimonials {
      padding: var(--spacing-3xl) 0;
      background: var(--background-alt);
}

.testimonials-header {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
}

.testimonials-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: var(--spacing-sm);
}

.testimonials-subtitle {
      color: var(--text-light);
}

.testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-md);
}

@media (max-width: 1024px) {
      .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 650px) {
      .testimonials-grid {
            grid-template-columns: 1fr;
      }
}

.testimonial-card {
      padding: var(--spacing-lg);
      background: var(--white);
      border-radius: var(--radius-lg);
      transition: var(--transition-base);
}

.testimonial-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
}

.testimonial-header {
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
      margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
}

.testimonial-info {
      display: flex;
      flex-direction: column;
}

.testimonial-name {
      font-weight: 600;
      font-size: 0.875rem;
}

.testimonial-location {
      font-size: 0.75rem;
      color: var(--text-muted);
}

.testimonial-text {
      color: var(--text-light);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: var(--spacing-sm);
}

.testimonial-date {
      font-size: 0.75rem;
      color: var(--primary);
      font-weight: 500;
}

/* === CTA Section === */
.cta-section {
      padding: var(--spacing-3xl) 0;
      position: relative;
      overflow: hidden;
}

.cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('images/gradient-theme.jpg') center center / cover no-repeat;
      filter: blur(8px);
      transform: scale(1.1);
      z-index: 0;
}

.cta-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
}

.cta-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
      color: var(--white);
}

.cta-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      color: var(--white);
      margin-bottom: var(--spacing-sm);
      line-height: 1.3;
}

.cta-text {
      margin-bottom: var(--spacing-lg);
      opacity: 0.9;
}

/* === Appointment Section === */
.appointment {
      padding: var(--spacing-3xl) 0;
      background: var(--white);
}

.appointment-header {
      text-align: center;
      margin-bottom: var(--spacing-2xl);
}

.appointment-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: var(--spacing-sm);
}

.appointment-subtitle {
      color: var(--text-light);
}

.appointment-form {
      max-width: 700px;
      margin: 0 auto;
}

.form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-md);
      margin-bottom: var(--spacing-md);
}

.form-group {
      display: flex;
      flex-direction: column;
}

.form-group-full {
      grid-column: 1 / -1;
}

.form-group label {
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: var(--spacing-xs);
      color: var(--text);
}

.form-group input,
.form-group select {
      padding: 0.875rem 1rem;
      font-family: var(--font-body);
      font-size: 1rem;
      border: 1px solid #e0e0e0;
      border-radius: var(--radius-md);
      background: var(--background-alt);
      transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(126, 200, 200, 0.15);
}

.form-group input::placeholder {
      color: var(--text-muted);
}

.form-terms {
      font-size: 0.875rem;
      color: var(--text-light);
      text-align: center;
}

.form-terms a {
      color: var(--primary);
      text-decoration: underline;
}

/* === Footer === */
.footer {
      padding: var(--spacing-3xl) 0 var(--spacing-lg);
      background: var(--text);
      color: var(--white);
}

.footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: var(--spacing-2xl);
      margin-bottom: var(--spacing-2xl);
}

.footer-brand .logo {
      margin-bottom: var(--spacing-md);
}

.footer-address {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.8;
      margin-bottom: var(--spacing-md);
}

.footer-contact {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-sm);
}

.footer-link {
      display: flex;
      align-items: center;
      gap: var(--spacing-sm);
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
      color: var(--primary-light);
}

.footer-title {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: var(--spacing-md);
      color: var(--white);
}

.footer-list li {
      margin-bottom: var(--spacing-sm);
}

.footer-list a {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.7);
}

.footer-list a:hover {
      color: var(--primary-light);
}

.footer-hours li {
      display: flex;
      justify-content: space-between;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.7);
}

.footer-social {
      display: flex;
      gap: var(--spacing-sm);
}

.social-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--white);
      transition: var(--transition-base);
}

.social-link:hover {
      background: var(--primary);
      transform: translateY(-2px);
}

.footer-bottom {
      padding-top: var(--spacing-lg);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
}

.footer-bottom p {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.5);
}

/* === WhatsApp Float === */
.whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #25d366;
      border-radius: 50%;
      color: var(--white);
      box-shadow: var(--shadow-lg);
      z-index: 999;
      transition: var(--transition-base);
      animation: pulse 2s ease-in-out 3;
}

.whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
      animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {

      0%,
      100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
      }

      50% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
}

/* === Responsive === */
@media (max-width: 1024px) {
      .hero .container {
            grid-template-columns: 1fr;
            text-align: center;
      }

      .hero-description {
            margin-left: auto;
            margin-right: auto;
      }

      .hero-actions {
            justify-content: center;
      }

      .hero-image {
            order: -1;
      }

      .hero-img {
            height: 400px;
      }

      .about-grid,
      .why-us-content {
            grid-template-columns: 1fr;
      }

      .services-grid {
            grid-template-columns: repeat(2, 1fr);
      }

      .team-member-main {
            grid-template-columns: 1fr;
      }

      .team-grid {
            grid-template-columns: 1fr;
      }

      .footer-grid {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 768px) {

      .nav-links,
      .nav-buttons {
            display: none;
      }

      .mobile-menu-btn {
            display: flex;
      }

      .hero {
            padding-top: 100px;
            min-height: auto;
      }

      .hero-title {
            font-size: 2rem;
      }

      .services-grid {
            grid-template-columns: 1fr;
      }

      .features-grid {
            grid-template-columns: 1fr;
      }

      .testimonials-grid {
            grid-template-columns: 1fr;
      }

      .form-row {
            grid-template-columns: 1fr;
      }

      .team-card {
            grid-template-columns: 1fr;
      }

      .team-card-image img {
            height: 250px;
      }

      .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
      }

      .footer-contact {
            align-items: center;
      }

      .footer-social {
            justify-content: center;
      }
}

/* === Animations === */
@keyframes fadeInUp {
      from {
            opacity: 0;
            transform: translateY(30px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

.animate-fade-in-up {
      animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
      animation-delay: 0.1s;
}

.animate-delay-2 {
      animation-delay: 0.2s;
}

.animate-delay-3 {
      animation-delay: 0.3s;
}

.animate-delay-4 {
      animation-delay: 0.4s;
}

/* Navbar CTA Button - Wave Style */
.nav-pill-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.5rem;
      background: linear-gradient(110deg, #FAD0C4 0%, #FFD1FF 40%, #a8edea 100%);
      background-size: 200% auto;
      color: #1a1a1a;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: var(--radius-full);
      text-decoration: none;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
      text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.02em;
      white-space: nowrap;
}

.nav-pill-cta svg {
      transition: transform 0.3s ease;
}

.nav-pill-cta:hover svg {
      transform: translateX(4px);
}

.nav-pill-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
      transform: skewX(-20deg);
      animation: wave-shine 3s infinite linear;
      pointer-events: none;
      animation-delay: 1.5s;
}

.nav-pill-cta:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(168, 237, 234, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
      filter: brightness(1.02);
      color: #1a1a1a;
}