 
    /* ─── TOKENS ─────────────────────────────────────── */
    :root {
      --white: #ffffff;
      --off-white: #f7f6f4;

      --cyan-pale: #f2e4d4;
      --cyan-mid: #e3c7aa;
      --cyan-main: #d4ab84;

      --blue-light: #b88a63;
      --blue-main: #9f7350;
      --blue-deep: #7d593d;

      --slate: #6b6b6d;

      --text: #3f3f41;
      --text-muted: #8a817a;

      --shadow-sm: 0 2px 12px rgba(184, 138, 99, .08);
      --shadow-md: 0 8px 32px rgba(184, 138, 99, .13);
      --shadow-lg: 0 20px 60px rgba(184, 138, 99, .18);

      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 28px;

      --transition: all .35s cubic-bezier(.4, 0, .2, 1);

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'DM Sans', sans-serif;
    }

    /* ─── RESET ──────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
    }

    /* ─── SCROLLBAR ───────────────────────────────────── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--off-white);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--cyan-main);
      border-radius: 99px;
    }

    /* ─── UTILITIES ───────────────────────────────────── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 96px 0;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--blue-light);
      background: var(--cyan-pale);
      border: 1px solid var(--cyan-mid);
      padding: 6px 16px;
      border-radius: 99px;
      margin-bottom: 16px;
    }

    .section-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--cyan-main);
      border-radius: 50%;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--blue-deep);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 540px;
      line-height: 1.75;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── BUTTONS ─────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 99px;
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue-main);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(13, 95, 130, .35);
    }

    .btn-primary:hover {
      background: var(--blue-deep);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(13, 95, 130, .45);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, .7);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, .15);
      transform: translateY(-2px);
    }

    .btn-whatsapp {
      background: #25d366;
      color: var(--white);
      box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
    }

    .btn-whatsapp:hover {
      background: #1dbd5c;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .45);
    }

    .btn-cyan {
      background: var(--cyan-main);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(62, 182, 212, .35);
    }

    .btn-cyan:hover {
      background: var(--blue-light);
      transform: translateY(-2px);
    }

    /* ═══════════════════════════════════════════════════
     NAVBAR
  ═══════════════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: var(--transition);
    }

    #navbar.scrolled {
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
      padding: 14px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo-icon {
       width: 40px;
       height: 40px;
     /* background: linear-gradient(135deg, var(--cyan-main), var(--blue-main)); */
      background: white;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
       opacity: 0.9;
    }

    .nav-logo-icon svg {
      width: 40px;
      height: 40px;
      fill: white;
     
    }

    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--white);
      transition: var(--transition);
    }

    #navbar.scrolled .nav-logo-text {
      color: var(--blue-deep);
    }

    .nav-links {
      display: flex;
      gap: 36px;
    }

    .nav-links a {
      font-size: .9rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .9);
      transition: var(--transition);
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--cyan-main);
      transition: width .3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    #navbar.scrolled .nav-links a {
      color: var(--slate);
    }

    #navbar.scrolled .nav-links a:hover {
      color: var(--blue-main);
    }

    .nav-cta {
      padding: 10px 22px;
      font-size: .88rem;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: var(--transition);
    }

    #navbar.scrolled .hamburger span {
      background: var(--blue-deep);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--white);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--blue-deep);
      transition: color .2s;
    }

    .mobile-menu a:hover {
      color: var(--cyan-main);
    }

    .mobile-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 2rem;
      color: var(--blue-deep);
      line-height: 1;
    }

    /* ═══════════════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-main) 50%, #7d593d 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 140px 0 80px;
    }

    /* Decorative circles */
    #hero::before,
    #hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      opacity: .08;
    }

    #hero::before {
      width: 600px;
      height: 600px;
      background: var(--white);
      top: -120px;
      right: -80px;
    }

    #hero::after {
      width: 300px;
      height: 300px;
      background: var(--cyan-main);
      bottom: -60px;
      left: -60px;
      opacity: .15;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .25);
      backdrop-filter: blur(4px);
      padding: 8px 18px;
      border-radius: 99px;
      font-size: .8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, .9);
      margin-bottom: 24px;
      letter-spacing: .05em;
    }

    .hero-badge .dot {
      width: 7px;
      height: 7px;
      background: #4fffaa;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .6;
        transform: scale(1.4);
      }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 12px;
    }

    .hero-title span {
      color: var(--cyan-main);
    }

    .hero-doctor {
      font-size: 1.05rem;
      font-weight: 400;
      color: rgba(255, 255, 255, .75);
      margin-bottom: 18px;
      letter-spacing: .02em;
    }

    .hero-doctor strong {
      color: white;
      font-weight: 600;
    }

    .hero-tagline {
      font-size: 1.15rem;
      color: rgba(255, 255, 255, .8);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 460px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 56px;
    }

    .hero-stats {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
    }

    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: white;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: .8rem;
      color: rgba(255, 255, 255, .65);
      margin-top: 4px;
      font-weight: 400;
    }

    .hero-stat {
      border-right: 1px solid rgba(255, 255, 255, .15);
      padding-right: 32px;
    }

    .hero-stat:last-child {
      border-right: none;
      padding-right: 0;
    }

    /* Hero visual / image card */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-img-card {
      width: 100%;
      max-width: 420px;
      aspect-ratio: 3/4;
      background: linear-gradient(170deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
      border: 1px solid rgba(255, 255, 255, .2);
      backdrop-filter: blur(8px);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .hero-img-inner {
      width: 85%;
      height: 85%;
      background: linear-gradient(160deg, var(--cyan-pale), var(--cyan-mid));
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: var(--blue-main);
    }

    .hero-img-inner svg {
      width: 80px;
      height: 80px;
      opacity: .35;
    }

    .hero-img-inner p {
      font-size: .85rem;
      color: var(--blue-light);
      font-weight: 500;
    }

    .hero-floating-badge {
      position: absolute;
      bottom: 30px;
      left: -30px;
      background: white;
      border-radius: var(--radius-md);
      padding: 14px 18px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 180px;
    }

    .hero-floating-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--cyan-main), var(--blue-light));
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .hero-floating-icon svg {
      width: 22px;
      height: 22px;
      fill: white;
    }

    .hero-floating-txt strong {
      display: block;
      font-size: .88rem;
      color: var(--blue-deep);
    }

    .hero-floating-txt span {
      font-size: .75rem;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════════
     ABOUT
  ═══════════════════════════════════════════════════ */
    #about {
      background: var(--off-white);
    }

    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-img-wrap {
      position: relative;
    }

    .about-img-box {
      width: 100%;
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--cyan-pale) 0%, var(--cyan-mid) 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .about-img-box::before {
      content: '';
      position: absolute;
      width: 60%;
      height: 60%;
      background: rgba(62, 182, 212, .15);
      border-radius: 50%;
      top: -10%;
      left: -10%;
    }

    .about-img-box svg {
      width: 120px;
      height: 120px;
      fill: var(--blue-light);
      opacity: .3;
    }

    .about-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--blue-main);
      color: white;
      border-radius: var(--radius-md);
      padding: 20px 24px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .about-accent-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1;
    }

    .about-accent-label {
      font-size: .78rem;
      opacity: .85;
      margin-top: 4px;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
    }

    .about-feature {
      background: white;
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(62, 182, 212, .12);
      transition: var(--transition);
    }

    .about-feature:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .about-feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--cyan-pale);
      display: grid;
      place-items: center;
      margin-bottom: 12px;
    }

    .about-feature-icon svg {
      width: 22px;
      height: 22px;
      fill: var(--cyan-main);
    }

    .about-feature h4 {
      font-size: .95rem;
      font-weight: 600;
      color: var(--blue-deep);
      margin-bottom: 4px;
    }

    .about-feature p {
      font-size: .82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ═══════════════════════════════════════════════════
     TREATMENTS
  ═══════════════════════════════════════════════════ */
    #treatments {
      background: var(--white);
    }

    .treatments-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .treatments-header .section-sub {
      margin: 0 auto;
    }

    .treatments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .treatment-card {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1.5px solid var(--cyan-pale);
      padding: 36px 28px;
      cursor: default;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .treatment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--cyan-main), var(--blue-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }

    .treatment-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--cyan-main);
    }

    .treatment-card:hover::before {
      transform: scaleX(1);
    }

    .treatment-icon {
      width: 64px;
      height: 64px;
      border-radius: var(--radius-md);
      background: var(--cyan-pale);
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      transition: var(--transition);
    }

    .treatment-card:hover .treatment-icon {
      background: var(--blue-main);
    }

    .treatment-icon svg {
      width: 32px;
      height: 32px;
      fill: var(--cyan-main);
      transition: var(--transition);
    }

    .treatment-card:hover .treatment-icon svg {
      fill: white;
    }

    .treatment-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--blue-deep);
      margin-bottom: 10px;
    }

    .treatment-card p {
      font-size: .9rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .treatment-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      font-size: .85rem;
      font-weight: 600;
      color: var(--blue-light);
      transition: gap .2s;
    }

    .treatment-card:hover .treatment-arrow {
      gap: 10px;
    }

    .treatment-arrow svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
    }

    /* ═══════════════════════════════════════════════════
     DOCTOR
  ═══════════════════════════════════════════════════ */
    #doctor {
      background: var(--off-white);
    }

    .doctor-inner {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 72px;
      align-items: center;
    }

    .doctor-card {
      background: white;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .doctor-img {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--cyan-pale), var(--cyan-mid));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .doctor-img svg {
      width: 120px;
      height: 120px;
      fill: var(--blue-light);
      opacity: .25;
    }

    .doctor-img-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, #7d593d, transparent);
      padding: 40px 24px 20px;
      color: white;
    }

    .doctor-img-label h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
    }

    .doctor-img-label span {
      font-size: .85rem;
      opacity: .85;
    }

    .doctor-info {
      padding: 24px;
    }

    .doctor-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .doc-badge {
      background: var(--cyan-pale);
      color: var(--blue-main);
      border: 1px solid var(--cyan-mid);
      font-size: .78rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 99px;
    }

    .doctor-bio h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: var(--blue-deep);
      margin-bottom: 16px;
    }

    .doctor-bio .highlight {
      font-size: 1rem;
      color: var(--blue-main);
      font-weight: 500;
      border-left: 3px solid var(--cyan-main);
      padding-left: 16px;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .doctor-bio p {
      font-size: .97rem;
      color: var(--slate);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .doctor-creds {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }

    .cred-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: white;
      padding: 18px;
      border-radius: var(--radius-md);
      border: 1px solid var(--cyan-pale);
      box-shadow: var(--shadow-sm);
    }

    .cred-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: var(--cyan-pale);
      border-radius: 8px;
      display: grid;
      place-items: center;
    }

    .cred-icon svg {
      width: 18px;
      height: 18px;
      fill: var(--cyan-main);
    }

    .cred-item strong {
      display: block;
      font-size: .88rem;
      color: var(--blue-deep);
    }

    .cred-item span {
      font-size: .78rem;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════════
     APPOINTMENT
  ═══════════════════════════════════════════════════ */
    #appointment {
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-main));
      position: relative;
      overflow: hidden;
    }

    #appointment::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .03);
      top: -150px;
      right: -100px;
    }

    .appointment-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .appt-left {
      color: white;
    }

    .appt-left .section-tag {
      background: rgba(255, 255, 255, .12);
      color: white;
      border-color: rgba(255, 255, 255, .2);
    }

    .appt-left .section-title {
      color: white;
    }

    .appt-left .section-sub {
      color: rgba(255, 255, 255, .75);
    }

    .appt-promise {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .appt-promise-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: .93rem;
      color: rgba(255, 255, 255, .85);
    }

    .appt-check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .3);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-size: .9rem;
    }

    .appt-form {
      background: white;
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      box-shadow: var(--shadow-lg);
    }

    .appt-form h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--blue-deep);
      margin-bottom: 28px;
      font-weight: 700;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: var(--slate);
      margin-bottom: 8px;
      letter-spacing: .02em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid var(--cyan-pale);
      border-radius: var(--radius-sm);
      font-size: .93rem;
      color: var(--text);
      background: var(--off-white);
      transition: var(--transition);
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--cyan-main);
      background: white;
      box-shadow: 0 0 0 3px rgba(62, 182, 212, .12);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-btn {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, var(--cyan-main), var(--blue-main));
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .form-btn:hover {
      background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(13, 95, 130, .35);
    }

    .form-btn svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    #form-msg {
      margin-top: 12px;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      font-size: .88rem;
      font-weight: 500;
      display: none;
    }

    #form-msg.error {
      background: #fef2f2;
      color: #dc2626;
      border: 1px solid #fecaca;
      display: block;
    }

    #form-msg.success {
      background: #f0fdf4;
      color: #16a34a;
      border: 1px solid #bbf7d0;
      display: block;
    }

    /* ═══════════════════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════════════════ */
    #testimonials {
      background: var(--off-white);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .testimonials-header .section-sub {
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .testimonial-card {
      background: white;
      border-radius: var(--radius-md);
      padding: 36px 28px;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid var(--cyan-pale);
      transition: var(--transition);
      position: relative;
    }

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .testi-quote {
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--cyan-mid);
      line-height: .8;
      margin-bottom: 16px;
    }

    .testi-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 16px;
    }

    .testi-star {
      color: #f59e0b;
      font-size: 1rem;
    }

    .testi-text {
      font-size: .95rem;
      color: var(--slate);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }

    .testi-author-info strong {
      display: block;
      font-size: .9rem;
      color: var(--blue-deep);
    }

    .testi-author-info span {
      font-size: .78rem;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════════
     MAP
  ═══════════════════════════════════════════════════ */
    #map-section {
      background: var(--white);
    }

    .map-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .map-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      aspect-ratio: 4/3;
      border: 2px solid var(--cyan-pale);
    }

    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .map-info h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--blue-deep);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .map-info .section-tag {
      margin-bottom: 12px;
    }

    .map-info p {
      color: var(--text-muted);
      font-size: .95rem;
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .map-details {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .map-detail {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px;
      background: var(--off-white);
      border-radius: var(--radius-md);
      border: 1px solid var(--cyan-pale);
    }

    .map-detail-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--cyan-pale);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .map-detail-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--cyan-main);
    }

    .map-detail strong {
      display: block;
      font-size: .88rem;
      color: var(--blue-deep);
      font-weight: 600;
    }

    .map-detail span {
      font-size: .82rem;
      color: var(--text-muted);
    }

    /* ═══════════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════════ */
    footer {
      background: var(--blue-deep);
      color: rgba(255, 255, 255, .8);
      padding: 72px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 60px;
    }

    .footer-brand .nav-logo {
      margin-bottom: 16px;
    }

    .footer-brand .nav-logo-text {
      color: white;
    }

    .footer-brand p {
      font-size: .88rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, .65);
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .15);
      display: grid;
      place-items: center;
      transition: var(--transition);
      cursor: pointer;
    }

    .social-btn:hover {
      background: var(--cyan-main);
      border-color: var(--cyan-main);
      transform: translateY(-2px);
    }

    .social-btn svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    .footer-col h4 {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: white;
      margin-bottom: 20px;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      font-size: .88rem;
      color: rgba(255, 255, 255, .65);
      transition: color .2s;
    }

    .footer-links a:hover {
      color: var(--cyan-main);
    }

    .footer-contact li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 16px;
      font-size: .88rem;
      color: rgba(255, 255, 255, .65);
    }

    .footer-contact svg {
      width: 16px;
      height: 16px;
      fill: var(--cyan-main);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-timing {
      font-size: .88rem;
      color: rgba(255, 255, 255, .65);
    }

    .timing-row {
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .timing-row:last-child {
      border-bottom: none;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 24px 0;
      text-align: center;
      font-size: .82rem;
      color: rgba(255, 255, 255, .45);
    }

    /* ═══════════════════════════════════════════════════
     FLOATING WHATSAPP
  ═══════════════════════════════════════════════════ */
    #float-wa {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: grid;
      place-items: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      cursor: pointer;
      transition: var(--transition);
      animation: float-pulse 2.5s ease-in-out infinite;
      border: none;
    }

    #float-wa:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 30px rgba(37, 211, 102, .6);
    }

    #float-wa svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    @keyframes float-pulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      }

      50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, .75);
      }
    }

    /* ═══════════════════════════════════════════════════
     FLOATING CALL BUTTON (mobile only)
  ═══════════════════════════════════════════════════ */
    #float-call {
      display: none;
      /* hidden on desktop */
    }

    @media (max-width: 768px) {
      #float-call {
        display: grid;
        place-items: center;
        position: fixed;
        bottom: 88px;
        /* sits above the mobile action bar */
        right: 20px;
        z-index: 1050;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--cyan-main), var(--blue-main));
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 22px rgba(13, 95, 130, .45);
        animation: call-pulse 2.2s ease-in-out infinite;
        text-decoration: none;
      }

      #float-call svg {
        width: 28px;
        height: 28px;
        fill: white;
        animation: call-ring 2.2s ease-in-out infinite;
      }

      #float-call:active {
        transform: scale(.93);
      }

      /* Ripple ring around the button */
      #float-call::before,
      #float-call::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        background: rgba(62, 182, 212, .35);
        animation: call-ripple 2.2s ease-out infinite;
      }

      #float-call::before {
        width: 80px;
        height: 80px;
        animation-delay: 0s;
      }

      #float-call::after {
        width: 100px;
        height: 100px;
        animation-delay: 0.4s;
        background: rgba(62, 182, 212, .18);
      }

      /* Tooltip label */
      #float-call .call-label {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--blue-deep);
        color: white;
        font-family: var(--font-body);
        font-size: .75rem;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 20px;
        white-space: nowrap;
        box-shadow: 0 2px 12px rgba(8, 61, 86, .35);
        pointer-events: none;
        opacity: 1;
        animation: label-fade 4s ease-in-out infinite;
      }

      #float-call .call-label::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        border: 6px solid transparent;
        border-left-color: var(--blue-deep);
        border-right: none;
      }

      @keyframes call-pulse {

        0%,
        100% {
          box-shadow: 0 4px 22px rgba(13, 95, 130, .45);
        }

        50% {
          box-shadow: 0 6px 36px rgba(13, 95, 130, .7);
        }
      }

      @keyframes call-ripple {
        0% {
          transform: scale(.7);
          opacity: .8;
        }

        100% {
          transform: scale(1.5);
          opacity: 0;
        }
      }

      @keyframes call-ring {

        0%,
        100% {
          transform: rotate(0deg);
        }

        10% {
          transform: rotate(-15deg);
        }

        20% {
          transform: rotate(15deg);
        }

        30% {
          transform: rotate(-10deg);
        }

        40% {
          transform: rotate(10deg);
        }

        50% {
          transform: rotate(0deg);
        }
      }

      @keyframes label-fade {

        0%,
        60% {
          opacity: 1;
        }

        80%,
        100% {
          opacity: 0;
        }
      }
      .appt-form h3 {
        font-size: 1.3rem;
      }
    }

    /* ═══════════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        display: none;
      }

      .about-inner {
        grid-template-columns: 1fr;
      }

      .doctor-inner {
        grid-template-columns: 1fr;
      }

      .doctor-card {
        max-width: 400px;
      }

      .appointment-inner {
        grid-template-columns: 1fr;
      }

      .map-inner {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }

      .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 72px 0;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .treatments-grid {
        grid-template-columns: 1fr;
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .doctor-creds {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .appt-form {
        padding: 28px 20px;
      }

      /* Hide desktop floating WA button on mobile — bar replaces it */
      #float-wa {
        display: none;
      }

      /* Push footer up so bar doesn't overlap */
      footer {
        padding-bottom: 80px;
      }

      /* Keep body content clear of the action bar */
      body {
        padding-bottom: 64px;
      }
    }

    /* ═══════════════════════════════════════════════════
     MOBILE BOTTOM ACTION BAR
  ═══════════════════════════════════════════════════ */
    #mobile-action-bar {
      display: none;
      /* hidden on desktop */
    }

    @media (max-width: 768px) {
      #mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        background: var(--white);
        border-top: 1px solid var(--cyan-pale);
        box-shadow: 0 -4px 24px rgba(13, 95, 130, .13);
        height: 64px;
        align-items: stretch;
      }

      .mob-bar-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: none;
        background: transparent;
        cursor: pointer;
        font-family: var(--font-body);
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .02em;
        transition: var(--transition);
        text-decoration: none;
        color: var(--slate);
        padding: 0 4px;
        position: relative;
      }

      /* Dividers between buttons */
      .mob-bar-btn+.mob-bar-btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 14px;
        bottom: 14px;
        width: 1px;
        background: var(--cyan-pale);
      }

      .mob-bar-btn svg {
        width: 22px;
        height: 22px;
        transition: transform .2s ease;
      }

      .mob-bar-btn:active {
        opacity: .75;
      }

      .mob-bar-btn:active svg {
        transform: scale(.9);
      }

      /* Call button */
      .mob-bar-btn.call {
        color: var(--blue-main);
      }

      .mob-bar-btn.call svg {
        fill: var(--blue-main);
      }

      /* WhatsApp button — center hero button */
      .mob-bar-btn.whatsapp {
        background: #25d366;
        color: white;
        border-radius: 0;
        flex: 1.3;
        box-shadow: none;
      }

      .mob-bar-btn.whatsapp svg {
        fill: white;
        width: 26px;
        height: 26px;
      }

      .mob-bar-btn.whatsapp:active {
        background: #1dbd5c;
      }

      /* Email button */
      .mob-bar-btn.email {
        color: var(--cyan-main);
      }

      .mob-bar-btn.email svg {
        fill: var(--cyan-main);
      }

      /* Book button */
      .mob-bar-btn.book {
        color: var(--blue-deep);
      }

      .mob-bar-btn.book svg {
        fill: var(--blue-deep);
      }
    }

    /* ═══════════════════════════════════════════════════
     3D CLINIC OVERVIEW CAROUSEL
  ═══════════════════════════════════════════════════ */
    #clinic-overview {

      background: linear-gradient(160deg, var(--blue-deep) 0%, #b88a63 60%, #7d593d 100%);
      padding: 96px 0 110px;
      overflow: hidden;
      position: relative;
    }

    #clinic-overview::before {
      content: '';
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: rgba(62, 182, 212, .06);
      top: -200px;
      right: -200px;
      pointer-events: none;
    }

    .overview-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .overview-header .section-tag {
      background: rgba(255, 255, 255, .12);
      color: white;
      border-color: rgba(255, 255, 255, .2);
    }

    .overview-header .section-title {
      color: white;
    }

    .overview-header .section-sub {
      color: rgba(255, 255, 255, .7);
      margin: 0 auto;
    }

    /* ══ 3D WRAP ══════════════════ */
.carousel3d-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══ STAGE ══════════════════ */
.carousel3d-stage {
  position: relative;
  width: 340px;
  height: 380px;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

/* ══ SLIDE ══════════════════ */
.c3d-slide {
  position: absolute;
  width: 340px;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45);
}

/* ══ CARD LAYOUT SPLIT ══════════════════ */
.c3d-slide-bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* TOP IMAGE */
.c3d-image {
  height: 50%;
  width: 100%;
  overflow: hidden;
}

.c3d-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.c3d-slide:hover .c3d-image img {
  transform: scale(1.08);
}

/* BOTTOM CONTENT */
.c3d-content {
  height: 50%;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

/* TEXT STYLES */
.c3d-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.c3d-content p {
  font-size: .85rem;
  line-height: 1.5;
  opacity: .9;
}

/* BADGE */
.c3d-badge {
  margin-top: 12px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
}

/* ══ GRADIENT BACKGROUNDS ══════════════════ */
/* Slide-specific gradients (THEME BASED) */

.c3d-slide:nth-child(1) .c3d-slide-bg {
  background: linear-gradient(145deg, var(--blue-main), var(--blue-deep));
}

.c3d-slide:nth-child(2) .c3d-slide-bg {
  background: linear-gradient(145deg, var(--cyan-main), var(--blue-main));
}

.c3d-slide:nth-child(3) .c3d-slide-bg {
  background: linear-gradient(145deg, var(--blue-deep), var(--slate));
}

.c3d-slide:nth-child(4) .c3d-slide-bg {
  background: linear-gradient(145deg, var(--cyan-mid), var(--blue-deep));
}

.c3d-slide:nth-child(5) .c3d-slide-bg {
  background: linear-gradient(145deg, var(--slate), var(--blue-main));
}

.c3d-slide:nth-child(6) .c3d-slide-bg {
  background: linear-gradient(145deg, var(--cyan-main), var(--slate));
}

/* ══ ARROWS ══════════════════ */
.c3d-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.c3d-prev { left: 10px; }
.c3d-next { right: 10px; }

.c3d-arrow svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
}

/* Dots */ .c3d-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; } .c3d-dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(255, 255, 255, .3); border: none; cursor: pointer; transition: all .3s; padding: 0; } .c3d-dot.active { background: var(--cyan-main); width: 28px; box-shadow: 0 0 10px rgba(62, 182, 212, .6); } /* Slide counter */ .c3d-counter { text-align: center; margin-top: 14px; font-size: .8rem; color: rgba(255, 255, 255, .5); letter-spacing: .08em; } @media (max-width: 768px) { .carousel3d-wrap { height: 340px; perspective: 800px; } .carousel3d-stage { width: 280px; height: 320px; } .c3d-slide { width: 280px; height: 320px; } .c3d-prev { left: 8px; } .c3d-next { right: 8px; } .c3d-slide-icon { width: 64px; height: 64px; } .c3d-slide-icon svg { width: 32px; height: 32px; } .c3d-slide h3 { font-size: 1.25rem; } }

/* ══ RESPONSIVE ══════════════════ */
@media (max-width: 768px) {
  .carousel3d-stage,
  .c3d-slide {
    width: 280px;
    height: 320px;
  }

  .c3d-arrow {
    width: 44px;
    height: 44px;
  }
}
    .testimonial-slider{
  position:relative;
  overflow:hidden;
  margin-top:50px;
  max-width:400px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-track{
  display:flex;
  transition:transform .5s ease;
}

.testimonial-card{
  min-width:100%;
  width:100%;
  flex-shrink:0;
  background:#fff;
  /* border-radius:24px; */
  padding:40px;
  /* box-shadow:0 10px 40px rgba(0,0,0,.08); */
}

.slider-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:24px;
}

.slider-dots .dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#d9d9d9;
  cursor:pointer;
}

.slider-dots .dot.active{
  background:#c89a6f;
}

.testi-avatar{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#c89a6f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
}

@media(max-width:768px){
  .testimonial-card{
    padding:28px;
  }
}
  
.social-btn svg {
  width: 22px;
  height: 22px;
  fill: var(--cyan-main);
}
.c3d-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.footer-bottom a {
  color: var(--cyan-main);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--blue-light);
}

.interlink-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--off-white);
  border: 1px solid var(--cyan-mid);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.chip-link:hover {
  background: var(--cyan-main);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.g-recaptcha{
  max-width: 250px !important;
}