/* ===================== CSS VARIABLES ===================== */
    :root {
      --teal: #2ec4b6;
      --teal-dark: #1a9e92;
      --teal-deeper: #0d7a70;
      --teal-pale: #e6faf8;
      --teal-light: #b2ede8;
      --white: #ffffff;
      --charcoal: #1c2b2a;
      --mid: #4a6462;
      --soft: #7a9e9c;
      --accent: #ff8fab;
      --accent-soft: #ffe0ea;
      --accent-dark: #d63a6e;
      --bg: #f0faf9;
      --card-shadow: 0 8px 32px rgba(46, 196, 182, 0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--bg);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ===================== SCROLLBAR ===================== */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: #f0faf9;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--teal);
      border-radius: 3px;
    }

    /* ===================== NAV ===================== */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 500;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(46, 196, 182, 0.15);
      padding: 0 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      box-shadow: 0 2px 20px rgba(46, 196, 182, 0.08);
      transition: all 0.3s;
    }

    nav.scrolled {
      height: 62px;
      box-shadow: 0 4px 28px rgba(46, 196, 182, 0.14);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo img {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      object-fit: cover;
    }

    .nav-logo-text strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--teal-dark);
      display: block;
    }

    .nav-logo-text span {
      font-size: 0.65rem;
      color: var(--soft);
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--mid);
      font-size: 0.85rem;
      font-weight: 600;
      transition: color 0.2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--teal);
      transform: scaleX(0);
      transition: transform 0.2s;
      border-radius: 2px;
    }

    .nav-links a:hover {
      color: var(--teal-dark);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white !important;
      padding: 10px 22px;
      border-radius: 50px;
      box-shadow: 0 4px 16px rgba(46, 196, 182, 0.35);
      transition: all 0.25s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 8px 24px rgba(46, 196, 182, 0.45) !important;
    }

    .nav-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.4rem;
      color: var(--teal-dark);
    }

    /* ===================== HERO ===================== */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .hero-left {
      padding: 80px 5vw 80px 7vw;
      display: flex;
      flex-direction: column;
      justify-content: center;
      animation: fadeUp 0.9s ease both;
      position: relative;
      z-index: 1;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-soft);
      color: #c95c7e;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 28px;
      align-self: flex-start;
      border: 1px solid rgba(255, 143, 171, 0.3);
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      animation: blink 2s infinite;
    }

    h1.hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 4.5vw, 4.2rem);
      line-height: 1.08;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 22px;
    }

    h1.hero-title em {
      font-style: italic;
      color: var(--teal-dark);
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--mid);
      line-height: 1.85;
      max-width: 460px;
      margin-bottom: 40px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white;
      padding: 14px 34px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.93rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(46, 196, 182, 0.35);
      transition: all 0.25s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(46, 196, 182, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--teal-dark);
      padding: 14px 34px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.93rem;
      text-decoration: none;
      border: 2px solid var(--teal);
      cursor: pointer;
      transition: all 0.25s;
    }

    .btn-outline:hover {
      background: var(--teal);
      color: white;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      padding-top: 32px;
      border-top: 1px solid rgba(46, 196, 182, 0.18);
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--teal-dark);
    }

    .stat-label {
      font-size: 0.75rem;
      color: var(--mid);
      margin-top: 3px;
      font-weight: 500;
    }

    .hero-right {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
      animation: fadeRight 1s ease both 0.25s;
      min-height: 720px;
    }

    .hero-right-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 50%, #0b635a 100%);
    }

    .hero-right-dots {
      position: absolute;
      inset: 0;
      opacity: 0.07;
      background-image: radial-gradient(circle, white 1.5px, transparent 1.5px);
      background-size: 26px 26px;
    }

    .doctor-img {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 540px;
      object-fit: cover;
      object-position: top;
      display: block;
      margin: 0 auto;
      filter: drop-shadow(0 -10px 40px rgba(0, 0, 0, 0.2));
    }

    .name-card {
      position: absolute;
      bottom: 36px;
      left: 28px;
      z-index: 10;
      background: white;
      border-radius: 16px;
      padding: 16px 22px;
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
      min-width: 230px;
      animation: floatCard 4s ease-in-out infinite;
    }

    .name-card .doc-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--charcoal);
    }

    .name-card .doc-spec {
      font-size: 0.72rem;
      color: var(--teal-dark);
      font-weight: 600;
      margin-top: 2px;
    }

    .avail-pill {
      position: absolute;
      top: 28px;
      right: 28px;
      z-index: 10;
      background: white;
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--charcoal);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 7px;
      animation: floatCard2 5s ease-in-out infinite;
    }

    .avail-dot {
      width: 9px;
      height: 9px;
      background: #22c55e;
      border-radius: 50%;
      animation: blink 1.5s infinite;
    }

    /* ===================== SECTION COMMON ===================== */
    .section {
      padding: 90px 7vw;
    }

    .section-label {
      display: inline-block;
      color: var(--teal-dark);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      font-weight: 700;
      line-height: 1.15;
    }

    .section-title em {
      font-style: italic;
      color: var(--teal-dark);
    }

    .section-sub {
      color: var(--mid);
      font-size: 0.92rem;
      margin-top: 12px;
      max-width: 520px;
      line-height: 1.8;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-header .section-sub {
      margin-left: auto;
      margin-right: auto;
    }

    /* ===================== ABOUT STRIP ===================== */
    .about-strip {
      background: var(--teal-pale);
      padding: 60px 7vw;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      align-items: center;
      border-top: 1px solid rgba(46, 196, 182, 0.15);
      border-bottom: 1px solid rgba(46, 196, 182, 0.15);
    }

    .about-logo-wrap img {
      width: 160px;
      height: 160px;
      border-radius: 24px;
      object-fit: cover;
      box-shadow: 0 16px 48px rgba(46, 196, 182, 0.25);
    }

    .about-text p {
      color: var(--mid);
      line-height: 1.85;
      font-size: 0.94rem;
      margin-bottom: 18px;
    }

    .address-box {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: white;
      border-radius: 14px;
      padding: 18px 22px;
      border: 1px solid rgba(46, 196, 182, 0.2);
      box-shadow: 0 4px 16px rgba(46, 196, 182, 0.08);
    }

    .address-box strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .address-box span {
      font-size: 0.82rem;
      color: var(--mid);
      line-height: 1.6;
    }

    /* ===================== SERVICES ===================== */
    .services-section {
      background: var(--bg);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: white;
      border-radius: 20px;
      padding: 30px 26px;
      border: 1px solid rgba(46, 196, 182, 0.1);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--accent));
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(46, 196, 182, 0.15);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      background: var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .service-card h3 {
      font-size: 0.98rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 0.83rem;
      color: var(--mid);
      line-height: 1.7;
    }

    /* ===================== DOCTORS ===================== */
    .doctors-section {
      background: white;
    }

    .doctors-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      max-width: 960px;
      margin: 0 auto;
    }

    .doctor-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 16px 48px rgba(46, 196, 182, 0.12);
      border: 1px solid rgba(46, 196, 182, 0.12);
      transition: transform 0.3s;
    }

    .doctor-card:nth-child(2) {
      box-shadow: 0 16px 48px rgba(255, 143, 171, 0.12);
      border-color: rgba(255, 143, 171, 0.15);
    }

    .doctor-card:hover {
      transform: translateY(-6px);
    }

    .doctor-card-img {
      height: 300px;
      overflow: hidden;
    }

    .doctor-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .doctor-card-body {
      padding: 26px;
    }

    .doctor-card-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .doctor-spec-teal {
      color: var(--teal-dark);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .doctor-spec-pink {
      color: var(--accent-dark);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .doctor-card-body p {
      color: var(--mid);
      line-height: 1.8;
      font-size: 0.86rem;
      margin-bottom: 18px;
    }

    .doc-stats {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .doc-stat {
      background: var(--teal-pale);
      padding: 10px 14px;
      border-radius: 10px;
      text-align: center;
    }

    .doc-stat-pink {
      background: var(--accent-soft);
    }

    .doc-stat .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--teal-dark);
    }

    .doc-stat-pink .num {
      color: var(--accent-dark);
    }

    .doc-stat .lbl {
      font-size: 0.68rem;
      color: var(--mid);
      font-weight: 600;
    }

    /* ===================== VIDEOS ===================== */
    .videos-section {
      background: var(--bg);
    }

    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 22px;
    }

    .video-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(46, 196, 182, 0.1);
      display: flex;
      flex-direction: column;
    }

    .video-wrap-card {
      aspect-ratio: 9/16;
      background: #000;
      flex-shrink: 0;
    }

    .video-wrap-card video,
    .video-wrap-card iframe {
      width: 100%;
      height: 100%;
      display: block;
      background: #000;
      border: 0;
    }

    .video-embed-card {
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .video-card-label {
      padding: 16px 20px;
    }

    .video-card-label h4 {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.4;
    }

    .video-card-label span {
      font-size: 0.75rem;
      color: var(--soft);
      margin-top: 4px;
      display: block;
    }

    .video-card-label a {
      color: var(--teal-dark);
      font-weight: 700;
      text-decoration: none;
    }

    .video-card-label a:hover {
      color: var(--accent-dark);
    }

    /* ===================== APPOINTMENT ===================== */
    .appt-section {
      background: linear-gradient(145deg, var(--teal-dark) 0%, #0a6058 100%);
      padding: 80px 7vw;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
    }

    .appt-info {
      color: white;
    }

    .appt-info .section-label {
      color: rgba(255, 255, 255, 0.6);
    }

    .appt-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .appt-info h2 em {
      font-style: italic;
      color: var(--teal-light);
    }

    .appt-info>p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.92rem;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .appt-feats {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .appt-feat {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .appt-feat-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      flex-shrink: 0;
    }

    .appt-feat strong {
      display: block;
      color: white;
      font-size: 0.86rem;
      font-weight: 600;
    }

    .appt-feat span {
      font-size: 0.76rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .appt-form-card {
      background: white;
      border-radius: 24px;
      padding: 38px 34px;
      box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
    }

    .appt-form-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: var(--charcoal);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
    }

    .form-full {
      grid-column: 1/-1;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-group label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--soft);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      border: 1.5px solid rgba(0, 0, 0, 0.09);
      border-radius: 10px;
      padding: 11px 14px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.87rem;
      color: var(--charcoal);
      background: #f8fffe;
      outline: none;
      transition: all 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      background: white;
      box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.12);
    }

    .slot-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .slot-btn {
      padding: 8px 6px;
      border: 1.5px solid rgba(46, 196, 182, 0.3);
      border-radius: 8px;
      font-size: 0.76rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      background: white;
      color: var(--teal-dark);
      text-align: center;
    }

    .slot-btn.selected {
      background: var(--teal);
      border-color: var(--teal);
      color: white;
    }

    .slot-btn.booked {
      background: #f5f5f5;
      border-color: #ddd;
      color: #aaa;
      cursor: not-allowed;
      text-decoration: line-through;
    }

    .slot-btn:not(.booked):not(.selected):hover {
      border-color: var(--teal);
      background: var(--teal-pale);
    }

    .form-submit {
      width: 100%;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      margin-top: 16px;
      transition: all 0.25s;
      box-shadow: 0 6px 20px rgba(46, 196, 182, 0.3);
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(46, 196, 182, 0.4);
    }

    .booking-success {
      display: none;
      text-align: center;
      padding: 20px 0;
    }

    .booking-success .check {
      font-size: 3rem;
      margin-bottom: 12px;
    }

    .booking-success h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--teal-dark);
      margin-bottom: 8px;
    }

    .booking-success p {
      font-size: 0.87rem;
      color: var(--mid);
      line-height: 1.7;
    }

    /* ===================== CONTACT ===================== */
    .contact-section {
      background: white;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .contact-info-items {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: 24px;
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--teal-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-item strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 3px;
    }

    .contact-item span,
    .contact-item a {
      font-size: 0.84rem;
      color: var(--mid);
      text-decoration: none;
      line-height: 1.6;
      display: block;
    }

    .contact-item a:hover {
      color: var(--teal-dark);
    }

    .map-embed {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(46, 196, 182, 0.15);
      background: linear-gradient(160deg, rgba(46, 196, 182, 0.12), rgba(255, 255, 255, 0.98));
    }

    .map-link-card {
      min-height: 360px;
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
      text-decoration: none;
      color: var(--charcoal);
      background:
        radial-gradient(circle at top right, rgba(46, 196, 182, 0.25), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 143, 171, 0.18), transparent 28%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(230, 250, 248, 0.95));
    }

    .map-link-card:hover {
      background:
        radial-gradient(circle at top right, rgba(46, 196, 182, 0.32), transparent 36%),
        radial-gradient(circle at bottom left, rgba(255, 143, 171, 0.22), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 1), rgba(230, 250, 248, 1));
    }

    .map-link-badge {
      align-self: flex-start;
      background: rgba(46, 196, 182, 0.14);
      color: var(--teal-dark);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .map-link-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      line-height: 1.1;
    }

    .map-link-card p {
      font-size: 0.96rem;
      line-height: 1.8;
      color: var(--mid);
      max-width: 420px;
    }

    .map-link-cta {
      color: var(--teal-dark);
      font-weight: 800;
      font-size: 0.92rem;
    }

    .social-links {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1rem;
      transition: opacity 0.2s;
    }

    .social-link:hover {
      opacity: 0.8;
      transform: translateY(-2px);
    }

    /* ===================== EMERGENCY ===================== */
    .emergency-bar {
      background: linear-gradient(90deg, #d63031, #e84393);
      padding: 20px 7vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }

    .emerg-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .emerg-icon {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .emerg-left strong {
      display: block;
      color: white;
      font-size: 0.96rem;
      font-weight: 700;
    }

    .emerg-left span {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.8rem;
    }

    .emerg-call {
      color: white;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      text-decoration: none;
    }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.65);
      padding: 56px 7vw 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 44px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .footer-logo-row img {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      object-fit: cover;
    }

    .footer-logo-row span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: white;
    }

    .footer-brand p {
      font-size: 0.83rem;
      line-height: 1.8;
      max-width: 270px;
      margin-bottom: 16px;
    }

    .footer-addr {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 0.81rem;
      line-height: 1.7;
    }

    footer h4 {
      color: white;
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 16px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    footer ul {
      list-style: none;
    }

    footer ul li {
      margin-bottom: 8px;
    }

    footer ul li a {
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      font-size: 0.83rem;
      transition: color 0.2s;
    }

    footer ul li a:hover {
      color: var(--teal);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      margin: 0 8px;
    }

    .footer-bottom a:hover {
      color: var(--teal);
    }

    /* ===================== ADMIN PANEL ===================== */
    .admin-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }

    .admin-overlay.active {
      display: flex;
    }

    .admin-modal {
      background: white;
      border-radius: 24px;
      width: 96vw;
      max-width: 1100px;
      max-height: 92vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
    }

    .admin-header {
      background: linear-gradient(135deg, var(--teal-dark), #0a6058);
      color: white;
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .admin-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
    }

    .admin-header-btns {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .admin-close-btn {
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: white;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .admin-close-btn:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .admin-login {
      padding: 48px;
      max-width: 400px;
      margin: 0 auto;
      text-align: center;
    }

    .admin-login h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .admin-login p {
      color: var(--mid);
      font-size: 0.87rem;
      margin-bottom: 28px;
    }

    .admin-login input {
      width: 100%;
      border: 1.5px solid rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      padding: 12px 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem;
      margin-bottom: 12px;
      outline: none;
      transition: all 0.2s;
    }

    .admin-login input:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.12);
    }

    .admin-login-btn {
      width: 100%;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 13px;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      margin-top: 4px;
      transition: all 0.25s;
    }

    .admin-login-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(46, 196, 182, 0.35);
    }

    .admin-body {
      display: flex;
      flex: 1;
      overflow: hidden;
    }

    .admin-sidebar {
      width: 200px;
      background: #f8fffe;
      border-right: 1px solid rgba(46, 196, 182, 0.12);
      padding: 20px 0;
      flex-shrink: 0;
    }

    .admin-nav-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 20px;
      cursor: pointer;
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--mid);
      transition: all 0.2s;
      border-left: 3px solid transparent;
    }

    .admin-nav-item.active {
      color: var(--teal-dark);
      background: var(--teal-pale);
      border-left-color: var(--teal);
    }

    .admin-nav-item:hover:not(.active) {
      background: #f0faf9;
      color: var(--teal-dark);
    }

    .admin-content {
      flex: 1;
      overflow-y: auto;
      padding: 24px;
    }

    .admin-tab {
      display: none;
    }

    .admin-tab.active {
      display: block;
    }

    .dash-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }

    .dash-card {
      background: white;
      border-radius: 14px;
      padding: 18px;
      border: 1px solid rgba(46, 196, 182, 0.1);
      box-shadow: 0 4px 16px rgba(46, 196, 182, 0.06);
    }

    .dash-card .dc-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--teal-dark);
    }

    .dash-card .dc-label {
      font-size: 0.76rem;
      color: var(--mid);
      font-weight: 600;
      margin-top: 2px;
    }

    .admin-table-wrap {
      background: white;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(46, 196, 182, 0.06);
      border: 1px solid rgba(46, 196, 182, 0.1);
    }

    .admin-table-header {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(46, 196, 182, 0.1);
    }

    .admin-table-header h4 {
      font-size: 0.9rem;
      font-weight: 700;
    }

    .admin-filter {
      display: flex;
      gap: 8px;
    }

    .admin-filter select,
    .admin-filter input {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      padding: 7px 12px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.78rem;
      outline: none;
      color: var(--charcoal);
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    th {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--soft);
      padding: 11px 16px;
      text-align: left;
      background: #f8fffe;
    }

    td {
      font-size: 0.82rem;
      padding: 11px 16px;
      color: var(--charcoal);
      border-top: 1px solid rgba(46, 196, 182, 0.07);
    }

    tr:hover td {
      background: #f8fffe;
    }

    .status-badge {
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .status-pending {
      background: #fff7e0;
      color: #b07800;
    }

    .status-confirmed {
      background: #e6faf8;
      color: var(--teal-deeper);
    }

    .status-rejected {
      background: #ffe0ea;
      color: var(--accent-dark);
    }

    .action-btn {
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.72rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      margin-right: 4px;
    }

    .btn-confirm {
      background: var(--teal-pale);
      color: var(--teal-deeper);
    }

    .btn-confirm:hover {
      background: var(--teal);
      color: white;
    }

    .btn-reject {
      background: var(--accent-soft);
      color: var(--accent-dark);
    }

    .btn-reject:hover {
      background: var(--accent);
      color: white;
    }

    .btn-delete {
      background: #f5f5f5;
      color: #999;
    }

    .btn-delete:hover {
      background: #ff5757;
      color: white;
    }

    .add-doctor-form {
      background: white;
      border-radius: 14px;
      padding: 22px;
      box-shadow: 0 4px 16px rgba(46, 196, 182, 0.06);
      border: 1px solid rgba(46, 196, 182, 0.1);
      margin-bottom: 20px;
    }

    .add-doctor-form h4 {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .add-doctor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px;
    }

    /* ===================== CHATBOT ===================== */
    .chatbot-fab {
      position: fixed;
      bottom: 100px;
      right: 28px;
      z-index: 900;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(46, 196, 182, 0.5);
      animation: fabPulse 2.5s infinite;
      transition: all 0.3s;
      font-size: 1.5rem;
    }

    .chatbot-fab:hover {
      transform: scale(1.1);
    }

    .chatbot-window {
      display: none;
      position: fixed;
      bottom: 170px;
      right: 28px;
      z-index: 900;
      width: 360px;
      height: 480px;
      background: white;
      border-radius: 24px;
      box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
      flex-direction: column;
      overflow: hidden;
      border: 1px solid rgba(46, 196, 182, 0.15);
      animation: chatSlideUp 0.3s ease;
    }

    .chatbot-window.open {
      display: flex;
    }

    .chatbot-header {
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .chatbot-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .chatbot-header-info strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .chatbot-header-info span {
      font-size: 0.72rem;
      color: rgba(255, 255, 255, 0.75);
    }

    .chatbot-close {
      margin-left: auto;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      font-size: 1.1rem;
      opacity: 0.8;
    }

    .chatbot-messages {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .chat-msg {
      max-width: 80%;
      padding: 10px 14px;
      border-radius: 16px;
      font-size: 0.83rem;
      line-height: 1.6;
    }

    .chat-msg.bot {
      background: var(--teal-pale);
      color: var(--charcoal);
      border-bottom-left-radius: 4px;
      align-self: flex-start;
    }

    .chat-msg.user {
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      color: white;
      border-bottom-right-radius: 4px;
      align-self: flex-end;
    }

    .chat-msg.typing {
      display: flex;
      gap: 4px;
      align-items: center;
      padding: 12px 16px;
    }

    .typing-dot {
      width: 7px;
      height: 7px;
      background: var(--teal);
      border-radius: 50%;
      animation: typingBounce 1.4s infinite;
    }

    .typing-dot:nth-child(2) {
      animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
      animation-delay: 0.4s;
    }

    .chatbot-quick {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      padding: 8px 16px;
      border-top: 1px solid rgba(46, 196, 182, 0.1);
    }

    .quick-btn {
      padding: 5px 12px;
      border: 1.5px solid rgba(46, 196, 182, 0.3);
      border-radius: 20px;
      font-size: 0.72rem;
      font-weight: 600;
      background: white;
      color: var(--teal-dark);
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .quick-btn:hover {
      background: var(--teal-pale);
      border-color: var(--teal);
    }

    .chatbot-input-row {
      display: flex;
      gap: 8px;
      padding: 12px 16px;
      border-top: 1px solid rgba(46, 196, 182, 0.1);
    }

    .chatbot-input {
      flex: 1;
      border: 1.5px solid rgba(46, 196, 182, 0.2);
      border-radius: 20px;
      padding: 9px 14px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.83rem;
      outline: none;
      transition: all 0.2s;
    }

    .chatbot-input:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.1);
    }

    .chatbot-send {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.95rem;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .chatbot-send:hover {
      transform: scale(1.1);
    }

    /* ===================== FLOATING BUTTONS ===================== */
    .whatsapp-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.6rem;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
      animation: waPulse 2.5s infinite;
      transition: all 0.3s;
    }

    .whatsapp-fab:hover {
      transform: scale(1.1);
    }

    .scroll-top {
      position: fixed;
      bottom: 28px;
      left: 28px;
      z-index: 900;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--teal);
      color: var(--teal-dark);
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(46, 196, 182, 0.2);
      opacity: 0;
      transition: all 0.3s;
      pointer-events: none;
    }

    .scroll-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    .admin-trigger {
      position: fixed;
      bottom: 170px;
      left: 28px;
      z-index: 900;
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.8);
      border: none;
      padding: 8px 14px;
      border-radius: 20px;
      font-size: 0.73rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
      transition: all 0.2s;
      font-family: 'Nunito', sans-serif;
    }

    .admin-trigger:hover {
      background: #2a3b3a;
      color: white;
    }

    /* ===================== KEYFRAMES ===================== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeRight {
      from {
        opacity: 0;
        transform: translateX(24px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.3;
      }
    }

    @keyframes floatCard {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes floatCard2 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(9px);
      }
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
      }

      50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, 0.85);
        transform: scale(1.06);
      }
    }

    @keyframes fabPulse {

      0%,
      100% {
        box-shadow: 0 6px 24px rgba(46, 196, 182, 0.5);
      }

      50% {
        box-shadow: 0 6px 36px rgba(46, 196, 182, 0.85);
        transform: scale(1.06);
      }
    }

    @keyframes chatSlideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes typingBounce {

      0%,
      60%,
      100% {
        transform: translateY(0);
      }

      30% {
        transform: translateY(-6px);
      }
    }

    @keyframes particleFloat {
      0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        transform: translateY(-100px) translateX(var(--drift)) rotate(720deg);
        opacity: 0;
      }
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width:960px) {.hero {
        grid-template-columns: 1fr;
      }

      .hero-right {
        min-height: 540px;
      }

      .about-strip {
        grid-template-columns: 1fr;
      }

      .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
      }

      .videos-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .appt-section {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .dash-cards {
        grid-template-columns: 1fr 1fr;
      }

      .add-doctor-grid {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
      }

      .nav-menu-btn {
        display: block;
      }
    }

    @media (max-width:600px) {
      .hero-right {
        min-height: 420px;
      }

      .doctor-img {
        max-width: 420px;
      }

      .videos-grid {
        grid-template-columns: 1fr;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .dash-cards {
        grid-template-columns: 1fr 1fr;
      }

      .chatbot-window {
        width: calc(100vw - 40px);
        right: 20px;
      }

      .add-doctor-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Mobile nav overlay */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: white;
      z-index: 490;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }

    .mobile-nav.open {
      display: flex;
    }

    .mobile-nav a {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--charcoal);
      text-decoration: none;
      transition: color 0.2s;
    }

    .mobile-nav a:hover {
      color: var(--teal-dark);
    }

    .mobile-nav-close {
      position: absolute;
      top: 24px;
      right: 28px;
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: var(--mid);
    }
