:root {
  --navy: #060e1e;
  --deep: #0d1b35;
  --teal: #00c9b1;
  --teal2: #00a896;
  --gold: #c9a84c;
  --gold2: #e8c96d;
  --light: #f0f7ff;
  --white: #ffffff;
  --grey: #8fa3bf;
  --card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Outfit',sans-serif;
  background:var(--navy);
  color:var(--white);
  overflow-x:hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--navy)}
::-webkit-scrollbar-thumb{background:var(--teal);border-radius:3px}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:1.2rem 5%;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(6,14,30,0.85);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  transition:all .3s;
}
.nav-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem;font-weight:700;
  color:var(--white);
  text-decoration:none;
  display:flex;align-items:center;gap:10px;
}
.nav-logo span{
  font-size:.75rem;font-weight:400;letter-spacing:2px;
  color:var(--teal);font-family:'Outfit',sans-serif;
  text-transform:uppercase;
  display:block;margin-top:-4px;
}
.logo-icon{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;font-weight:700;color:var(--navy);
  font-family:'Cormorant Garamond',serif;flex-shrink:0;
}
.nav-links{
  display:flex;align-items:center;gap:2.5rem;
  list-style:none;
}
.nav-links a{
  text-decoration:none;color:rgba(255,255,255,.7);
  font-size:.9rem;letter-spacing:.5px;
  font-weight:400;transition:color .3s;
}
.nav-links a:hover{color:var(--teal)}
.nav-cta{
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  color:var(--navy)!important;
  padding:.65rem 1.6rem;border-radius:50px;
  font-weight:600!important;
  transition:all .3s!important;
  box-shadow:0 4px 20px rgba(0,201,177,.3);
}
.nav-links a.active{color:var(--teal)}
.social-btn svg{width:18px;height:18px;fill:currentColor}

/* ── HERO ── */
#hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:8rem 5% 5rem;
  position:relative;
  overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,201,177,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,.08) 0%, transparent 60%),
    linear-gradient(135deg, #060e1e 0%, #0d1b35 50%, #060e1e 100%);
}
.hero-grid-lines{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(0,201,177,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,177,.04) 1px, transparent 1px);
  background-size:60px 60px;
}
.hero-orb{
  position:absolute;
  border-radius:50%;filter:blur(80px);
  animation:float 8s ease-in-out infinite;
}
.orb1{width:400px;height:400px;background:rgba(0,201,177,.08);top:-100px;right:5%;animation-delay:0s}
.orb2{width:300px;height:300px;background:rgba(201,168,76,.06);bottom:10%;left:10%;animation-delay:-3s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-30px)}}

.hero-left{
  position:relative;z-index:2;
  animation:fadeSlideUp .9s ease both;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,201,177,.1);
  border:1px solid rgba(0,201,177,.25);
  border-radius:50px;
  padding:.4rem 1.1rem;
  font-size:.8rem;letter-spacing:1.5px;text-transform:uppercase;
  color:var(--teal);margin-bottom:1.8rem;
}
.badge-dot{width:6px;height:6px;border-radius:50%;background:var(--teal);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
.hero-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5vw,4.5rem);
  font-weight:300;line-height:1.1;
  color:var(--white);
  margin-bottom:.5rem;
}
.hero-title strong{font-weight:700;color:var(--teal)}
.hero-title em{font-style:italic;color:var(--gold2)}
.hero-subtitle{
  font-size:1.05rem;color:var(--grey);
  line-height:1.8;max-width:480px;
  margin:1.5rem 0 2.5rem;
}
.hero-stats{
  display:flex;gap:2.5rem;margin-bottom:3rem;
}
.stat{border-left:2px solid var(--teal);padding-left:1rem}
.stat-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.2rem;font-weight:700;
  color:var(--teal);line-height:1;
}
.stat-label{font-size:.8rem;color:var(--grey);letter-spacing:.5px;margin-top:.2rem}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  color:var(--navy);padding:.9rem 2.2rem;
  border-radius:50px;text-decoration:none;
  font-weight:600;font-size:.95rem;
  transition:all .3s;
  box-shadow:0 6px 30px rgba(0,201,177,.35);
  border:none;cursor:pointer;
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 40px rgba(0,201,177,.45)}
.btn-outline{
  border:1px solid rgba(255,255,255,.2);
  color:var(--white);padding:.9rem 2.2rem;
  border-radius:50px;text-decoration:none;
  font-weight:400;font-size:.95rem;
  transition:all .3s;background:transparent;cursor:pointer;
}
.btn-outline:hover{border-color:var(--teal);color:var(--teal);transform:translateY(-3px)}

.hero-right{
  position:relative;z-index:2;
  display:flex;justify-content:center;align-items:center;
  animation:fadeSlideUp .9s .2s ease both;
}
.doctor-frame{
  position:relative;
  width:420px;height:520px;
}
.doc-img{
  width:100%;height:100%;
  object-fit:cover;
  border-radius:30px;
  display:block;
}
.doc-frame-border{
  position:absolute;inset:-12px;
  border-radius:40px;
  border:1px solid rgba(0,201,177,.2);
  pointer-events:none;
}
.doc-frame-corner{
  position:absolute;
  width:40px;height:40px;
  border-color:var(--teal);border-style:solid;
}
.doc-frame-corner.tl{top:-2px;left:-2px;border-width:2px 0 0 2px;border-radius:12px 0 0 0}
.doc-frame-corner.tr{top:-2px;right:-2px;border-width:2px 2px 0 0;border-radius:0 12px 0 0}
.doc-frame-corner.bl{bottom:-2px;left:-2px;border-width:0 0 2px 2px;border-radius:0 0 0 12px}
.doc-frame-corner.br{bottom:-2px;right:-2px;border-width:0 2px 2px 0;border-radius:0 0 12px 0}
.doc-card{
  position:absolute;
  background:rgba(13,27,53,.9);
  backdrop-filter:blur(20px);
  border:1px solid var(--border);
  border-radius:16px;
  padding:1rem 1.4rem;
}
.doc-card.rating{
  bottom:-20px;left:-30px;
  display:flex;align-items:center;gap:10px;
}
.stars{color:var(--gold);font-size:1rem;letter-spacing:2px}
.rating-text{font-size:.8rem;color:var(--grey)}
.rating-text strong{color:var(--white);font-size:1rem}
.doc-card.experience{
  top:-20px;right:-30px;
  text-align:center;
}
.exp-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:700;color:var(--teal);
}
.exp-label{font-size:.75rem;color:var(--grey)}

/* ── SECTIONS ── */
section{padding:6rem 5%}
.section-label{
  font-size:.8rem;letter-spacing:3px;text-transform:uppercase;
  color:var(--teal);margin-bottom:1rem;
  display:flex;align-items:center;gap:10px;
}
.section-label::before{content:'';flex:none;width:30px;height:1px;background:var(--teal)}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:300;line-height:1.2;
  margin-bottom:1.2rem;
}
.section-title strong{font-weight:700}
.section-desc{
  color:var(--grey);line-height:1.8;
  max-width:560px;font-size:.95rem;
}
.text-teal{color:var(--teal)}
.text-gold{color:var(--gold2)}

/* ── ABOUT ── */
#about{
  background:linear-gradient(135deg,rgba(0,201,177,.04) 0%,transparent 50%);
}
.about-grid{
  display:grid;grid-template-columns:1fr 1.2fr;
  gap:5rem;align-items:center;
}
.about-visual{position:relative}
.about-img-wrap{
  border-radius:24px;overflow:hidden;
  height:500px;position:relative;
}
.about-img-wrap img{width:100%;height:100%;object-fit:cover}
.about-img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(0,201,177,.2),rgba(201,168,76,.1));
  mix-blend-mode:color;
}
.about-accent{
  position:absolute;bottom:-25px;right:-25px;
  width:150px;height:150px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  color:var(--navy);
}
.accent-num{
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;font-weight:700;line-height:1;
}
.accent-label{font-size:.75rem;font-weight:600;letter-spacing:1px}
.about-creds{
  margin-top:2.5rem;
  display:flex;flex-direction:column;gap:.8rem;
}
.cred-item{
  display:flex;align-items:center;gap:12px;
  padding:.9rem 1.2rem;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  transition:all .3s;
}
.cred-item:hover{border-color:rgba(0,201,177,.3);transform:translateX(6px)}
.cred-icon{
  width:36px;height:36px;border-radius:10px;
  background:rgba(0,201,177,.1);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-size:1.1rem;
}
.cred-text{font-size:.9rem;color:var(--grey);line-height:1.4}
.cred-text strong{color:var(--white);display:block;font-size:.95rem}

/* ── SERVICES ── */
#services{background:var(--deep)}
.services-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;margin-top:3.5rem;
}
.service-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;
  padding:2rem;
  transition:all .4s;
  position:relative;overflow:hidden;
  cursor:pointer;
}
.service-card::before{
  content:'';position:absolute;
  top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--teal),var(--gold));
  transform:scaleX(0);transform-origin:left;
  transition:transform .4s;
}
.service-card:hover{
  border-color:rgba(0,201,177,.3);
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,.3);
}
.service-card:hover::before{transform:scaleX(1)}
.service-num{
  font-family:'Cormorant Garamond',serif;
  font-size:3.5rem;font-weight:700;
  color:rgba(255,255,255,.04);
  line-height:1;margin-bottom:.5rem;
}
.service-icon{
  width:52px;height:52px;border-radius:14px;
  background:linear-gradient(135deg,rgba(0,201,177,.15),rgba(0,201,177,.05));
  border:1px solid rgba(0,201,177,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:1.2rem;
}
.service-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;font-weight:600;
  color:var(--white);margin-bottom:.8rem;
}
.service-desc{font-size:.87rem;color:var(--grey);line-height:1.7}
.service-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--teal);font-size:.85rem;font-weight:500;
  text-decoration:none;margin-top:1.2rem;
  transition:gap .3s;
}
.service-link:hover{gap:10px}

/* ── CONDITIONS ── */
#conditions{
  background:linear-gradient(180deg,var(--navy) 0%,var(--deep) 100%);
}
.conditions-header{
  display:grid;grid-template-columns:1fr 1fr;
  gap:3rem;align-items:end;
  margin-bottom:4rem;
}
.conditions-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.condition-card{
  border-radius:24px;overflow:hidden;
  position:relative;height:320px;
  cursor:pointer;
}
.condition-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.condition-card:hover img{transform:scale(1.05)}
.condition-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(6,14,30,.95) 0%,rgba(6,14,30,.3) 60%,transparent 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.8rem;
}
.condition-tag{
  background:rgba(0,201,177,.15);
  border:1px solid rgba(0,201,177,.3);
  color:var(--teal);border-radius:50px;
  padding:.3rem .9rem;font-size:.75rem;
  width:fit-content;margin-bottom:.8rem;letter-spacing:1px;
}
.condition-name{
  font-family:'Cormorant Garamond',serif;
  font-size:1.6rem;font-weight:700;color:var(--white);
  margin-bottom:.4rem;
}
.condition-sub{font-size:.83rem;color:rgba(255,255,255,.6)}

/* ── REVIEWS ── */
#reviews{background:var(--deep)}
.reviews-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:3.5rem;flex-wrap:wrap;gap:2rem;
}
.rating-badge{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  border-radius:20px;padding:1.5rem 2rem;
  color:var(--navy);text-align:center;
  min-width:160px;
}
.rating-big{
  font-family:'Cormorant Garamond',serif;
  font-size:4rem;font-weight:700;line-height:1;
}
.rating-stars{font-size:1.3rem;margin:.3rem 0}
.rating-count{font-size:.8rem;font-weight:600;opacity:.8}
.reviews-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.review-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:20px;padding:1.8rem;
  transition:all .3s;position:relative;
}
.review-card:hover{border-color:rgba(201,168,76,.3);transform:translateY(-4px)}
.review-quote{
  font-size:3rem;line-height:.5;color:var(--teal);
  margin-bottom:.8rem;font-family:'Cormorant Garamond',serif;
}
.review-text{
  font-size:.9rem;color:rgba(255,255,255,.75);
  line-height:1.7;margin-bottom:1.2rem;font-style:italic;
}
.review-author{
  display:flex;align-items:center;gap:10px;
}
.author-avatar{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--navy);font-size:.9rem;
  flex-shrink:0;
}
.author-name{font-size:.9rem;font-weight:600;color:var(--white)}
.author-stars{font-size:.8rem;color:var(--gold)}

/* ── CERTIFICATES ── */
#certificates{
  background:linear-gradient(135deg,var(--navy) 0%,var(--deep) 100%);
}
.certs-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:2rem;margin-top:3.5rem;
}
.cert-card{
  border-radius:20px;overflow:hidden;
  background:var(--card);
  border:1px solid var(--border);
  transition:all .4s;
  cursor:pointer;
  position:relative;
}
.cert-card:hover{
  border-color:rgba(201,168,76,.4);
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(201,168,76,.1);
}
.cert-img-wrap{
  height:420px;
  overflow:hidden;
  position:relative;
  background:#fff;
}

.cert-img-wrap img{
  width:100%;
  height:100%;
  object-fit:contain;
  transition:transform .5s;
}
.cert-card:hover .cert-img-wrap img{transform:scale(1.03)}
.cert-shine{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.08) 0%,transparent 50%,rgba(0,0,0,.2) 100%);
  pointer-events:none;
}
.cert-body{padding:1.4rem}
.cert-issuer{
  font-size:.75rem;letter-spacing:1.5px;text-transform:uppercase;
  color:var(--gold);margin-bottom:.4rem;
}
.cert-title{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;font-weight:600;color:var(--white);
  line-height:1.3;margin-bottom:.4rem;
}
.cert-date{font-size:.82rem;color:var(--grey)}
.cert-badge{
  position:absolute;top:1rem;right:1rem;
  background:rgba(6,14,30,.85);
  backdrop-filter:blur(10px);
  border:1px solid rgba(201,168,76,.3);
  border-radius:50px;
  padding:.3rem .8rem;
  font-size:.72rem;color:var(--gold);
  letter-spacing:.5px;
}

/* ── CONTACT ── */
#contact{
  background:var(--deep);
}
.contact-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:5rem;align-items:center;
}
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-item{
  display:flex;align-items:flex-start;gap:1.2rem;
  padding:1.4rem;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  transition:all .3s;
}
.contact-item:hover{border-color:rgba(0,201,177,.3);transform:translateX(6px)}
.contact-item-icon{
  width:48px;height:48px;border-radius:14px;
  background:linear-gradient(135deg,rgba(0,201,177,.15),rgba(0,201,177,.05));
  border:1px solid rgba(0,201,177,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;flex-shrink:0;
}
.contact-item-title{font-size:.8rem;color:var(--grey);letter-spacing:1px;text-transform:uppercase}
.contact-item-val{
  font-size:1rem;color:var(--white);
  font-weight:500;margin-top:.2rem;
  text-decoration:none;
}
.contact-item-val:hover{color:var(--teal)}
.social-row{display:flex;gap:1rem;margin-top:.5rem}
.social-btn{
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;color:var(--grey);
  font-size:1.1rem;transition:all .3s;
}
.social-btn:hover{border-color:var(--teal);color:var(--teal);transform:translateY(-3px)}
.appt-form{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;padding:2.5rem;
}
.appt-form h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;font-weight:600;
  color:var(--white);margin-bottom:.5rem;
}
.appt-form p{font-size:.87rem;color:var(--grey);margin-bottom:2rem}
.form-group{margin-bottom:1.2rem}
.form-group label{
  display:block;font-size:.82rem;color:var(--grey);
  letter-spacing:.5px;margin-bottom:.5rem;
}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:12px;
  padding:.85rem 1.1rem;
  color:var(--white);font-family:'Outfit',sans-serif;
  font-size:.9rem;
  transition:border-color .3s;outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:rgba(0,201,177,.4);
}
.form-group select option{background:var(--deep);color:var(--white)}
.form-group textarea{resize:none;height:100px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* ── FOOTER ── */
footer{
  background:var(--navy);
  border-top:1px solid var(--border);
  padding:3rem 5% 2rem;
}
.footer-top{
  display:grid;grid-template-columns:1.5fr 1fr 1fr;
  gap:3rem;margin-bottom:2.5rem;
}
.footer-brand .footer-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:1.4rem;font-weight:700;color:var(--white);
  margin-bottom:.6rem;
}
.footer-brand .footer-logo span{color:var(--teal)}
.footer-brand p{font-size:.85rem;color:var(--grey);line-height:1.7;max-width:260px}
.footer-col h4{
  font-size:.78rem;letter-spacing:2px;text-transform:uppercase;
  color:var(--teal);margin-bottom:1rem;
}
.footer-col a{
  display:block;font-size:.85rem;color:var(--grey);
  text-decoration:none;margin-bottom:.6rem;transition:color .3s;
}
.footer-col a:hover{color:var(--white)}
.footer-col address{font-style:normal;font-size:.85rem;color:var(--grey);line-height:1.8}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  border-top:1px solid var(--border);padding-top:1.5rem;
  flex-wrap:wrap;gap:1rem;
}
.footer-copy{font-size:.82rem;color:var(--grey)}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:.82rem;color:var(--grey);text-decoration:none;transition:color .3s}
.footer-links a:hover{color:var(--teal)}
@media(max-width:900px){
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.reveal{
  opacity:0;transform:translateY(40px);
  transition:all .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible{opacity:1;transform:translateY(0)}

/* ── MOBILE HAMBURGER ── */
.hamburger{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;padding:4px;background:none;border:none;
  z-index:1100;position:relative;
}
.hamburger span{
  width:24px;height:2px;background:var(--white);border-radius:2px;
  display:block;transition:all .3s;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* Mobile nav overlay */
.mobile-overlay{
  display:none;position:fixed;inset:0;
  background:rgba(6,14,30,.6);z-index:998;
  backdrop-filter:blur(4px);
}
.mobile-overlay.show{display:block}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  #hero{grid-template-columns:1fr;text-align:center;padding-top:7rem}
  .hero-right{margin-top:3rem}
  .doctor-frame{width:300px;height:380px}
  .doc-card.experience{top:-15px;right:-15px}
  .doc-card.rating{bottom:-15px;left:-15px}
  .hero-stats{justify-content:center}
  .hero-actions{justify-content:center}
  .hero-subtitle{margin-left:auto;margin-right:auto}
  .about-grid,.contact-grid{grid-template-columns:1fr}
  .conditions-header{grid-template-columns:1fr}
  .conditions-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .certs-grid{grid-template-columns:1fr}
  /* Mobile nav as slide-in panel */
  .nav-links{
    display:flex!important;
    flex-direction:column;gap:0;list-style:none;
    position:fixed;top:0;right:-280px;bottom:0;
    width:260px;
    background:rgba(13,27,53,.98);
    backdrop-filter:blur(20px);
    border-left:1px solid var(--border);
    padding:5rem 2rem 2rem;
    z-index:999;
    transition:right .35s cubic-bezier(.16,1,.3,1);
    align-items:flex-start;
  }
  .nav-links.mobile-open{right:0}
  .nav-links li{width:100%}
  .nav-links a{
    display:block;padding:.9rem 0;
    border-bottom:1px solid var(--border);
    font-size:1rem;
  }
  .nav-links .nav-cta{
    margin-top:1.5rem;
    border-radius:50px;
    text-align:center;
    padding:.75rem 1.5rem;
    border-bottom:none;
  }
  .hamburger{display:flex}
  .conditions-header{flex-direction:column}
  .about-accent{display:none}
}

/* ── FULL SITE REFINEMENTS ── */
body{font-family:"Segoe UI",Arial,sans-serif}
.nav-logo,.hero-title,.section-title,.service-title,.condition-name,.cert-title,.appt-form h3,.footer-brand .footer-logo{font-family:Georgia,"Times New Roman",serif}
section{scroll-margin-top:88px}
.hero-orb{display:none}
.nav-links{gap:1.35rem}
.nav-links a{white-space:nowrap}
.service-card,.review-card,.cert-card,.appt-form,.contact-item,.catalog-shell,.map-card,.contact-info-card,.qualification-card,.gallery-card,.gallery-feature{border-radius:8px}
.service-card{min-height:260px}
.service-link{cursor:pointer}

.catalog-heading,.gallery-heading,.contact-intro{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:2rem;flex-wrap:wrap;margin-bottom:2.5rem;
}
#medicine-catalog{
  background:linear-gradient(180deg,var(--deep) 0%,#091426 100%);
}
.catalog-shell{
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  padding:1.5rem;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}
.catalog-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1rem;margin-bottom:1.2rem;
}
.catalog-stats div{
  border:1px solid var(--border);
  background:rgba(255,255,255,.035);
  border-radius:8px;padding:1rem;
}
.catalog-stats strong{
  display:block;color:var(--teal);
  font-size:1.8rem;line-height:1;
}
.catalog-stats span{display:block;color:var(--grey);font-size:.82rem;margin-top:.45rem}
.catalog-tools{
  display:grid;grid-template-columns:2fr 1fr 1fr;
  gap:1rem;margin-bottom:1rem;
}
.catalog-search label,.catalog-filter label{
  display:block;color:var(--grey);
  font-size:.78rem;text-transform:uppercase;letter-spacing:1px;margin-bottom:.45rem;
}
.catalog-tools input,.catalog-tools select{
  width:100%;border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--white);border-radius:8px;
  padding:.85rem 1rem;font:inherit;outline:none;
}
.catalog-tools input:focus,.catalog-tools select:focus{border-color:rgba(0,201,177,.55)}
.catalog-tools select option{background:var(--deep);color:var(--white)}
.catalog-note{
  border:1px solid rgba(201,168,76,.22);
  background:rgba(201,168,76,.08);
  color:rgba(255,255,255,.78);
  border-radius:8px;padding:.8rem 1rem;
  font-size:.84rem;line-height:1.55;margin-bottom:1rem;
}
.medicine-table-wrap{
  overflow:auto;border:1px solid var(--border);
  border-radius:8px;background:rgba(6,14,30,.55);
}
.medicine-table{
  width:100%;min-width:900px;border-collapse:collapse;table-layout:fixed;
}
.medicine-table th,.medicine-table td{
  text-align:left;padding:.95rem 1rem;
  border-bottom:1px solid rgba(255,255,255,.07);
  vertical-align:top;font-size:.86rem;
}
.medicine-table th{
  color:var(--teal);font-size:.75rem;text-transform:uppercase;letter-spacing:1px;
  background:rgba(0,201,177,.06);
}
.medicine-table td{color:rgba(255,255,255,.8)}
.medicine-table strong{display:block;color:var(--white);font-size:.95rem;margin-bottom:.2rem}
.medicine-muted{color:var(--grey);font-size:.78rem}
.medicine-price{color:var(--gold2);font-weight:700}
.medicine-table .truncate{
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
}
.catalog-pagination{
  display:flex;align-items:center;justify-content:flex-end;
  gap:1rem;margin-top:1rem;color:var(--grey);font-size:.86rem;
}
.mini-btn{
  border:1px solid var(--border);background:rgba(255,255,255,.05);
  color:var(--white);border-radius:8px;padding:.65rem 1rem;
  cursor:pointer;transition:all .2s;
}
.mini-btn:hover:not(:disabled){border-color:var(--teal);color:var(--teal)}
.mini-btn:disabled{opacity:.45;cursor:not-allowed}
.medicine-detail{
  position:fixed;inset:0;z-index:2000;
  display:none;align-items:center;justify-content:center;
  padding:1rem;background:rgba(6,14,30,.72);backdrop-filter:blur(10px);
}
.medicine-detail.show{display:flex}
.medicine-detail-panel{
  width:min(860px,96vw);max-height:88vh;overflow:auto;
  background:#0d1b35;border:1px solid var(--border);
  border-radius:8px;padding:1.5rem;box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.medicine-detail-head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;
  border-bottom:1px solid var(--border);padding-bottom:1rem;margin-bottom:1rem;
}
.medicine-detail-head h3{font-family:Georgia,"Times New Roman",serif;font-size:1.7rem;color:var(--white)}
.medicine-detail-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.medicine-detail-field{
  border:1px solid var(--border);border-radius:8px;padding:1rem;
  background:rgba(255,255,255,.035);
}
.medicine-detail-field span{
  display:block;color:var(--teal);font-size:.74rem;text-transform:uppercase;letter-spacing:1px;margin-bottom:.45rem;
}
.medicine-detail-field p{color:rgba(255,255,255,.78);font-size:.88rem;line-height:1.55;white-space:pre-line}

.conditions-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1.15rem;
}
.condition-card{
  height:260px;border:1px solid var(--border);
  border-radius:8px;background:#0a1629;
}
.condition-card img{
  background:linear-gradient(135deg,rgba(0,201,177,.1),rgba(201,168,76,.08));
}
.condition-overlay{padding:1.2rem}
.condition-name{font-size:1.35rem}
.condition-sub{line-height:1.45}

.reviews-layout{
  display:grid;grid-template-columns:minmax(0,1.7fr) minmax(300px,.8fr);
  gap:1.5rem;align-items:start;
}
.review-wall{
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-height:700px;overflow:auto;padding-right:.45rem;
}
.review-wall::-webkit-scrollbar{width:5px}
.review-form{
  background:rgba(255,255,255,.045);
  border:1px solid var(--border);
  padding:1.5rem;position:sticky;top:110px;
}
.review-form h3{font-family:Georgia,"Times New Roman",serif;font-size:1.55rem;margin-bottom:.4rem}
.review-form p{color:var(--grey);font-size:.86rem;line-height:1.55;margin-bottom:1.2rem}
.inline-error{color:#ff8f8f;background:rgba(255,107,107,.08);border:1px solid rgba(255,107,107,.25);border-radius:8px;padding:.65rem .8rem;font-size:.83rem;margin-bottom:1rem}

.qualification-strip{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1rem;margin:2rem 0 1.5rem;
}
.qualification-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  padding:1rem;min-height:142px;
}
.qualification-card span{
  display:block;color:var(--gold2);font-size:.72rem;letter-spacing:1.4px;
  text-transform:uppercase;margin-bottom:.6rem;
}
.qualification-card strong{display:block;color:var(--white);font-size:1rem;line-height:1.35;margin-bottom:.55rem}
.qualification-card p{color:var(--grey);font-size:.82rem;line-height:1.5}
.cert-img-wrap{
  height:420px;
}

#clinic-gallery{
  background:linear-gradient(180deg,#091426 0%,var(--deep) 100%);
}
.clinic-gallery-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  grid-auto-rows:210px;gap:1rem;
}
.gallery-feature,.gallery-card{
  position:relative;overflow:hidden;margin:0;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}
.gallery-feature{grid-column:span 2;grid-row:span 2}
.gallery-feature img,.gallery-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s}
.gallery-feature:hover img,.gallery-card:hover img{transform:scale(1.04)}
.gallery-feature figcaption,.gallery-card figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:.85rem 1rem;color:var(--white);
  background:linear-gradient(to top,rgba(6,14,30,.9),rgba(6,14,30,.05));
  font-size:.86rem;
}

.contact-intro{margin-bottom:2.5rem}
.map-contact-grid{
  display:grid;grid-template-columns:minmax(0,1.3fr) minmax(340px,.9fr);
  gap:1.5rem;align-items:stretch;margin-bottom:1.5rem;
}
.map-card,.contact-info-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  padding:1rem;
}
.map-canvas{
  height:440px;position:relative;overflow:hidden;border-radius:8px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(135deg,#13233d,#0b1730 52%,#0e2a3b);
  background-size:48px 48px,48px 48px,100% 100%;
}
.map-road{
  position:absolute;background:rgba(255,255,255,.16);
  box-shadow:0 0 0 10px rgba(255,255,255,.035);
}
.road-one{width:120%;height:28px;left:-10%;top:49%;transform:rotate(-12deg)}
.road-two{width:30px;height:130%;left:50%;top:-15%;transform:rotate(18deg)}
.road-three{width:90%;height:22px;left:6%;top:72%;transform:rotate(8deg)}
.map-water{
  position:absolute;right:-80px;top:-50px;width:260px;height:260px;
  border-radius:50%;background:rgba(0,201,177,.17);
}
.map-pin{
  position:absolute;left:52%;top:45%;transform:translate(-50%,-50%);
  width:72px;height:72px;border-radius:50% 50% 50% 0;
  background:linear-gradient(135deg,var(--teal),#6ee7d8);
  rotate:-45deg;box-shadow:0 18px 45px rgba(0,201,177,.28);
}
.map-pin span{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  rotate:45deg;font-weight:800;color:var(--navy);
}
.map-label{
  position:absolute;left:52%;top:61%;transform:translateX(-50%);
  background:rgba(6,14,30,.88);border:1px solid rgba(0,201,177,.35);
  border-radius:8px;color:var(--white);padding:.65rem .9rem;font-size:.9rem;
}
.map-area{
  position:absolute;color:rgba(255,255,255,.72);font-size:.78rem;
  background:rgba(255,255,255,.055);border:1px solid var(--border);
  border-radius:8px;padding:.45rem .7rem;
}
.area-a{left:9%;top:18%}.area-b{right:11%;bottom:18%}.area-c{left:12%;bottom:28%}
.map-caption{color:var(--grey);font-size:.86rem;line-height:1.55;margin-top:.9rem}
.contact-info-card{display:flex;flex-direction:column;gap:1rem}
.contact-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:.5rem}
.contact-form-wide{max-width:none;margin-top:1.5rem}
.contact-form-wide .form-row{grid-template-columns:repeat(2,1fr)}

@media(max-width:1100px){
  .conditions-grid,.qualification-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
  .clinic-gallery-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-feature{grid-column:span 2}
  .catalog-tools{grid-template-columns:1fr 1fr}
  .catalog-search{grid-column:1/-1}
}
@media(max-width:900px){
  .nav-links{gap:0}
  .catalog-heading,.gallery-heading,.contact-intro{align-items:flex-start}
  .catalog-stats,.catalog-tools,.conditions-grid,.reviews-layout,.review-wall,.qualification-strip,.map-contact-grid,.contact-form-wide .form-row{grid-template-columns:1fr}
  .review-form{position:static}
  .clinic-gallery-grid{grid-template-columns:1fr;grid-auto-rows:240px}
  .gallery-feature{grid-column:auto;grid-row:auto}
  .map-canvas{height:340px}
  .medicine-detail-grid{grid-template-columns:1fr}
  /* Hide doctor photo in hero on mobile — show only in about section */
  .hero-right{display:none!important}
  /* Ensure about section image shows fine on mobile */
  .about-img-wrap{height:340px}
}

/* ── SUBPAGE OVERLAYS ── */
.subpage-overlay{
  position:fixed;inset:0;z-index:2000;
  background:var(--navy);
  overflow-y:auto;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.16,1,.3,1);
  will-change:transform;
}
.subpage-overlay.show{transform:translateX(0)}
.subpage-topbar{
  position:sticky;top:0;z-index:10;
  background:rgba(6,14,30,.96);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:1rem 5%;
  display:flex;align-items:center;gap:1.5rem;
}
.subpage-back{
  display:flex;align-items:center;gap:.5rem;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  color:var(--white);border-radius:50px;
  padding:.55rem 1.2rem;font-size:.87rem;
  cursor:pointer;transition:all .2s;
  font-family:'Outfit',sans-serif;font-weight:500;
}
.subpage-back:hover{border-color:var(--teal);color:var(--teal)}
.subpage-breadcrumb{
  font-size:.82rem;color:var(--grey);
  display:flex;align-items:center;gap:.4rem;
}
.subpage-breadcrumb span{color:var(--teal)}
.subpage-content{padding:3.5rem 5%}
.subpage-hero{
  margin-bottom:3rem;
  padding-bottom:2rem;
  border-bottom:1px solid var(--border);
}
.subpage-hero .section-label{margin-bottom:.8rem}
.subpage-hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:700;color:var(--white);
  margin-bottom:.8rem;line-height:1.2;
}
.subpage-hero p{font-size:.95rem;color:var(--grey);line-height:1.8;max-width:620px}

/* ── DTH PLANS TABLE ── */
.plans-section{margin-bottom:4rem}
.plans-section-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.5rem;font-weight:600;color:var(--white);
  margin-bottom:.5rem;
}
.plans-section-sub{font-size:.88rem;color:var(--grey);margin-bottom:1.5rem}
.plans-table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:12px}
.plans-table{width:100%;min-width:900px;border-collapse:collapse}
.plans-table th{
  background:rgba(0,201,177,.08);
  color:var(--teal);font-size:.75rem;text-transform:uppercase;
  letter-spacing:1px;padding:1rem 1.1rem;
  border-bottom:1px solid var(--border);text-align:left;
  font-weight:600;white-space:nowrap;
}
.plans-table td{
  padding:.95rem 1.1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:.87rem;color:rgba(255,255,255,.82);
  vertical-align:top;
}
.plans-table tr:last-child td{border-bottom:none}
.plans-table tr:hover td{background:rgba(255,255,255,.025)}
.plans-table .plan-name{
  font-weight:600;color:var(--white);font-size:.95rem;
}
.plans-table .price-mrp{
  color:var(--grey);text-decoration:line-through;font-size:.82rem;display:block;
}
.plans-table .price-our{
  color:var(--teal);font-weight:700;font-size:1.05rem;
}
.plan-book-btn{
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  color:var(--navy);border:none;border-radius:50px;
  padding:.55rem 1.3rem;font-size:.82rem;font-weight:600;
  cursor:pointer;transition:all .25s;white-space:nowrap;
  font-family:'Outfit',sans-serif;
}
.plan-book-btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,201,177,.35)}

/* ── LAB INVESTIGATION TABLE ── */
.lab-table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:12px}
.lab-table{width:100%;min-width:500px;border-collapse:collapse}
.lab-table th{
  background:rgba(201,168,76,.08);
  color:var(--gold2);font-size:.75rem;text-transform:uppercase;
  letter-spacing:1px;padding:1rem 1.1rem;
  border-bottom:1px solid var(--border);text-align:left;font-weight:600;
}
.lab-table td{
  padding:.9rem 1.1rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:.87rem;color:rgba(255,255,255,.82);
}
.lab-table tr:last-child td{border-bottom:none}
.lab-table tr:hover td{background:rgba(255,255,255,.025)}
.lab-table .test-name{font-weight:600;color:var(--white)}
.lab-table .mrp-price{color:var(--grey);text-decoration:line-through;font-size:.82rem}
.lab-table .our-price{color:var(--gold2);font-weight:700}
.lab-order-btn{
  background:transparent;
  border:1px solid var(--gold);
  color:var(--gold2);border-radius:50px;
  padding:.45rem 1rem;font-size:.8rem;font-weight:500;
  cursor:pointer;transition:all .25s;
  font-family:'Outfit',sans-serif;
}
.lab-order-btn:hover{background:rgba(201,168,76,.12);transform:translateY(-1px)}

/* ── PLAN BOOKING MODAL ── */
.plan-modal-overlay{
  position:fixed;inset:0;z-index:4000;
  background:rgba(6,14,30,.8);backdrop-filter:blur(12px);
  display:none;align-items:center;justify-content:center;padding:1rem;
}
.plan-modal-overlay.show{display:flex}
.plan-modal{
  background:#0d1b35;border:1px solid var(--border);
  border-radius:20px;padding:2.5rem;
  width:min(500px,96vw);max-height:90vh;overflow:auto;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}
.plan-modal h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.5rem;color:var(--white);margin-bottom:.4rem;
}
.plan-modal p{font-size:.87rem;color:var(--grey);margin-bottom:1.5rem}
.plan-modal-name{
  display:inline-block;
  background:rgba(0,201,177,.12);border:1px solid rgba(0,201,177,.25);
  color:var(--teal);border-radius:8px;
  padding:.4rem .9rem;font-size:.85rem;font-weight:600;
  margin-bottom:1.5rem;
}
.plan-modal-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.plan-modal-close{
  background:none;border:1px solid var(--border);color:var(--grey);
  border-radius:50px;padding:.55rem 1.3rem;font-size:.85rem;
  cursor:pointer;transition:all .2s;font-family:'Outfit',sans-serif;
}
.plan-modal-close:hover{border-color:var(--white);color:var(--white)}

/* ── SAVINGS BADGE ── */
.savings-badge{
  display:inline-block;
  background:rgba(0,201,177,.12);border:1px solid rgba(0,201,177,.2);
  color:var(--teal);border-radius:50px;font-size:.72rem;
  padding:.2rem .6rem;margin-left:.4rem;font-weight:600;
}

/* ── SUBPAGE SECTIONS ── */
.subpage-tab-row{
  display:flex;gap:.6rem;margin-bottom:2.5rem;flex-wrap:wrap;
}
.subpage-tab{
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  color:rgba(255,255,255,.6);border-radius:50px;
  padding:.55rem 1.3rem;font-size:.85rem;
  cursor:pointer;transition:all .2s;font-family:'Outfit',sans-serif;
}
.subpage-tab.active{
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  color:var(--navy);border-color:transparent;font-weight:600;
}
.subpage-section{display:none}
.subpage-section.active{display:block}
/* ── YOUTUBE SECTION ── */
#youtube-section {
  background: linear-gradient(180deg, var(--deep) 0%, #091426 100%);
}
.yt-main-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}
.yt-main-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.yt-main-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  gap: 1rem;
  font-size: .95rem;
  text-align: center;
  padding: 2rem;
}
.yt-main-placeholder .yt-icon {
  font-size: 4rem;
  opacity: .3;
}
.yt-shorts-label {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.yt-shorts-label::before { content: ''; flex: none; width: 30px; height: 1px; background: var(--teal); }
.yt-shorts-row {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.yt-shorts-row::-webkit-scrollbar { height: 4px; }
.yt-shorts-row::-webkit-scrollbar-track { background: var(--navy); }
.yt-shorts-row::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
.yt-short-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.yt-short-item .yt-short-frame {
  position: relative;
  width: 200px;
  height: 356px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}
.yt-short-item .yt-short-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.yt-loading {
  color: var(--grey);
  font-size: .9rem;
  padding: 3rem 0;
  text-align: center;
}
.yt-shorts-empty {
  color: var(--grey);
  font-size: .88rem;
  padding: 2rem 0;
  text-align: center;
  font-style: italic;
}
@media(max-width:900px) {
  .yt-short-item { flex: 0 0 160px; }
  .yt-short-item .yt-short-frame { width: 160px; height: 285px; }
}

/* ══════════════════════════════════════════════
   HEALTH CAMP SECTION
══════════════════════════════════════════════ */
.health-camp-section {
  margin-top: 3.5rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,201,177,.06) 0%, rgba(201,168,76,.06) 100%);
  border: 1px solid rgba(0,201,177,.2);
  padding: 2.5rem;
}

.camp-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.camp-cross {
  font-size: 2.4rem;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}

.camp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
}
.camp-section-title strong { color: var(--teal); }

.camp-section-sub {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 520px;
}

/* Loading */
.camp-loading-state {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  color: var(--grey);
  font-size: .9rem;
}
.camp-pulse {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2.5px solid var(--teal);
  border-top-color: transparent;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* No camp */
.camp-none-state {
  text-align: center;
  padding: 2.5rem 1rem;
}
.camp-none-icon { font-size: 3rem; margin-bottom: .8rem; }
.camp-none-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}
.camp-none-sub { color: var(--grey); font-size: .88rem; }

/* ── CAMP CARD ── */
.camp-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--deep);
  border: 1px solid rgba(0,201,177,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* Card top banner */
.camp-card-banner {
  background: linear-gradient(135deg, #006d5b 0%, #004d40 60%, #1a3a2a 100%);
  padding: 1.8rem 2rem 1.4rem;
  position: relative;
  overflow: hidden;
}
.camp-card-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,201,177,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,177,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.camp-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.camp-clinic-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.camp-badge-free {
  background: #e53935;
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  padding: .35rem .9rem;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.camp-badge-paid {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .78rem;
  padding: .35rem .9rem;
  border-radius: 50px;
  letter-spacing: 1px;
}
.camp-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-top: .3rem;
  position: relative;
  z-index: 1;
}
.camp-title-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-top: .8rem;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

/* Cross decorations */
.camp-crosses {
  position: absolute;
  top: 1rem; right: 1.5rem;
  display: flex; gap: .6rem;
  z-index: 1;
}
.camp-cross-deco {
  font-size: 1.2rem;
  color: rgba(255,255,255,.2);
}

/* Camp body */
.camp-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Includes */
.camp-includes-col {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
}
.camp-col-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.camp-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.camp-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  line-height: 1.4;
}
.camp-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(0,201,177,.15);
  border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .65rem;
  color: var(--teal);
  font-weight: 700;
  margin-top: 1px;
}

/* Details col */
.camp-details-col {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.camp-detail-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.camp-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.camp-detail-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: .15rem;
}
.camp-detail-val {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.camp-fee-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
}
.camp-fee-free {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #4caf50;
}
.camp-slots-pill {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold2);
  font-size: .78rem;
  font-weight: 600;
  padding: .25rem .8rem;
  border-radius: 50px;
  margin-top: .3rem;
}

/* Doctor strip */
.camp-doctor-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: rgba(0,201,177,.05);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.camp-doc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.camp-doc-cred {
  font-size: .8rem;
  color: var(--grey);
  margin-top: .1rem;
}

/* CTA */
.camp-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 2rem;
  background: rgba(0,0,0,.2);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.camp-cta-row .btn-primary {
  flex: 1;
  text-align: center;
  min-width: 180px;
}
.camp-contact-btns {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.camp-call-btn {
  background: rgba(0,201,177,.12);
  border: 1px solid rgba(0,201,177,.3);
  color: var(--teal);
  padding: .65rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: inline-block;
}
.camp-call-btn:hover {
  background: rgba(0,201,177,.2);
}

/* Camp Registration Modal */
.camp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,14,30,.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.camp-modal-overlay.open { display: flex; }
.camp-modal {
  background: var(--deep);
  border: 1px solid rgba(0,201,177,.25);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.camp-modal-x {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none;
  border: none;
  color: var(--grey);
  font-size: 1.1rem;
  cursor: pointer;
  padding: .3rem;
}
.camp-modal-top { text-align: center; margin-bottom: 1.5rem; }
.camp-modal-cross {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: .5rem;
}
.camp-modal-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}
.camp-modal-top p {
  font-size: .85rem;
  color: var(--grey);
}

/* Past camp badge */
.camp-status-past {
  background: rgba(143,163,191,.12);
  border: 1px solid rgba(143,163,191,.2);
  border-radius: 20px;
  overflow: hidden;
  opacity: .8;
}
.camp-past-ribbon {
  background: rgba(143,163,191,.15);
  text-align: center;
  padding: .5rem;
  font-size: .78rem;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* Responsive */
@media(max-width:768px) {
  .camp-card-body { grid-template-columns: 1fr; }
  .camp-includes-col { border-right: none; border-bottom: 1px solid var(--border); }
  .camp-cta-row { flex-direction: column; }
  .camp-cta-row .btn-primary { width: 100%; }
  .camp-contact-btns { width: 100%; justify-content: center; }
  .health-camp-section { padding: 1.5rem; }
  .camp-card-banner { padding: 1.4rem 1.2rem 1.2rem; }
  .camp-title-big { font-size: 1.3rem; }
}
