:root {
      --green-deep:    #0d3d2e;
      --green-dark:    #145c44;
      --green-mid:     #1a7a57;
      --green-bright:  #22a06b;
      --green-light:   #4eca94;
      --green-pale:    #e8f7f1;
      --green-mint:    #d0f0e4;
      --sage:          #7fb69a;
      --white:         #ffffff;
      --off-white:     #f6fbf8;
      --gold:          #c8a45a;
      --gold-light:    #e8c97a;
      --text-dark:     #0d2118;
      --text-mid:      #3a5c4a;
      --text-muted:    #6b9080;
    }

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

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── HEADER ─── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13, 61, 46, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(74,202,148,0.15);
      padding: 0 2.5rem;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav { display: flex; gap: 2.2rem; align-items: center; }

    nav a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    nav a:hover { color: var(--green-light); }

    .header-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }

    .header-name {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      font-size: 1.15rem;
      font-weight: 600;
      line-height: 1.2;
    }

    .header-cred {
      font-size: 0.68rem;
      color: var(--green-light);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: rgba(13,61,46,0.99);
      padding: 1.5rem 2rem;
      flex-direction: column;
      gap: 1.2rem;
      z-index: 999;
      border-bottom: 1px solid rgba(74,202,148,0.15);
    }

    .mobile-menu.open { display: flex; }

    .mobile-menu a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.3rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s;
    }

    .mobile-menu a:hover { color: var(--green-light); }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      background: var(--green-deep);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 68px;
    }

    /* Layered organic background */
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-bg-blob1 {
      position: absolute;
      top: -120px; right: -80px;
      width: 700px; height: 700px;
      background: radial-gradient(ellipse at 60% 40%, rgba(34,160,107,0.22) 0%, transparent 65%);
      border-radius: 50%;
      animation: blobFloat 8s ease-in-out infinite;
    }

    .hero-bg-blob2 {
      position: absolute;
      bottom: -200px; left: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(ellipse at 40% 60%, rgba(78,202,148,0.12) 0%, transparent 65%);
      border-radius: 50%;
      animation: blobFloat 10s ease-in-out infinite reverse;
    }

    .hero-bg-blob3 {
      position: absolute;
      top: 40%; left: 40%;
      width: 400px; height: 400px;
      background: radial-gradient(ellipse, rgba(200,164,90,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    /* Subtle grid */
    .hero-bg-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(78,202,148,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78,202,148,0.04) 1px, transparent 1px);
      background-size: 55px 55px;
    }

    /* ECG / heartbeat line decoration */
    .hero-ecg {
      position: absolute;
      bottom: 80px;
      left: 0; right: 0;
      height: 60px;
      opacity: 0.12;
      overflow: hidden;
    }

    .hero-ecg svg {
      width: 200%;
      height: 100%;
      animation: ecgScroll 6s linear infinite;
    }

    @keyframes ecgScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes blobFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.03); }
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2.5rem;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 5rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(78,202,148,0.1);
      border: 1px solid rgba(78,202,148,0.3);
      color: var(--green-light);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 100px;
      margin-bottom: 1.6rem;
      animation: fadeUp 0.7s ease both;
    }

    .hero-badge-dot {
      width: 6px; height: 6px;
      background: var(--green-light);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      font-size: clamp(3rem, 5.5vw, 5rem);
      line-height: 1.08;
      margin-bottom: 0.4rem;
      animation: fadeUp 0.7s 0.1s ease both;
      font-weight: 700;
    }

    .hero-title .name-italic {
      color: var(--green-light);
      font-style: italic;
      font-weight: 400;
    }

    .hero-title .name-line2 {
      display: block;
      color: rgba(255,255,255,0.92);
    }

    .hero-credentials {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1.8rem;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-cred-pill {
      background: rgba(200,164,90,0.12);
      border: 1px solid rgba(200,164,90,0.3);
      color: var(--gold);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
    }

    .hero-desc {
      color: rgba(255,255,255,0.62);
      font-size: 1rem;
      line-height: 1.85;
      max-width: 500px;
      margin-bottom: 2.8rem;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
      color: var(--white);
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.04em;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 8px 30px rgba(34,160,107,0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(34,160,107,0.5);
    }

    .btn-primary svg {
      width: 16px; height: 16px;
      transition: transform 0.2s;
    }

    .btn-primary:hover svg { transform: translateX(3px); }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.25);
      color: rgba(255,255,255,0.8);
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 500;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--green-light);
      color: var(--green-light);
      transform: translateY(-3px);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      animation: fadeUp 0.7s 0.5s ease both;
    }

    .stat h3 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--green-light);
      font-size: 2.2rem;
      line-height: 1;
      font-weight: 700;
    }

    .stat p {
      color: rgba(255,255,255,0.45);
      font-size: 0.72rem;
      margin-top: 5px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ─── HERO VISUAL CARD ─── */
    .hero-visual {
      display: flex;
      justify-content: center;
      animation: fadeUp 0.7s 0.35s ease both;
    }

    .doc-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(78,202,148,0.18);
      border-radius: 24px;
      padding: 2.5rem;
      width: 100%;
      max-width: 370px;
      backdrop-filter: blur(16px);
      position: relative;
      box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    }

    .doc-card-glow {
      position: absolute;
      top: -1px; left: -1px; right: -1px; bottom: -1px;
      border-radius: 24px;
      background: linear-gradient(135deg, rgba(78,202,148,0.2), transparent 50%, rgba(200,164,90,0.1));
      pointer-events: none;
      z-index: -1;
    }

    .doc-card-top-bar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green-mid), var(--green-light), var(--gold));
      border-radius: 24px 24px 0 0;
    }

    .doc-avatar {
      width: 88px; height: 88px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      border: 2.5px solid rgba(78,202,148,0.4);
      box-shadow: 0 0 30px rgba(78,202,148,0.2);
    }

    .doc-card h3 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      font-size: 1.35rem;
      margin-bottom: 3px;
      font-weight: 600;
    }

    .doc-card .title {
      color: var(--sage);
      font-size: 0.78rem;
      font-weight: 500;
      margin-bottom: 1.6rem;
      letter-spacing: 0.04em;
    }

    .expertise-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1.6rem;
    }

    .tag {
      background: rgba(34,160,107,0.12);
      border: 1px solid rgba(34,160,107,0.25);
      color: var(--green-light);
      font-size: 0.7rem;
      padding: 5px 12px;
      border-radius: 100px;
      font-weight: 600;
      letter-spacing: 0.03em;
    }

    .availability {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(34,160,107,0.1);
      border: 1px solid rgba(34,160,107,0.2);
      border-radius: 10px;
      padding: 11px 16px;
    }

    .avail-dot {
      width: 8px; height: 8px;
      background: #4ade80;
      border-radius: 50%;
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }

    .availability span {
      color: rgba(255,255,255,0.75);
      font-size: 0.8rem;
      font-weight: 500;
    }

    /* Appointment mini-preview inside card */
    .appt-preview {
      margin-top: 1.2rem;
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      padding: 1rem;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .appt-preview-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--sage);
      font-weight: 700;
      margin-bottom: 0.7rem;
    }

    .appt-days {
      display: flex;
      gap: 6px;
    }

    .appt-day {
      flex: 1;
      text-align: center;
      padding: 6px 4px;
      border-radius: 7px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .appt-day.active {
      background: rgba(34,160,107,0.2);
      color: var(--green-light);
      border: 1px solid rgba(34,160,107,0.3);
    }

    .appt-day.inactive {
      background: rgba(255,255,255,0.03);
      color: rgba(255,255,255,0.2);
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
      50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
    }

    /* ─── MARQUEE ─── */
    .marquee-strip {
      background: linear-gradient(90deg, var(--green-mid), var(--green-bright));
      padding: 13px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 3rem;
      animation: marquee 25s linear infinite;
      white-space: nowrap;
    }

    .marquee-track span {
      color: rgba(255,255,255,0.9);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .marquee-track span::before {
      content: '+';
      color: var(--gold-light);
      font-size: 1rem;
      font-weight: 700;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ─── SECTION COMMON ─── */
    section { padding: 5rem 2.5rem; }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--green-mid);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 0.9rem;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 2px;
      background: var(--green-mid);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--text-dark);
      line-height: 1.15;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .section-title em { color: var(--green-mid); font-style: italic; }

    /* ─── SERVICES ─── */
    .services { background: var(--white); }

    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .services-subtitle {
      color: var(--text-muted);
      font-size: 0.9rem;
      max-width: 340px;
      line-height: 1.7;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 1.4rem;
    }

    .service-card {
      background: var(--green-pale);
      border: 1px solid rgba(34,160,107,0.1);
      border-radius: 18px;
      padding: 2rem;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
      cursor: default;
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 24px 50px rgba(34,160,107,0.13);
      border-color: rgba(34,160,107,0.28);
      background: var(--white);
    }

    .service-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(34,160,107,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
      transition: background 0.25s;
    }

    .service-card:hover .service-icon-wrap {
      background: rgba(34,160,107,0.2);
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      font-weight: 700;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.86rem;
      line-height: 1.75;
    }

    .service-arrow {
      position: absolute;
      bottom: 1.5rem; right: 1.5rem;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(34,160,107,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-mid);
      font-size: 0.8rem;
      opacity: 0;
      transform: translateX(-6px);
      transition: opacity 0.25s, transform 0.25s;
    }

    .service-card:hover .service-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* ─── LOCATIONS ─── */
    .locations { background: var(--green-deep); }

    .locations .section-label { color: var(--green-light); }
    .locations .section-label::before { background: var(--green-light); }
    .locations .section-title { color: var(--white); }
    .locations .section-title em { color: var(--green-light); }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
      gap: 1.4rem;
      margin-top: 3rem;
    }

    .loc-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(78,202,148,0.12);
      border-radius: 18px;
      padding: 2rem;
      transition: transform 0.25s, border-color 0.25s, background 0.25s;
    }

    .loc-card:hover {
      transform: translateY(-5px);
      border-color: rgba(78,202,148,0.3);
      background: rgba(255,255,255,0.07);
    }

    .loc-badge {
      display: inline-block;
      background: rgba(78,202,148,0.12);
      border: 1px solid rgba(78,202,148,0.25);
      color: var(--green-light);
      font-size: 0.65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 4px 11px;
      border-radius: 100px;
      margin-bottom: 1.1rem;
    }

    .loc-card h3 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      font-size: 1.1rem;
      line-height: 1.3;
      margin-bottom: 0.4rem;
      font-weight: 600;
    }

    .loc-card .loc-sub {
      color: var(--gold);
      font-size: 0.76rem;
      font-weight: 600;
      margin-bottom: 0.9rem;
      letter-spacing: 0.04em;
    }

    .loc-card .loc-detail {
      color: rgba(255,255,255,0.5);
      font-size: 0.82rem;
      line-height: 1.65;
    }

    .loc-since {
      display: inline-block;
      margin-top: 1.1rem;
      font-size: 0.69rem;
      color: rgba(255,255,255,0.25);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* ─── ABOUT STRIP ─── */
    .about-strip {
      background: var(--off-white);
      padding: 5rem 2.5rem;
    }

    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 5rem;
      align-items: center;
    }

    .about-card-visual {
      background: var(--green-deep);
      border-radius: 24px;
      padding: 3rem;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .about-card-visual::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78,202,148,0.15) 0%, transparent 70%);
    }

    .about-card-visual .ql {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: var(--green-light);
      line-height: 0.8;
      margin-bottom: 1rem;
      opacity: 0.6;
    }

    .about-card-visual p {
      color: rgba(255,255,255,0.75);
      font-size: 1rem;
      line-height: 1.85;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
    }

    .about-card-visual .author {
      margin-top: 1.8rem;
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-style: normal;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .about-right .section-label { color: var(--green-mid); }
    .about-right .section-title { color: var(--text-dark); }

    .about-right p {
      color: var(--text-muted);
      font-size: 0.93rem;
      line-height: 1.9;
      margin-bottom: 1rem;
    }

    .about-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 1.8rem;
    }

    .pill {
      background: rgba(34,160,107,0.08);
      border: 1px solid rgba(34,160,107,0.2);
      color: var(--green-mid);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 100px;
      letter-spacing: 0.03em;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials {
      background: var(--white);
      padding: 5rem 0;
      overflow: hidden;
    }

    .testimonials .section-inner {
      padding: 0 2.5rem;
      margin-bottom: 3rem;
    }

    .testi-row {
      display: flex;
      gap: 1.4rem;
      margin-bottom: 1.4rem;
    }

    .testi-row-1 .testi-track { animation: marquee 32s linear infinite; }
    .testi-row-2 .testi-track { animation: marquee-reverse 28s linear infinite; }

    @keyframes marquee-reverse {
      from { transform: translateX(-50%); }
      to { transform: translateX(0); }
    }

    .testi-track {
      display: flex;
      gap: 1.4rem;
      white-space: nowrap;
    }

    .testi-card {
      background: var(--green-pale);
      border: 1px solid rgba(34,160,107,0.1);
      border-radius: 18px;
      padding: 1.6rem 2rem;
      min-width: 320px;
      max-width: 320px;
      white-space: normal;
      display: inline-block;
      vertical-align: top;
      flex-shrink: 0;
      transition: border-color 0.2s;
    }

    .testi-card:hover { border-color: rgba(34,160,107,0.25); }

    .testi-stars {
      color: var(--gold);
      font-size: 0.85rem;
      letter-spacing: 3px;
      margin-bottom: 0.9rem;
    }

    .testi-card p {
      color: var(--text-dark);
      font-size: 0.87rem;
      line-height: 1.75;
      margin-bottom: 1.1rem;
      font-style: italic;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
    }

    .testi-author {
      font-weight: 700;
      color: var(--green-mid);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--green-deep);
      color: var(--white);
      padding: 3.5rem 2.5rem 1.5rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .footer-brand .name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: 4px;
      font-weight: 700;
    }

    .footer-brand .cred {
      color: var(--green-light);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
      font-weight: 600;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.45);
      font-size: 0.85rem;
      line-height: 1.75;
      max-width: 300px;
    }

    .footer-col h4 {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.3rem;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li {
      color: rgba(255,255,255,0.48);
      font-size: 0.84rem;
      margin-bottom: 0.7rem;
    }

    .footer-col ul li a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: var(--green-light); }

    .footer-bottom {
      max-width: 1200px;
      margin: 1.5rem auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255,255,255,0.25);
      font-size: 0.76rem;
    }

    .footer-green-cross {
      font-size: 1.2rem;
      color: var(--green-light);
      opacity: 0.3;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 3rem 1.5rem;
      }

      .hero-desc { margin: 0 auto 2.5rem; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { display: none; }
      .hero-credentials { justify-content: center; flex-wrap: wrap; }

      .about-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

      .testi-card { min-width: 270px; max-width: 270px; }
      .services-header { flex-direction: column; align-items: flex-start; }
    }


    /* ═══════════════════════════════════════════════════════════
       DOCTOR PAGE DARK THEME  (body.dp)
       Applies only when <body class="dp"> — doctor.php
       index.php is completely unaffected.
    ═══════════════════════════════════════════════════════════ */

    body.dp {
      background: #091a0f;
      color: #e2efe8;
    }

    /* ── All sections dark ── */
    body.dp section,
    body.dp .about-strip,
    body.dp .testimonials {
      background: #091a0f;
    }

    /* ── Alternate section slightly different shade for visual rhythm ── */
    body.dp .services  { background: #0b1f13; }
    body.dp .about-strip { background: #091a0f; }
    body.dp .testimonials { background: #0b1f13; }

    /* ── Section labels: pill style, no left line ── */
    body.dp .section-label {
      color: #4eca94;
      background: rgba(78,202,148,0.08);
      border: 1px solid rgba(78,202,148,0.2);
      border-radius: 50px;
      padding: 4px 14px;
      gap: 0;
    }
    body.dp .section-label::before { display: none; }

    /* ── Section titles & body text ── */
    body.dp .section-title        { color: #f0f4f8; }
    body.dp .section-title em     { color: #4eca94; }
    body.dp .services-subtitle    { color: #6b9e80; }
    body.dp .about-right p        { color: #6b9e80; }

    /* ── Service cards ── */
    body.dp .service-card {
      background: rgba(255,255,255,0.03);
      border-color: rgba(78,202,148,0.1);
    }
    body.dp .service-card:hover {
      background: rgba(78,202,148,0.06);
      border-color: rgba(78,202,148,0.28);
      box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    }
    body.dp .service-card h3      { color: #f0f4f8; }
    body.dp .service-card p       { color: #6b9e80; }
    body.dp .service-icon-wrap    { background: rgba(78,202,148,0.1); }
    body.dp .service-card:hover .service-icon-wrap { background: rgba(78,202,148,0.18); }
    body.dp .service-arrow        { color: #4eca94; border-color: rgba(78,202,148,0.2); }

    /* ── About section ── */
    body.dp .about-right .section-label { color: #4eca94; }
    body.dp .about-right .section-title { color: #f0f4f8; }

    /* ── Pills ── */
    body.dp .pill {
      background: rgba(78,202,148,0.08);
      border-color: rgba(78,202,148,0.2);
      color: #4eca94;
    }

    /* ── Testimonial cards ── */
    body.dp .testi-card {
      background: rgba(255,255,255,0.03);
      border-color: rgba(78,202,148,0.1);
    }
    body.dp .testi-card:hover { border-color: rgba(78,202,148,0.25); }
    body.dp .testi-card p     { color: #c8ddd2; }
    body.dp .testi-author     { color: #4eca94; }
    body.dp .testi-stars      { color: #c8a45a; }

    /* ── Testimonials heading ── */
    body.dp .testimonials .section-inner .section-label { color: #4eca94; }
    body.dp .testimonials .section-inner .section-title { color: #f0f4f8; }