:root {
    --gold: #E6C229;
    --gold-light: #F6E074;
    --gold-pale: #FFFBE6;
    --turmeric: #F1C40F;
    --copper: #D4AC0D;
    --terracotta: #B7950B;
    --saffron: #27AE60;
    --saffron-light: #2ECC71;
    --saffron-pale: #EAFDF1;
    --lotus: #1E8449;
    --lotus-light: #28B463;
    --lotus-pale: #E8F8F5;
    --peacock: #117864;
    --peacock-light: #1ABC9C;
    --maroon: #0E6655;
    --deep: #141A14;
    --earth: #1A251A;
    --bark: #243524;
    --sage: #6B8E23;
    --sage-light: #9ACD32;
    --cream: #F9FBF7;
    --warm-white: #ffffff;
    --ivory: #FDFEFC;
    --ivory-deep: #F2F7EF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--ivory);
    color: var(--deep);
    overflow-x: hidden;
    cursor: none;
  }
  @media (max-width: 768px) { body { cursor: auto; } }

  /* ─── CUSTOM CURSOR ─── */
  .cursor {
    width: 12px; height: 12px;
    background: var(--gold); border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--gold); border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform 0.35s ease, width 0.3s, height 0.3s;
    opacity: 0.6;
  }
  .cursor-ring.hover { width: 56px; height: 56px; opacity: 0.4; }
  @media (max-width: 768px) { .cursor, .cursor-ring { display: none; } }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 24px 60px;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s ease;
  }
  nav.scrolled {
    background: rgba(253,254,252,0.97);
    backdrop-filter: blur(20px);
    padding: 16px 60px;
    border-bottom: 2px solid rgba(230,194,41,0.35);
    box-shadow: 0 4px 30px rgba(39,174,96,0.08);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: var(--gold-light);
    letter-spacing: 0.05em; text-decoration: none;
    line-height: 1.2;
  }
  .nav-logo span { font-style: italic; color: var(--cream); }
  nav.scrolled .nav-logo { color: var(--saffron); }
  nav.scrolled .nav-logo span { color: var(--deep); }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem; font-weight: 300;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(249,251,247,0.85); text-decoration: none;
    transition: color 0.3s; position: relative;
  }
  nav.scrolled .nav-links a { color: rgba(20,26,20,0.75); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: transparent; border: 1px solid var(--gold);
    color: var(--gold) !important; padding: 10px 24px !important;
    letter-spacing: 0.2em !important; transition: all 0.3s ease !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--deep) !important; }
  .nav-cta::after { display: none !important; }
  nav.scrolled .nav-cta { border-color: var(--saffron) !important; color: var(--saffron) !important; }
  nav.scrolled .nav-cta:hover { background: var(--saffron) !important; color: white !important; }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; z-index: 1100;
    background: none; border: none;
  }
  .hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--gold-light); border-radius: 2px;
    transition: all 0.35s ease;
  }
  nav.scrolled .hamburger span { background: var(--deep); }
  .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 nav overlay */
  .mobile-nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(20,26,20,0.97);
    z-index: 1050; flex-direction: column;
    align-items: center; justify-content: center; gap: 36px;
  }
  .mobile-nav-overlay.open { display: flex; }
  .mobile-nav-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--cream);
    text-decoration: none; letter-spacing: 0.1em;
    transition: color 0.3s;
  }
  .mobile-nav-overlay a:hover { color: var(--gold); }
  .mobile-nav-overlay .mobile-nav-cta {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white !important; padding: 14px 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase; border: none;
  }

  /* ─── HERO ─── */
  .hero {
    height: 100vh; min-height: 600px;
    position: relative; display: flex; align-items: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #F8FBF5 0%, #FCFDF9 40%, #F1F7EB 70%, #FAFCF5 100%);
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse at 20% 50%, rgba(39,174,96,0.07) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(30,132,73,0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 60% 80%, rgba(17,120,100,0.05) 0%, transparent 50%);
  }
  .hero-right-deco {
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    background: linear-gradient(135deg, rgba(39,174,96,0.06) 0%, rgba(46,204,113,0.04) 50%, rgba(30,132,73,0.05) 100%);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .hero-mandala {
    position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
    width: 52vw; height: 52vw; max-width: 700px; max-height: 700px;
    opacity: 0.18; animation: spin 60s linear infinite;
  }
  @keyframes spin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
  .hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 760px; }
  .hero-eyebrow {
    font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--saffron); margin-bottom: 28px;
    display: flex; align-items: center; gap: 16px;
    opacity: 0; animation: fadeUp 1s ease 0.3s forwards;
  }
  .hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--saffron); }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--deep); margin-bottom: 28px;
    opacity: 0; animation: fadeUp 1s ease 0.5s forwards;
  }
  .hero-title em { font-style: italic; color: var(--saffron); display: block; }
  .hero-subtitle {
    font-size: clamp(0.75rem, 2vw, 0.8rem); font-weight: 200;
    letter-spacing: 0.1em; line-height: 1.9;
    color: var(--deep); max-width: 460px; margin-bottom: 50px;
    opacity: 0; animation: fadeUp 1s ease 0.7s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 1s ease 0.9s forwards;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white; padding: 16px 40px;
    font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem;
    font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase;
    border: none; cursor: pointer; transition: all 0.4s ease;
    position: relative; overflow: hidden; white-space: nowrap;
  }
  .btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(39,174,96,0.35); }
  .btn-primary:hover::before { left: 100%; }
  .btn-outline {
    background: transparent; color: var(--saffron);
    padding: 15px 40px; font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem; font-weight: 300; letter-spacing: 0.25em;
    text-transform: uppercase; border: 1px solid rgba(39,174,96,0.5);
    cursor: pointer; transition: all 0.4s ease; white-space: nowrap;
  }
  .btn-outline:hover { border-color: var(--saffron); background: rgba(39,174,96,0.06); transform: translateY(-2px); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(20,26,20,0.35); font-size: 0.6rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    animation: bounce 2.5s ease infinite;
  }
  .hero-scroll::after {
    content: ''; display: block; width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(39,174,96,0.5), transparent);
  }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

  /* ─── STATS BAND ─── */
  .stats-band {
    background: white; border-top: 3px solid var(--saffron);
    border-bottom: 1px solid rgba(39,174,96,0.12);
    padding: 40px 80px;
    display: grid; grid-template-columns: repeat(4,1fr);
    text-align: center; position: relative;
  }
  .stats-band::before {
    content: '🪷'; position: absolute; top: -1px; left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.4rem; background: white; padding: 0 12px;
  }
  .stat-item { padding: 20px; border-right: 1px solid rgba(39,174,96,0.1); }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem); font-weight: 300;
    color: var(--saffron); line-height: 1; display: block;
  }
  .stat-label {
    font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(20,26,20,0.45); margin-top: 8px; display: block;
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 120px 80px; }
  .section-eyebrow {
    font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--saffron); margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--saffron); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem); font-weight: 300;
    line-height: 1.15; margin-bottom: 24px;
  }
  .section-title em { font-style: italic; color: var(--saffron); }

  /* ─── SHLOKA BANDS ─── */
  .shloka-band {
    background: linear-gradient(135deg, var(--deep) 0%, var(--earth) 50%, var(--deep) 100%);
    padding: 40px 80px; text-align: center; position: relative; overflow: hidden;
    border-top: 2px solid rgba(230,194,41,0.3); border-bottom: 2px solid rgba(230,194,41,0.3);
  }
  .shloka-band::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, rgba(230,194,41,0.03) 0px, rgba(230,194,41,0.03) 1px, transparent 1px, transparent 60px);
  }
  .shloka-om { font-size: 1.8rem; color: var(--saffron); opacity: 0.6; margin-bottom: 10px; display: block; }
  .shloka-text {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 3vw, 1.3rem);
    font-style: italic; color: var(--gold-light); letter-spacing: 0.05em; margin-bottom: 10px;
  }
  .shloka-translation {
    font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(249,251,247,0.35);
  }
  .inline-shloka { text-align: center; margin: 40px 0; }
  .inline-shloka .text {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--deep); font-style: italic; margin-bottom: 8px;
  }
  .inline-shloka .trans { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--saffron); text-transform: uppercase; }

  /* ─── ABOUT ─── */
  .about { background: white; position: relative; }
  .about::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--lotus), var(--saffron), var(--gold), var(--peacock));
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .about-image-wrap { position: relative; }
  .about-img-main {
    width: 100%; height: 520px;
    background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=600&q=80') center/cover;
    position: relative; overflow: hidden;
  }
  .about-img-accent {
    position: absolute; bottom: -30px; right: -30px;
    width: 160px; height: 160px;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--deep);
  }
  .about-img-accent .years { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; line-height: 1; }
  .about-img-accent .years-label { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; margin-top: 4px; text-align: center; padding: 0 8px; }
  .about-text { color: rgba(20,26,20,0.7); font-size: 0.85rem; line-height: 2; margin-bottom: 32px; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
  .about-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 0.75rem; letter-spacing: 0.05em; color: var(--bark); }
  .about-feat-icon {
    width: 28px; height: 28px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-pale), rgba(230,194,41,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; border: 1px solid rgba(230,194,41,0.3);
  }

  /* ─── TREATMENTS ─── */
  .treatments { background: var(--ivory); position: relative; overflow: hidden; }
  .treatments-desc { color: rgba(20,26,20,0.5); font-size: 0.82rem; line-height: 1.9; max-width: 520px; margin-bottom: 70px; }
  .treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .treatment-card { position: relative; overflow: hidden; height: 400px; cursor: pointer; }
  .treatment-card-bg { position: absolute; inset: 0; transition: transform 0.6s ease; }
  .treatment-card:hover .treatment-card-bg { transform: scale(1.08); }
  .tc-1 .treatment-card-bg{
background-image:url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=400&q=70");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.tc-2 .treatment-card-bg{
background-image:url("https://i.ibb.co/84LxrjPJ/8e56baf55203.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.tc-3 .treatment-card-bg{
background-image:url("https://i.ibb.co/S4G1Jdxs/f86e4a6f5ede.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.tc-4 .treatment-card-bg{
background-image:url("https://i.ibb.co/WNTfDfGP/32df64eccb47.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.tc-5 .treatment-card-bg{
background-image:url("https://i.ibb.co/V0C9J5YD/f735f4046f9a.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.tc-6 .treatment-card-bg{
background-image:url("https://i.ibb.co/kkjy1w4/12a3946073d7.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
  .treatment-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,7,2,0.88) 0%, rgba(10,7,2,0.2) 60%, transparent 100%);
  }
  .treatment-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--saffron), var(--gold));
    opacity: 0; transition: opacity 0.3s ease; z-index: 3;
  }
  .treatment-card:hover::after { opacity: 1; }
  .treatment-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 28px; }
  .treatment-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
  .treatment-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--cream); margin-bottom: 6px; }
  .treatment-tagline { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); }
  .treatment-desc-hidden {
    font-size: 0.75rem; line-height: 1.8; color: rgba(249,251,247,0.6);
    margin-top: 12px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  }
  .treatment-card:hover .treatment-desc-hidden { max-height: 100px; }
  .treatment-learn {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold-light); opacity: 0; transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
  }
  .treatment-card:hover .treatment-learn { opacity: 1; transform: translateY(0); }

  /* ─── DOCTORS ─── */
  .doctors { background: white; position: relative; }
  .doctors::before {
    content: ''; position: absolute; top: 0; left: 80px; right: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(39,174,96,0.3), transparent);
  }
  .doctors-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; flex-wrap: wrap; gap: 20px; }
  .doctors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
  .doctor-card { position: relative; overflow: hidden; transition: transform 0.4s ease; }
  .doctor-card:hover { transform: translateY(-8px); }
  .doctor-img { width: 100%; height: 360px; overflow: hidden; position: relative; }
  .doctor-img-inner { width: 100%; height: 100%; transition: transform 0.6s ease; }
  .doctor-card:hover .doctor-img-inner { transform: scale(1.05); }
  .doc-1 .doctor-img-inner{
background-image: url("https://i.ibb.co/nMfVxJ8L/19e777c7b197.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
  .doctor-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--saffron); color: white;
    padding: 6px 14px; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
  }
  .doctor-info { padding: 24px 0 0; border-top: 2px solid rgba(39,174,96,0.2); margin-top: 20px; }
  .doctor-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--deep); }
  .doctor-specialty { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); margin: 6px 0 12px; }
  .doctor-exp { font-size: 0.75rem; color: rgba(20,26,20,0.55); line-height: 1.7; }

  /* ─── AMA QUIZ ─── */
  .ama-quiz-section { background: var(--cream); padding: 100px 80px; border-top: 1px solid rgba(39,174,96,0.1); }
  .ama-inner { max-width: 800px; margin: 0 auto; text-align: center; }
  .ama-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--deep); margin-bottom: 16px; }
  .ama-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(20,26,20,0.6); margin-bottom: 40px; }
  .ama-q-box {
    background: white; padding: 40px;
    border: 1px solid rgba(39,174,96,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 30px; transition: transform 0.15s ease;
  }
  .ama-q-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 3vw, 1.6rem); color: var(--deep); margin-bottom: 30px; }
  .ama-options { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
  .ama-btn {
    padding: 14px 28px; border: 1px solid var(--saffron);
    background: transparent; color: var(--saffron);
    cursor: pointer; font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    transition: all 0.3s; min-width: 120px; touch-action: manipulation;
  }
  .ama-btn:hover, .ama-btn:active { background: var(--saffron); color: white; }
  .ama-result-box { display: none; padding: 40px; background: white; border: 2px solid var(--saffron); }
  .ama-result-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 4vw, 2rem); color: var(--deep); margin-bottom: 15px; }
  .ama-result-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(20,26,20,0.6); margin-bottom: 30px; }
  .dq-label { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }

  /* ─── PROCESS ─── */
  .process { background: var(--ivory); position: relative; overflow: hidden; }
  .process-subtitle { color: rgba(20,26,20,0.5); font-size: 0.82rem; line-height: 1.9; max-width: 500px; margin-bottom: 80px; }
  .process-steps { display: grid; grid-template-columns: repeat(5,1fr); position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(to right, transparent, var(--saffron), var(--gold), transparent);
  }
  .process-step { text-align: center; padding: 0 16px; }
  .step-num {
    width: 88px; height: 88px; margin: 0 auto 28px;
    border: 1.5px solid rgba(39,174,96,0.35); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: white; position: relative; z-index: 1; transition: all 0.4s ease;
    cursor: pointer; box-shadow: 0 4px 20px rgba(39,174,96,0.08);
  }
  .step-num:hover { background: linear-gradient(135deg, var(--saffron), var(--saffron-light)); border-color: var(--saffron); transform: scale(1.1); box-shadow: 0 8px 30px rgba(39,174,96,0.25); }
  .step-num:hover .step-icon { filter: brightness(10); }
  .step-num:hover .step-number { color: rgba(255,255,255,0.8); }
  .step-icon { font-size: 1.5rem; }
  .step-number { font-size: 0.55rem; letter-spacing: 0.2em; color: rgba(39,174,96,0.7); text-transform: uppercase; }
  .step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--deep); margin-bottom: 10px; }
  .step-desc { font-size: 0.7rem; color: rgba(20,26,20,0.5); line-height: 1.8; }

  /* ─── GALLERY ─── */
  .gallery { background: var(--ivory); padding: 80px; }
  .gallery-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 2.5rem); font-weight: 300; color: var(--deep); text-align: center; margin-bottom: 12px; }
  .gallery-subtitle-small { text-align: center; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--saffron); margin-bottom: 50px; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
  .gallery-item { overflow: hidden; position: relative; cursor: pointer; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; height: 400px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3) { height: 197px; }
  .gallery-item:nth-child(4), .gallery-item:nth-child(5), .gallery-item:nth-child(6) { height: 197px; }
  .gallery-img { width: 100%; height: 100%; transition: transform 0.6s ease; }
  .gallery-item:hover .gallery-img { transform: scale(1.08); }
  .gi-1 .gallery-img{
background-image:url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=500&q=80");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.gi-2 .gallery-img{
background-image:url("https://images.unsplash.com/photo-1591343395082-e120087004b4?w=400&q=80");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.gi-3 .gallery-img{
background-image:url("https://i.ibb.co/V0wWzHND/95b093ce403f.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.gi-4 .gallery-img{
background-image:url("https://images.unsplash.com/photo-1552693673-1bf958298935?w=400&q=80");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.gi-5 .gallery-img{
background-image:url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=400&q=80");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.gi-6 .gallery-img{
background-image:url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=400&q=80");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,7,2,0); transition: background 0.4s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .gallery-item:hover .gallery-overlay { background: rgba(10,7,2,0.4); }
  .gallery-overlay-icon { font-size: 1.5rem; opacity: 0; transform: scale(0.5); transition: all 0.3s ease; color: var(--gold-light); }
  .gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: white; overflow: hidden; padding: 80px 0 100px; }
  .testimonials-header { text-align: center; margin-bottom: 60px; padding: 0 40px; }
  .testimonials-header .section-eyebrow { justify-content: center; }
  .testimonials-header .section-eyebrow::before { display: none; }
  .testimonials-track-wrap { overflow: hidden; position: relative; }
  .testimonials-track-wrap::before, .testimonials-track-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  }
  .testimonials-track-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
  .testimonials-track-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }
  .testimonials-track { display: flex; gap: 30px; animation: scroll-left 30s linear infinite; width: max-content; }
  .testimonials-track:hover { animation-play-state: paused; }
  @keyframes scroll-left { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .testimonial-card {
    width: 340px; flex-shrink: 0;
    background: var(--ivory); border: 1px solid rgba(39,174,96,0.12);
    border-top: 3px solid var(--saffron); padding: 36px;
  }
  .t-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 16px; }
  .t-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--bark); line-height: 1.7; margin-bottom: 24px; }
  .t-author { display: flex; align-items: center; gap: 14px; }
  .t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: white;
    flex-shrink: 0;
  }
  .t-name { font-size: 0.72rem; font-weight: 400; color: var(--deep); letter-spacing: 0.05em; }
  .t-location { font-size: 0.62rem; color: rgba(20,26,20,0.4); margin-top: 3px; }

  /* ─── DOSHA TEST ─── */
  .dosha-test { background: var(--earth); padding: 120px 80px; position: relative; overflow: hidden; }
  .dosha-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(201,168,76,0.06) 0%, transparent 55%),
                radial-gradient(ellipse at 90% 30%, rgba(90,107,58,0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .dosha-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
  .dosha-intro { font-size: 0.82rem; line-height: 1.9; color: rgba(250,245,232,0.45); text-align: center; max-width: 580px; margin: 0 auto 50px; }
  .dosha-progress-wrap { display: flex; align-items: center; gap: 20px; margin-bottom: 48px; }
  .dosha-progress-bar { flex: 1; height: 2px; background: rgba(201,168,76,0.12); border-radius: 2px; overflow: hidden; }
  .dosha-progress-fill { height: 100%; width: 10%; background: linear-gradient(to right, var(--gold), var(--gold-light)); border-radius: 2px; transition: width 0.5s ease; }
  .dosha-progress-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
  .dosha-question { display: none; animation: fadeUp 0.4s ease forwards; }
  .dosha-question.active { display: block; }
  .dq-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 300; color: var(--cream); margin-bottom: 36px; line-height: 1.3; }
  .dq-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 36px; }
  .dq-option {
    border: 1px solid rgba(201,168,76,0.12); padding: 24px 18px;
    cursor: pointer; transition: all 0.3s ease;
    display: flex; flex-direction: column; gap: 8px;
    background: rgba(250,245,232,0.02); position: relative; overflow: hidden;
    touch-action: manipulation;
  }
  .dq-option::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent); opacity: 0; transition: opacity 0.3s; }
  .dq-option:hover, .dq-option:active { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
  .dq-option:hover::before { opacity: 1; }
  .dq-option.selected { border-color: var(--gold) !important; background: rgba(201,168,76,0.1) !important; transform: translateY(-3px); }
  .dq-option.selected::after { content: '✓'; position: absolute; top: 10px; right: 12px; font-size: 0.75rem; color: var(--gold); }
  .dq-option[data-value="vata"].selected { border-color: #a0c0e0 !important; background: rgba(160,192,224,0.08) !important; }
  .dq-option[data-value="pitta"].selected { border-color: #e08060 !important; background: rgba(224,128,96,0.08) !important; }
  .dq-option[data-value="kapha"].selected { border-color: #80b080 !important; background: rgba(128,176,128,0.08) !important; }
  .dq-opt-icon { font-size: 1.5rem; }
  .dq-opt-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--cream); font-weight: 400; }
  .dq-opt-sub { font-size: 0.65rem; color: rgba(250,245,232,0.4); line-height: 1.5; }
  .dosha-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
  .dosha-btn-back {
    background: transparent; border: 1px solid rgba(201,168,76,0.2);
    color: rgba(250,245,232,0.5); padding: 14px 28px;
    font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
    transition: all 0.3s; touch-action: manipulation;
  }
  .dosha-btn-back:hover { border-color: rgba(201,168,76,0.5); color: var(--cream); }
  .dosha-btn-next {
    background: linear-gradient(135deg, var(--gold), var(--copper)); border: none;
    color: var(--deep); padding: 14px 36px;
    font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem;
    letter-spacing: 0.25em; text-transform: uppercase; cursor: pointer;
    transition: all 0.3s; opacity: 0.4; touch-action: manipulation;
  }
  .dosha-btn-next:not(:disabled) { opacity: 1; }
  .dosha-btn-next:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
  .dosha-btn-next:disabled { cursor: not-allowed; }
  .dosha-result-panel { display: none; text-align: center; animation: fadeUp 0.6s ease forwards; padding: 20px 0; }
  .dosha-result-panel.show { display: block; }
  .drp-mandala { width: 100px; height: 100px; margin: 0 auto 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
  .drp-dosha-badge { display: inline-block; font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; padding: 8px 24px; border: 1px solid; margin-bottom: 20px; }
  .drp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; color: var(--cream); margin-bottom: 18px; }
  .drp-desc { font-size: 0.85rem; line-height: 1.9; color: rgba(250,245,232,0.55); max-width: 600px; margin: 0 auto 36px; }
  .drp-traits { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
  .drp-trait { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 7px 18px; border: 1px solid rgba(201,168,76,0.2); color: rgba(250,245,232,0.55); }
  .drp-scores { display: flex; justify-content: center; gap: 32px; margin-bottom: 44px; flex-wrap: wrap; }
  .drp-score-item { text-align: center; }
  .drp-score-bar-wrap { width: 80px; height: 6px; background: rgba(250,245,232,0.08); border-radius: 3px; overflow: hidden; margin: 8px auto; }
  .drp-score-bar { height: 100%; border-radius: 3px; transition: width 1s ease 0.3s; }
  .bar-vata { background: linear-gradient(to right, #8ab4d4, #a0c4e8); }
  .bar-pitta { background: linear-gradient(to right, #d48060, #e8a080); }
  .bar-kapha { background: linear-gradient(to right, #60a060, #80c080); }
  .drp-score-name { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(250,245,232,0.4); }
  .drp-score-pct { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--gold-light); }
  .drp-cta-text { font-size: 0.78rem; line-height: 1.8; color: rgba(250,245,232,0.4); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .dosha-retake { display: block; margin: 20px auto 0; background: none; border: none; color: rgba(250,245,232,0.3); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: color 0.3s; font-family: 'Josefin Sans', sans-serif; }
  .dosha-retake:hover { color: var(--gold); }

  /* ─── INQUIRY ─── */
  .inquiry { background: white; position: relative; }
  .inquiry::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--peacock), var(--saffron), var(--lotus), var(--gold)); }
  .inquiry-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .inquiry-desc { color: rgba(20,26,20,0.5); font-size: 0.82rem; line-height: 1.9; margin-bottom: 40px; }
  .contact-methods { display: flex; flex-direction: column; gap: 16px; }
  .contact-method {
    display: flex; align-items: center; gap: 20px; padding: 18px 22px;
    border: 1px solid rgba(39,174,96,0.15); transition: all 0.3s ease;
    cursor: pointer; background: var(--ivory); min-height: 56px;
    touch-action: manipulation;
  }
  .contact-method:hover, .contact-method:active { border-color: rgba(39,174,96,0.45); background: var(--saffron-pale); transform: translateX(4px); }
  .cm-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .cm-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--saffron); margin-bottom: 4px; }
  .cm-value { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--deep); }
  .inquiry-form { background: var(--ivory); border: 1px solid rgba(39,174,96,0.15); border-top: 3px solid var(--saffron); padding: 50px; }
  .form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep); margin-bottom: 8px; }
  .form-subtitle { font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(20,26,20,0.4); margin-bottom: 36px; }
  .form-group { margin-bottom: 22px; }
  .form-group label { display: block; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--saffron); margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; background: white; border: 1px solid rgba(39,174,96,0.2);
    color: var(--deep); padding: 14px 18px;
    font-family: 'Josefin Sans', sans-serif; font-size: 0.8rem;
    font-weight: 200; letter-spacing: 0.05em; outline: none;
    transition: border-color 0.3s ease; appearance: none;
    border-radius: 0; /* Prevents iOS rounding */
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--saffron); background: var(--saffron-pale); }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-submit {
    width: 100%; background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    color: white; border: none; cursor: pointer; padding: 18px;
    font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem;
    font-weight: 400; letter-spacing: 0.35em; text-transform: uppercase;
    transition: all 0.4s ease; touch-action: manipulation; min-height: 56px;
  }
  .form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(39,174,96,0.3); }
  .form-success-msg { display: none; text-align: center; color: var(--saffron); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; padding: 20px 0; line-height: 1.6; }

  /* ─── FOOTER ─── */
  footer { background: var(--deep); border-top: 1px solid rgba(230,194,41,0.1); padding: 80px 80px 40px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold-light); margin-bottom: 16px; }
  .footer-brand-desc { font-size: 0.75rem; line-height: 1.9; color: rgba(249,251,247,0.35); margin-bottom: 28px; max-width: 300px; }
  .footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
  .social-btn { width: 44px; height: 44px; border: 1px solid rgba(230,194,41,0.2); display: flex; align-items: center; justify-content: center; color: rgba(249,251,247,0.4); font-size: 0.8rem; cursor: pointer; transition: all 0.3s; text-decoration: none; }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(230,194,41,0.08); }
  .footer-col-title { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 12px; }
  .footer-links a { font-size: 0.78rem; color: rgba(249,251,247,0.4); text-decoration: none; transition: color 0.3s; letter-spacing: 0.05em; }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(230,194,41,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 0.65rem; color: rgba(249,251,247,0.2); letter-spacing: 0.1em; }

  /* ─── FLOATING ACTIONS ─── */
  .floating-actions { position: fixed; bottom: 32px; right: 24px; display: flex; flex-direction: column; gap: 14px; z-index: 500; }
  .float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; cursor: pointer; transition: all 0.3s ease; text-decoration: none; touch-action: manipulation; }
  .float-btn:hover { transform: scale(1.1); }
  .float-wa { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 8px 30px rgba(37,211,102,0.4); animation: pulse-wa 3s ease infinite; }
  .float-call { background: linear-gradient(135deg, var(--saffron), var(--terracotta)); box-shadow: 0 8px 30px rgba(39,174,96,0.4); animation: pulse-call 3s ease infinite; animation-delay: 1.5s; }
  @keyframes pulse-wa { 0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 50px rgba(37,211,102,0.65)} }
  @keyframes pulse-call { 0%,100%{box-shadow:0 8px 30px rgba(39,174,96,0.4)} 50%{box-shadow:0 8px 50px rgba(39,174,96,0.65)} }

  /* ─── MODAL ─── */
  .modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(253,254,252,0.9); backdrop-filter: blur(10px); align-items: center; justify-content: center; padding: 20px; }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: white; border: 1px solid rgba(39,174,96,0.2); border-top: 4px solid var(--saffron);
    padding: 50px 40px; max-width: 540px; width: 100%; position: relative;
    animation: modalIn 0.4s ease; box-shadow: 0 30px 80px rgba(20,26,20,0.15);
    max-height: 90vh; overflow-y: auto;
  }
  @keyframes modalIn { from{opacity:0;transform:scale(0.9) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
  .modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: rgba(20,26,20,0.35); font-size: 1.5rem; cursor: pointer; transition: color 0.3s; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
  .modal-close:hover { color: var(--saffron); }
  .modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--deep); margin-bottom: 8px; }
  .modal-subtitle { font-size: 0.68rem; letter-spacing: 0.15em; color: var(--saffron); margin-bottom: 32px; text-transform: uppercase; }

  /* ─── REVEAL ANIMATION ─── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── LOADER ─── */
  .loader { position: fixed; inset: 0; z-index: 9000; background: var(--ivory); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transition: opacity 0.8s ease 0.3s, visibility 0.8s ease 0.3s; padding: 20px; text-align: center; }
  .loader.hide { opacity: 0; visibility: hidden; }
  .loader-logo { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 5vw, 2.5rem); font-weight: 300; color: var(--saffron); letter-spacing: 0.1em; animation: glow-light 1.5s ease infinite alternate; }
  @keyframes glow-light { from { text-shadow: 0 0 20px rgba(39,174,96,0.2); } to { text-shadow: 0 0 40px rgba(39,174,96,0.5); } }
  .loader-bar { width: 180px; height: 1px; background: rgba(39,174,96,0.2); overflow: hidden; }
  .loader-progress { height: 100%; background: var(--saffron); animation: load 1.5s ease forwards; }
  @keyframes load { from{width:0} to{width:100%} }
  .loader-text { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(39,174,96,0.5); }
  .loader-om { font-size: 2.5rem; color: var(--saffron); opacity: 0.3; animation: spin 8s linear infinite; }

  /* ═══════════════════════════════
     TABLET — max-width: 1024px
     ═══════════════════════════════ */
  @media (max-width: 1024px) {
    section { padding: 80px 40px; }
    .ama-quiz-section { padding: 80px 40px; }
    .dosha-test { padding: 80px 40px; }
    .gallery { padding: 60px 40px; }
    nav { padding: 20px 40px; }
    nav.scrolled { padding: 14px 40px; }
    .hero-content { padding: 0 40px; }
    .stats-band { padding: 40px; grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-accent { right: 0; }
    .dq-options { grid-template-columns: 1fr; }
    .drp-scores { gap: 20px; }
    .doctors-grid { grid-template-columns: repeat(2,1fr); }
    .process-steps { grid-template-columns: repeat(3,1fr); gap: 30px; }
    .process-steps::before { display: none; }
    .inquiry-wrap { grid-template-columns: 1fr; gap: 50px; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .treatments-grid { grid-template-columns: repeat(2,1fr); }
    .treatment-card { height: 360px; }
  }

  /* ═══════════════════════════════
     MOBILE — max-width: 768px
     ═══════════════════════════════ */
  @media (max-width: 768px) {
    section { padding: 70px 20px; }
    .ama-quiz-section { padding: 70px 20px; }
    .dosha-test { padding: 70px 20px; }
    .gallery { padding: 60px 20px; }
    footer { padding: 60px 20px 40px; }
    .shloka-band { padding: 30px 20px; }

    /* Nav */
    nav { padding: 16px 20px; }
    nav.scrolled { padding: 12px 20px; }
    .nav-logo { font-size: 1.1rem; max-width: 200px; }
    .hamburger { display: flex; }
    .nav-links { display: none; }

    /* Hero */
    .hero { min-height: 100svh; align-items: flex-end; padding-bottom: 80px; }
    .hero-content { padding: 0 20px; }
    .hero-eyebrow { font-size: 0.55rem; margin-bottom: 18px; }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); margin-bottom: 18px; }
    .hero-subtitle { font-size: 0.78rem; margin-bottom: 36px; letter-spacing: 0.06em; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; padding: 18px 24px; font-size: 0.75rem; }
    .hero-mandala { width: 80vw; height: 80vw; opacity: 0.08; top: 10%; right: -20%; transform: none; }
    .hero-right-deco { display: none; }
    .hero-scroll { display: none; }

    /* Stats */
    .stats-band { grid-template-columns: repeat(2,1fr); padding: 24px 16px; gap: 0; }
    .stat-item { padding: 16px 10px; border-right: 1px solid rgba(39,174,96,0.1); border-bottom: 1px solid rgba(39,174,96,0.1); }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-main { height: 300px; }
    .about-img-accent { width: 130px; height: 130px; right: 0; bottom: -20px; }
    .about-img-accent .years { font-size: 2.5rem; }
    .about-features { grid-template-columns: 1fr; gap: 14px; }

    /* Treatments */
    .treatments-grid { grid-template-columns: 1fr; gap: 3px; }
    .treatment-card { height: 280px; }
    .treatment-desc-hidden { display: none; }

    /* Doctors */
    .doctors-grid { grid-template-columns: 1fr; gap: 32px; }
    .doctors-header { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
    .doctor-img { height: 280px; }
    .doctors::before { left: 20px; right: 20px; }

    /* AMA Quiz */
    .ama-q-box { padding: 24px 20px; }
    .ama-options { flex-direction: column; gap: 12px; align-items: stretch; }
    .ama-btn { width: 100%; padding: 16px 20px; text-align: center; font-size: 0.75rem; }
    .ama-result-box { padding: 24px 20px; }

    /* Process */
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .process-steps::before { display: none; }
    .process-step:last-child { grid-column: span 2; }
    .step-num { width: 70px; height: 70px; }

    /* Dosha */
    .dq-options { grid-template-columns: 1fr; gap: 12px; }
    .dq-option { padding: 18px 16px; flex-direction: row; align-items: center; gap: 16px; }
    .dq-opt-icon { font-size: 1.3rem; flex-shrink: 0; }
    .dq-opt-title { font-size: 0.95rem; }
    .dq-opt-sub { font-size: 0.62rem; }
    .dosha-btn-next, .dosha-btn-back { flex: 1; text-align: center; }

    /* Inquiry / Form */
    .inquiry-wrap { grid-template-columns: 1fr; gap: 40px; }
    .inquiry-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
    .gallery-item:nth-child(1) { grid-column: span 2; height: 240px !important; }
    .gallery-item { height: 160px !important; }

    /* Testimonials */
    .testimonials { padding: 60px 0 80px; }
    .testimonials-header { padding: 0 20px; }
    .testimonial-card { width: 290px; padding: 28px 22px; }
    .testimonials-track-wrap::before, .testimonials-track-wrap::after { width: 40px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

    /* Floating actions */
    .floating-actions { bottom: 20px; right: 16px; gap: 12px; }
    .float-btn { width: 52px; height: 52px; font-size: 1.3rem; }

    /* Modal */
    .modal-overlay { padding: 12px; align-items: flex-end; }
    .modal-box { padding: 36px 24px 28px; max-height: 80vh; border-radius: 0; }
    .modal-title { font-size: 1.5rem; }
  }

  /* ═══════════════════════════════
     SMALL MOBILE — max-width: 380px
     ═══════════════════════════════ */
  @media (max-width: 380px) {
    .hero-title { font-size: 2rem; }
    .stat-number { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .treatments-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .process-step:last-child { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }
    .gallery-item { height: 220px !important; }
    .dosha-btn-next { letter-spacing: 0.1em; padding: 14px 20px; font-size: 0.65rem; }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  .image-strip {
  width: 100%;
  overflow: hidden;
  background: var(--ivory);
  padding: 20px 0;
  border-top: 1px solid rgba(39,174,96,0.1);
  border-bottom: 1px solid rgba(39,174,96,0.1);
}

.image-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollImages 25s linear infinite;
}

.image-track img {
  height: 160px;
  width: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

.image-track img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* animation */
@keyframes scrollImages {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* pause on hover */
.image-strip:hover .image-track {
  animation-play-state: paused;
}