
    :root {
      --teal:       #3ABAB4;
      --teal-dark:  #1A7A74;
      --teal-navy:  #1A5C6B;
      --rose:       #E07A8A;
      --rose-dark:  #C96B7E;
      --gold:       #F4C76A;
      --white:      #FFFFFF;
      --off-white:  #F7FAFA;
      --light-bg:   #EEF8F8;
      --text:       #2D3748;
      --muted:      #718096;
      --grad:       linear-gradient(135deg, #3ABAB4 0%, #6DCFCA 40%, #E07A8A 100%);
      --grad-soft:  linear-gradient(135deg, #EEF8F8 0%, #FDF0F2 100%);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(58,186,180,0.15);
      padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      height: 72px;
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(26,92,107,0.12); }

    .nav-logo { display: flex; align-items: center; gap: 12px; }
    .nav-logo-icon {
      width: 50px; height: 50px;
      border-radius: 50%;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(58,186,180,0.3);
    }

    .nav-logo-icon img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-text span:first-child {
      font-family: 'Playfair Display', serif;
      font-size: 18px; font-weight: 700;
      color: var(--teal-dark);
    }
    .nav-logo-text span:last-child {
      font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
      color: var(--muted); font-weight: 600;
    }

    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      text-decoration: none; color: var(--text);
      font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
      position: relative; padding-bottom: 4px;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--grad);
      border-radius: 2px; transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--grad);
      color: white; border: none; padding: 10px 22px;
      border-radius: 50px; font-size: 14px; font-weight: 700;
      cursor: pointer; text-decoration: none;
      box-shadow: 0 4px 16px rgba(58,186,180,0.35);
      transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.88; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(145deg, #0d3d47 0%, #1A5C6B 35%, #1A7A74 65%, #3ABAB4 100%);
      display: flex; align-items: center;
      padding-top: 72px;
      position: relative;
    }
    .hero-wave {
      position: absolute; left: 0; bottom: 0; width: 100%;
      line-height: 0; z-index: 2; pointer-events: none;
    }
    .hero-wave svg { display: block; width: 100%; height: 80px; }

    .hero-content {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 60px;
      max-width: 1200px; margin: 0 auto; padding: 60px 5%;
      width: 100%;
    }

    .hero-text .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: var(--gold); font-size: 12px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 6px 16px; border-radius: 50px;
      margin-bottom: 16px;
    }
    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.6vw, 44px); font-weight: 700;
      color: white; line-height: 1.18; margin-bottom: 14px;
    }
    .hero-text h1 em {
      font-style: italic;
      background: linear-gradient(90deg, #F4C76A, #E07A8A);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-text p {
      color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.55;
      margin-bottom: 20px; max-width: 480px;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, #E07A8A, #C96B7E);
      color: white; padding: 14px 32px; border-radius: 50px;
      font-size: 15px; font-weight: 700; text-decoration: none;
      box-shadow: 0 8px 24px rgba(224,122,138,0.4);
      display: inline-flex; align-items: center; gap: 8px;
      transition: opacity 0.2s;
    }
    .btn-primary:hover { opacity: 0.88; }
    .btn-outline {
      border: 2px solid rgba(255,255,255,0.4);
      color: white; padding: 14px 32px; border-radius: 50px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

    .hero-stats {
      display: flex; gap: 32px; margin-top: 44px;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
    }
    .hero-stat strong {
      display: block; font-size: 28px; font-weight: 700; color: var(--gold);
      font-family: 'Playfair Display', serif;
    }
    .hero-stat span { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }

    /* Hero Right Card — static, no animation */
    .hero-visual { display: flex; justify-content: center; align-items: center; }

    /* Hero Photo */
    .hero-photo-wrap { position: relative; max-width: 380px; width: 100%; }
    .hero-photo-wrap::before {
      content: ''; position: absolute; top: -30px; right: -36px;
      width: 170px; height: 170px;
      background: radial-gradient(circle, rgba(244,199,106,0.3), transparent 70%);
      border-radius: 50%; z-index: 0;
    }
    .hero-photo {
      position: relative; z-index: 1;
      width: 100%; aspect-ratio: 2/3; object-fit: cover;
      display: block; border-radius: 28px;
      border: 5px solid rgba(255,255,255,0.25);
      box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    }
    .hero-photo-badge {
      position: absolute; z-index: 2; bottom: -22px; left: 50%;
      transform: translateX(-50%);
      background: white; border-radius: 16px; padding: 14px 24px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.2);
      display: flex; align-items: center; gap: 12px; white-space: nowrap;
    }
    .hero-photo-badge .badge-icon {
      width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
      background: var(--grad); display: flex; align-items: center; justify-content: center;
      color: white; font-size: 18px;
    }
    .hero-photo-badge strong { display: block; font-size: 15px; color: var(--teal-navy); }
    .hero-photo-badge span { font-size: 11px; color: var(--muted); }

    .hero-card {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 28px;
      padding: 40px 36px;
      text-align: center; color: white;
      position: relative; overflow: hidden;
      max-width: 380px; width: 100%;
      box-shadow: 0 32px 80px rgba(0,0,0,0.25);
    }
    .hero-card::before {
      content: ''; position: absolute;
      top: -60px; right: -60px;
      width: 180px; height: 180px;
      background: radial-gradient(circle, rgba(244,199,106,0.2), transparent 70%);
      border-radius: 50%;
    }
    .logo-circle {
      width: 120px; height: 120px;
      background: var(--grad);
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex; align-items: center; justify-content: center;
      font-size: 54px;
      box-shadow: 0 12px 40px rgba(58,186,180,0.4);
    }
    .hero-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px; margin-bottom: 6px;
    }
    .hero-card .card-sub {
      font-size: 12px; color: rgba(255,255,255,0.7);
      letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
    }
    .hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .tag {
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
      color: white; font-size: 11px; padding: 4px 12px; border-radius: 50px; font-weight: 600;
    }

    /* ── WAVE DIVIDER ── */
    .wave { overflow: hidden; line-height: 0; }
    .wave svg { display: block; }

    /* ── SECTION BASE ── */
    section { padding: 90px 5%; }

    .section-label {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--teal);
      background: rgba(58,186,180,0.1);
      padding: 5px 14px; border-radius: 50px;
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 44px); font-weight: 700;
      color: var(--teal-navy); line-height: 1.25; margin-bottom: 16px;
    }
    .section-title em { font-style: italic; color: var(--rose-dark); }
    .section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }
    .section-header { margin-bottom: 56px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }
    .max-w { max-width: 1200px; margin: 0 auto; }

    /* ── SERVICES ── */
    #services { background: var(--off-white); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }
    .service-card {
      background: white; border-radius: 20px; padding: 32px 24px;
      text-align: center;
      border: 1px solid rgba(58,186,180,0.1);
      position: relative; overflow: hidden;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: var(--grad);
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(58,186,180,0.15); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 80px; height: 80px; background: var(--grad-soft);
      border-radius: 20px; margin: 0 auto 18px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
    }
    .service-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .service-card:hover .service-icon { transform: scale(1.06); box-shadow: 0 10px 26px rgba(58,186,180,0.3); }
    .service-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 16px; font-weight: 700; color: var(--teal-navy); margin-bottom: 10px;
    }
    .service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ── ABOUT DR BEENA ── */
    #about { background: white; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .about-image-wrap { position: relative; }
    .about-image-placeholder {
      width: 100%; aspect-ratio: 4/5; border-radius: 28px;
      background: linear-gradient(145deg, #3ABAB4 0%, #1A7A74 40%, #E07A8A 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: white; position: relative; overflow: hidden;
    }
    .about-image-placeholder::after {
      content: ''; position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='60' r='35' fill='rgba(255,255,255,0.15)'/%3E%3Cellipse cx='100' cy='160' rx='65' ry='50' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") center/cover;
    }
    .about-image-placeholder i { font-size: 80px; z-index: 1; opacity: 0.9; }
    .about-image-placeholder p { font-size: 13px; z-index: 1; opacity: 0.8; letter-spacing: 1px; }
    .about-photo {
      width: 100%; aspect-ratio: 4/5; object-fit: cover;
      display: block; border-radius: 28px;
      box-shadow: 0 24px 60px rgba(26,92,107,0.18);
    }

    .about-badge {
      position: absolute; background: white; border-radius: 16px;
      padding: 14px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      display: flex; align-items: center; gap: 12px;
    }
    .about-badge.b1 { bottom: -20px; right: -20px; }
    .about-badge.b2 { top: 30px; left: -24px; }
    .about-badge .badge-icon {
      width: 40px; height: 40px; border-radius: 12px;
      background: var(--grad); display: flex; align-items: center; justify-content: center;
      color: white; font-size: 18px;
    }
    .about-badge strong { display: block; font-size: 16px; color: var(--teal-navy); }
    .about-badge span { font-size: 11px; color: var(--muted); }

    .about-text .credentials { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
    .cred {
      background: var(--light-bg); color: var(--teal-dark);
      font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
      padding: 5px 14px; border-radius: 50px;
    }
    .about-text blockquote {
      font-family: 'Playfair Display', serif;
      font-size: 20px; font-style: italic; color: var(--teal-navy); line-height: 1.5;
      border-left: 4px solid var(--teal); padding-left: 20px; margin: 28px 0;
    }
    .about-text p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
    .about-text .signature {
      font-family: 'Playfair Display', serif;
      font-size: 28px; font-style: italic; color: var(--teal); margin-top: 28px;
    }
    .about-text .sig-role {
      font-size: 12px; color: var(--muted); font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
    }

    /* ── DOCTOR CAROUSEL ── */
    .doctor-carousel { position: relative; }
    .carousel-viewport { overflow: hidden; }
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    .carousel-slide {
      flex: 0 0 100%;
      min-width: 100%;
    }
    .carousel-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 48px; height: 48px; border-radius: 50%;
      background: white; border: 1px solid rgba(26,92,107,0.12);
      box-shadow: 0 10px 28px rgba(26,92,107,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: var(--teal-dark); cursor: pointer;
      z-index: 5; transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .carousel-arrow:hover { background: var(--grad); color: white; transform: translateY(-50%) scale(1.06); }
    .carousel-arrow.prev { left: -12px; }
    .carousel-arrow.next { right: -12px; }
    .carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
    .dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(58,186,180,0.25); cursor: pointer;
      transition: background 0.25s, transform 0.25s; border: none; padding: 0;
    }
    .dot.active { background: var(--grad); transform: scale(1.25); }
    @media (max-width: 1024px) {
      .carousel-arrows {
        position: static; display: flex; justify-content: center;
        gap: 18px; margin-top: 28px;
      }
      .carousel-arrows .carousel-arrow {
        position: static; transform: none;
      }
      .carousel-dots { margin-top: 14px; }
    }

    /* ── TREATMENTS ── */
    #treatments { background: var(--light-bg); }
    .treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .treatment-card {
      background: white; border-radius: 20px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(26,92,107,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .treatment-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,92,107,0.15); }
    .treatment-thumb {
      height: 180px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .treatment-thumb.t1 { background: linear-gradient(135deg, #3ABAB4, #6DCFCA); }
    .treatment-thumb.t2 { background: linear-gradient(135deg, #E07A8A, #F4A7B4); }
    .treatment-thumb.t3 { background: linear-gradient(135deg, #1A7A74, #3ABAB4); }
    .treatment-thumb.t4 { background: linear-gradient(135deg, #C96B7E, #E07A8A); }
    .treatment-thumb.t5 { background: linear-gradient(135deg, #1A5C6B, #1A7A74); }
    .treatment-thumb.t6 { background: linear-gradient(135deg, #F4C76A, #E07A8A); }
    .treatment-thumb i { font-size: 56px; color: rgba(255,255,255,0.85); }
    .treatment-thumb::after {
      content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
      height: 40px; background: white;
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .treatment-body { padding: 20px 24px 28px; }
    .treatment-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 17px; color: var(--teal-navy); margin-bottom: 8px;
    }
    .treatment-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
    .treatment-link {
      font-size: 13px; font-weight: 700; color: var(--teal);
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    }

    /* ── GALLERY ── */
    /* #gallery { background: var(--off-white); }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
      max-width: 840px; margin: 0 auto;
    }
    .gallery-item {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 8px 32px rgba(26,92,107,0.12);
      position: relative;
    }
    .gallery-item img {
      width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
      transition: transform 0.4s;
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-caption {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 18px 20px;
      background: linear-gradient(180deg, transparent, rgba(13,61,71,0.75));
      color: white; font-size: 13px; font-weight: 600;
    } */

    .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,92,107,0.12);
    position: relative;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    background: linear-gradient(180deg, transparent, rgba(13,61,71,0.75));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

    /* ── STATS ── */
    #stats {
      background: linear-gradient(135deg, #1A5C6B 0%, #1A7A74 50%, #3ABAB4 100%);
      padding: 80px 5%;
    }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
    .stat-item { color: white; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 60px); font-weight: 700;
      color: var(--gold); line-height: 1; margin-bottom: 8px;
    }
    .stat-item p { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.5px; }

    /* ── WHY CHOOSE ── */
    #why { background: white; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .why-visual {
      background: linear-gradient(145deg, #EEF8F8, #FDF0F2);
      border-radius: 28px; padding: 48px 40px; position: relative; overflow: hidden;
    }
    .why-visual::before {
      content: ''; position: absolute; bottom: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(58,186,180,0.15), transparent 70%);
      border-radius: 50%;
    }
    .why-points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
    .why-point {
      display: flex; align-items: flex-start; gap: 16px;
      background: white; border-radius: 16px; padding: 18px 20px;
      box-shadow: 0 2px 12px rgba(26,92,107,0.07);
    }
    .why-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: var(--grad); display: flex; align-items: center; justify-content: center;
      color: white; font-size: 18px;
    }
    .why-point h4 { font-size: 14px; font-weight: 700; color: var(--teal-navy); margin-bottom: 4px; }
    .why-point p  { font-size: 13px; color: var(--muted); line-height: 1.5; }
    .why-right .big-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 3.5vw, 38px); font-style: italic;
      color: var(--teal-navy); line-height: 1.35; margin-bottom: 28px;
    }
    .why-right .big-quote em { color: var(--rose-dark); font-style: normal; }

    /* ── CONTACT ── */
    #contact { background: linear-gradient(145deg, #1A5C6B, #1A7A74); padding: 90px 5%; }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .contact-info { color: white; }
    .contact-info h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px;
    }
    .contact-info p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; }
    .ci-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(255,255,255,0.12); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 18px;
    }
    .contact-item strong { display: block; color: white; font-size: 14px; margin-bottom: 2px; }
    .contact-item span  { color: rgba(255,255,255,0.65); font-size: 13px; }

    .contact-form {
      background: white; border-radius: 24px; padding: 40px 36px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.2);
    }
    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px; color: var(--teal-navy); margin-bottom: 24px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: 12px; font-weight: 700;
      color: var(--teal-navy); margin-bottom: 6px; letter-spacing: 0.5px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid rgba(58,186,180,0.2);
      border-radius: 12px; font-size: 14px; font-family: 'Lato', sans-serif;
      color: var(--text); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--teal); box-shadow: 0 0 0 3px rgba(58,186,180,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%; padding: 14px;
      background: var(--grad); color: white; border: none;
      border-radius: 12px; font-size: 15px; font-weight: 700;
      cursor: pointer; font-family: 'Lato', sans-serif;
      transition: opacity 0.2s;
    }
    .form-submit:hover { opacity: 0.88; }


    /* ===========================
   TESTIMONIALS
===========================*/

#testimonials{
    padding:90px 0;
    background:#fff;
}

.testimonial-slider{
    overflow:hidden;
    position:relative;
}

.testimonial-track{
    display:flex;
    transition:.6s ease;
}

.testimonial-slide{
    min-width:100%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.06);
}

.stars{
    color:#f4b400;
    font-size:22px;
    margin-bottom:18px;
}

.testimonial-card p{
    color:var(--muted);
    line-height:1.8;
    font-size:15px;
    margin-bottom:28px;
    min-height: 108px;
}

.testimonial-user{
    border-top:1px solid #eee;
    padding-top:18px;
}

.testimonial-user strong{
    display:block;
    color:var(--teal-navy);
    font-size:17px;
}

.testimonial-user span{
    color:#888;
    font-size:14px;
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:40px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#d2d2d2;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:var(--teal);
}

/* Mobile */

@media(max-width:768px){

.testimonial-slide{
    grid-template-columns:1fr;
}

.testimonial-card{
    padding:25px;
}

.testimonial-card p {
        min-height: auto;
    }



}

    /* ── FOOTER ── */
    footer {
      background: #0d3d47; color: rgba(255,255,255,0.7);
      padding: 60px 5% 32px;
    }
    /* .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    } */
         .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 2fr;
    gap: 20px;
}
    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px; color: white; margin-bottom: 12px;
    }
    .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
    .social-links { display: flex; gap: 12px; }
    .social-link {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px;
      transition: background 0.2s, color 0.2s;
    }
    .social-link:hover { background: var(--teal); color: white; }
    .footer-col h4 {
      color: white; font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a {
      color: rgba(255,255,255,0.6); text-decoration: none;
      font-size: 13px; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--teal); }
    .footer-contact-list { list-style: none; }
    .footer-contact-list li {
      display: flex; align-items: flex-start; gap: 12px;
      margin-bottom: 16px;
    }
    .footer-contact-list .fc-icon {
      width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
      background: rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: 13px;
    }
    .footer-contact-list span {
      font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6;
    }
    .footer-contact-list strong {
    color: rgba(255,255,255,0.85);
    font-weight:600;
}
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px; font-size: 12px; text-align: center;
    }

    .footer-bottom{
    width:100%;
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:40px;
    padding-top:24px;
    text-align:center;
}

.footer-bottom span{
    display:block;
    width:100%;
}


    /* QR Section */

.qr-wrapper{
    display:flex;
    gap:18px;
    align-items:flex-start;
    flex-wrap:wrap;
}

.qr-card{
    text-align:center;
}

.qr-card img{
    width: 180px;
    height: 180px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    border: 1px solid rgba(255,255,255,.2);
     transition:.3s;
}

.qr-card img:hover{
    transform:translateY(-4px) scale(1.05);
}

.qr-card span{
    display:block;
    margin-top:8px;
    font-size:12px;
    color:rgba(255,255,255,.75);
}

.qr-card a {
    display:inline-block;
}

.qr-card a:hover img {
    transform:scale(1.05);
    cursor:pointer;
}

    /* ── SCROLL PROGRESS ── */
    #progress {
      position: fixed; top: 0; left: 0; height: 3px;
      background: var(--grad); width: 0%;
      z-index: 2000; transition: width 0.1s;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; }
      .hero-visual { margin-top: 36px; }
      .hero-photo-wrap { max-width: 280px; margin: 0 auto; }
      .hero-text p { margin: 0 auto 36px; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }
      .about-grid, .why-grid, .contact-inner { grid-template-columns: 1fr; }
      .about-image-wrap { max-width: 400px; margin: 0 auto; }
      .treatments-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      section { padding: 64px 5%; }
      .treatments-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
    }