/* ═══════════════════════════════════════════════════════════════
   BALAJI EYE FOUNDATION — Premium Eye Care
   style.css  |  Est. 1998  |  Gobichettipalayam
═══════════════════════════════════════════════════════════════ */

/* ── ROOT & RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:     #01335c;
  --blue:     #0288d1;
  --sky:      #29b6f6;
  --pale:     #e1f5fe;
  --off:      #f0f9ff;
  --gold:     #ffc107;
  --text:     #0d1f35;
  --muted:    #4a6b87;
  --border:   #c8e6f7;
  --white:    #ffffff;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', 'Segoe UI', sans-serif;
  --rad:      14px;
  --rad-sm:   8px;
  --shadow:   0 4px 24px rgba(2,136,209,.12);
  --shadow-lg:0 12px 48px rgba(2,136,209,.20);
  --trans:    .3s ease;
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--sans); color: var(--text); background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a     { text-decoration: none; color: inherit; }
ul, ol{ list-style: none; }
img   { max-width: 100%; display: block; }
button{ cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ── UTILITIES ────────────────────────────────────────────── */
.container  { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.label      { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--blue); }
.heading    { font-family: var(--serif); font-size: clamp(1.7rem,4vw,2.6rem); font-weight: 700; color: var(--navy); line-height: 1.18; margin-bottom: 12px; }
.heading em { font-style: italic; color: var(--blue); }
.subtext    { font-size: .93rem; color: var(--muted); line-height: 1.78; max-width: 520px; margin-bottom: 40px; }
.center     { text-align: center; }
.center .subtext { margin-left: auto; margin-right: auto; }
.center .label   { justify-content: center; }

/* Buttons */
.btn         { display: inline-flex; align-items: center; gap: 8px; -webkit-font-smoothing: antialiased; padding: 13px 26px; border-radius: var(--rad-sm); font-family: var(--sans); font-weight: 600; font-size: .88rem; transition: var(--trans); border: 2px solid transparent; white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(2,136,209,.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark    { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: #022848; transform: translateY(-2px); }
.btn-wa      { background: #25d366; color: #fff; border-color: #25d366; text-shadow: 0 1px 2px rgba(0,0,0,.2); }
.btn-wa:hover{ background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

/* Scroll reveal — directional variants */
.reveal         { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left    { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right   { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ── TOP BAR ──────────────────────────────────────────────── */
#topbar           { background: var(--navy); color: rgba(255,255,255,.85); font-size: .76rem; padding: 8px 0; transition: all .35s ease; overflow: hidden; max-height: 60px; }
.tb-inner         { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.tb-left, .tb-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tb-item          { display: flex; align-items: center; gap: 5px; }
.tb-item i        { color: var(--sky); font-size: .72rem; }
#topbar a         { color: rgba(255,255,255,.75); transition: color .2s; }
#topbar a:hover   { color: var(--gold); }

/* ── NAVBAR ───────────────────────────────────────────────── */
#navbar           { background: #fff; box-shadow: 0 2px 20px rgba(2,136,209,.1); position: sticky; top: 0; z-index: 999; transition: all .35s ease; }
#navbar.scrolled  { backdrop-filter: blur(12px); background: rgba(255,255,255,.92); box-shadow: 0 4px 28px rgba(2,136,209,.18); }
#topbar.hidden    { max-height: 0; padding: 0; }
.nav-inner        { display: flex; align-items: center; justify-content: space-between; height: 70px; transition: height .35s ease; }
.logo             { display: flex; align-items: center; gap: 12px; }
.logo-circle      { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--navy),var(--sky)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow); }
.logo-circle svg  { width: 24px; height: 24px; fill: #fff; }
.logo-text .name  { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.1; display: block; }
.logo-text .tagline { font-size: .50rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 240px; }
.nav-links        { display: flex; gap: 1px; align-items: center; flex-shrink: 1; min-width: 0; }
.nav-links li     { position: relative; }
.nav-links a      { display: block; padding: 7px 10px; font-size: .78rem; font-weight: 600; color: var(--text); border-radius: var(--rad-sm); transition: var(--trans); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--pale); }
.has-dropdown:hover .dropdown { display: block; }
.dropdown         { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--rad); box-shadow: var(--shadow-lg); min-width: 210px; z-index: 400; padding: 8px 0; }
.dropdown a       { padding: 10px 18px; font-size: .82rem; border-radius: 0; border-bottom: 1px solid var(--pale); }
.dropdown a:last-child { border-bottom: none; }
.nav-cta          { background: var(--blue)!important; color: #fff!important; border-radius: var(--rad-sm)!important; padding: 10px 20px!important; font-weight: 700!important; }
.nav-cta:hover    { background: var(--navy)!important; color: #fff!important; }
#mob-btn          { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--rad-sm); background: var(--pale); color: var(--navy); font-size: 1.2rem; }
#mob-menu         { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--border); padding: 12px 16px 20px; max-height: 80vh; overflow-y: auto; }
#mob-menu a       { display: flex; align-items: center; gap: 11px; padding: 12px 14px; font-size: .9rem; font-weight: 600; border-radius: var(--rad-sm); color: var(--text); border-bottom: 1px solid var(--pale); transition: var(--trans); }
#mob-menu a i     { width: 18px; text-align: center; color: var(--blue); font-size: .85rem; flex-shrink: 0; }
#mob-menu a:hover { background: var(--pale); color: var(--blue); }
#mob-menu a:last-child { border-bottom: none; background: var(--blue); color: #fff; text-align: center; margin-top: 8px; justify-content: center; }
#mob-menu a:last-child i { color: #fff; }

/* ── HERO SLIDER ──────────────────────────────────────────── */
#hero             { position: relative; overflow: hidden; background: var(--navy); }
.slides-track     { display: flex; transition: transform .7s cubic-bezier(.4,0,.2,1); }
.slide            { min-width: 100%; min-height: 88vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.slide-content    { position: relative; z-index: 2; padding: 40px 20px 140px; max-width: 1240px; margin: 0 auto; width: 100%; }
.slide-badge      { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,0,0,.32); border: 1px solid rgba(255,202,40,.55); color: #FFD700; font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 7px 18px; border-radius: 100px; margin-bottom: 18px; backdrop-filter: blur(6px); }
.slide-motto      { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.08rem; margin-bottom: 10px; }
.slide-h1         { font-family: var(--serif); font-size: clamp(2.2rem,6vw,4rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.slide-h1 em      { font-style: italic; color: var(--gold); }
.slide-p          { font-size: clamp(.88rem,2vw,1.02rem); color: rgba(255,255,255,.88); line-height: 1.78; max-width: 520px; margin-bottom: 34px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }
.slide-btns       { display: flex; gap: 14px; flex-wrap: wrap; }
.s1 { background: linear-gradient(135deg,rgba(1,51,92,.80) 0%,rgba(1,51,92,.65) 60%,rgba(2,136,209,.45) 100%),
       url('https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1400&q=80') center/cover no-repeat; }
.s2 { background: linear-gradient(135deg,rgba(1,51,92,.85) 0%,rgba(1,87,155,.72) 60%,rgba(2,136,209,.50) 100%),
       url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?w=1400&q=80') center/cover no-repeat; }
.s3 { background: linear-gradient(135deg,rgba(0,60,64,.85) 0%,rgba(0,96,100,.75) 60%,rgba(1,119,189,.55) 100%),
       url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1400&q=80') center/cover no-repeat; }
.slide-deco       { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); opacity: .1; pointer-events: none; }
.stats-bar        { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; background: rgba(1,31,56,.82); backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,.15); }
.stats-row        { display: flex; justify-content: space-around; flex-wrap: wrap; }
.stat-item        { padding: 16px 10px; text-align: center; flex: 1; min-width: 88px; border-right: 1px solid rgba(255,255,255,.15); white-space: nowrap; }
.stat-item:last-child { border-right: none; }
.stat-num         { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: #FFD700; line-height: 1; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.stat-lbl         { font-size: .63rem; color: rgba(255,255,255,.82); letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; font-weight: 600; }
.slide-arrow      {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  width: 48px; height: 48px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.85);
  background: rgba(1,31,56,.65);
  color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.slide-arrow:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-50%) scale(1.08); box-shadow: 0 6px 20px rgba(2,136,209,.5); }
.arrow-prev       { left: 14px; }
.arrow-next       { right: 14px; }
.slide-dots       { position: absolute; bottom: 110px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot              { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); transition: var(--trans); border: none; cursor: pointer; }
.dot.active       { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── MARQUEE ──────────────────────────────────────────────── */
#marquee   { background: var(--blue); padding: 11px 0; overflow: hidden; white-space: nowrap; }
.mq-track  { display: inline-flex; animation: mq 35s linear infinite; }
.mq-item   { display: inline-flex; align-items: center; gap: 10px; font-size: .73rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #fff; padding: 0 28px; }
.mq-dot    { width: 5px; height: 5px; background: rgba(255,255,255,.45); border-radius: 50%; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ─────────────────────────────────────────────── */
#services            { background: var(--off); }
.services-grid       { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 22px; }
.service-card        { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); overflow: hidden; transition: var(--trans); position: relative; }
.service-card:hover  { transform: translateY(-8px); box-shadow: 0 16px 52px rgba(2,136,209,.22); border-color: transparent; }
.service-card-visual { height: 150px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.svc-lasik    .service-card-visual { background: linear-gradient(135deg,#0277bd,#29b6f6); }
.svc-cataract .service-card-visual { background: linear-gradient(135deg,#01335c,#0288d1); }
.svc-diabetic .service-card-visual { background: linear-gradient(135deg,#006064,#0288d1); }
.svc-glaucoma .service-card-visual { background: linear-gradient(135deg,#01579b,#26c6da); }
.svc-retina   .service-card-visual { background: linear-gradient(135deg,#0d47a1,#42a5f5); }
.svc-paediatric .service-card-visual { background: linear-gradient(135deg,#004d40,#26a69a); }
.svc-master   .service-card-visual { background: linear-gradient(135deg,#1a237e,#3949ab); }
.service-icon-big    { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; z-index: 1; position: relative; backdrop-filter: blur(4px); }
.service-card-deco   { position: absolute; width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,.08); right: -20px; bottom: -20px; }
.service-card-deco2  { position: absolute; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.06); left: 10px; top: 10px; }
.service-card-badge  { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.22); backdrop-filter: blur(8px); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,.3); }
.service-card-body   { padding: 22px 20px 20px; }
.service-card-body h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.service-card-body p  { font-size: .83rem; color: var(--muted); line-height: 1.72; }
.service-card-link   { display: inline-flex; align-items: center; gap: 5px; margin-top: 13px; font-size: .78rem; font-weight: 700; color: var(--blue); }
.service-card-link i { font-size: .62rem; transition: transform .2s; }
.service-card:hover .service-card-link i { transform: translateX(4px); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--blue),var(--sky)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover::after { transform: scaleX(1); }

/* ── TRUST STRIP ──────────────────────────────────────────── */
#trust        { background: #fff; padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-row    { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item   { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 14px 16px; border-right: 1px solid var(--border); flex: 1; min-width: 100px; }
.trust-item:last-child { border-right: none; }
.trust-icon   { font-size: 24px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--pale); border-radius: 50%; }
.trust-label  { font-size: .74rem; font-weight: 700; color: var(--navy); text-align: center; }

/* ── EYE CONDITIONS ───────────────────────────────────────── */
#conditions       { background: var(--off); }
.conditions-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 20px; }
.cond-card        { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 26px 22px; position: relative; overflow: hidden; transition: var(--trans); }
.cond-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; transition: transform .35s; transform: scaleX(0); transform-origin: left; }
.cond-card:hover::before { transform: scaleX(1); }
.cond-card:hover  { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cond-c1::before  { background: linear-gradient(90deg,#0288d1,#29b6f6); }
.cond-c2::before  { background: linear-gradient(90deg,#006064,#26c6da); }
.cond-c3::before  { background: linear-gradient(90deg,#d32f2f,#ef5350); }
.cond-c4::before  { background: linear-gradient(90deg,#7b1fa2,#ba68c8); }
.cond-c5::before  { background: linear-gradient(90deg,#e65100,#ffa726); }
.cond-c6::before  { background: linear-gradient(90deg,#1565c0,#42a5f5); }
.cond-icon-wrap   { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 14px; }
.cond-c1 .cond-icon-wrap { background: #e3f2fd; }
.cond-c2 .cond-icon-wrap { background: #e0f7fa; }
.cond-c3 .cond-icon-wrap { background: #ffebee; }
.cond-c4 .cond-icon-wrap { background: #f3e5f5; }
.cond-c5 .cond-icon-wrap { background: #fff3e0; }
.cond-c6 .cond-icon-wrap { background: #e8eaf6; }
.cond-card h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cond-card p  { font-size: .82rem; color: var(--muted); line-height: 1.72; }

/* ── DEPARTMENTS ──────────────────────────────────────────── */
#departments  { background: #fff; }
.dept-grid    { display: grid; grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 14px; }
.dept-card    { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 20px 12px; text-align: center; transition: var(--trans); cursor: default; }
.dept-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); background: #fff; }
.dept-card:hover .dept-icon { background: linear-gradient(135deg,var(--blue),var(--sky)); color: #fff; }
.dept-icon    { width: 56px; height: 56px; border-radius: 50%; background: var(--pale); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: var(--trans); }
.dept-card h4 { font-size: .82rem; font-weight: 700; color: var(--navy); }

/* ── ABOUT ────────────────────────────────────────────────── */
#about        { background: linear-gradient(135deg,#01335c 0%,#0277bd 55%,#0288d1 100%); }
.about-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-left .label::before { background: var(--gold); }
.about-left .label   { color: var(--gold); }
.about-left .heading { color: #fff; }
.about-left .subtext { color: rgba(255,255,255,.55); margin-bottom: 24px; }
.about-features      { display: flex; flex-direction: column; gap: 14px; }
.about-feat          { display: flex; align-items: flex-start; gap: 14px; padding: 15px 18px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--rad); transition: var(--trans); }
.about-feat:hover    { background: rgba(255,255,255,.12); border-color: rgba(255,202,40,.28); }
.about-feat-icon     { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,202,40,.18); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.about-feat h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.about-feat p  { font-size: .78rem; color: rgba(255,255,255,.48); line-height: 1.6; }
.about-stats  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.astat        { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 26px 18px; text-align: center; transition: var(--trans); }
.astat:hover  { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.astat.span2  { grid-column: span 2; background: rgba(255,202,40,.12); border-color: rgba(255,202,40,.28); }
.astat-num    { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 5px; }
.astat.span2 .astat-num { font-size: 3rem; }
.astat-label  { font-size: .66rem; color: rgba(255,255,255,.42); letter-spacing: .07em; text-transform: uppercase; }

/* ── MASTER CHECKUP ───────────────────────────────────────── */
#mastercheckup  { background: var(--off); }
.mc-grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.mc-visual      { border-radius: var(--rad); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(135deg,#1a237e,#0288d1); min-height: 400px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; position: relative; }
.mc-visual-icon  { font-size: 3.8rem; color: rgba(255,255,255,.9); margin-bottom: 18px; }
.mc-visual-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: #fff; text-align: center; line-height: 1.2; }
.mc-visual-sub   { font-size: .85rem; color: rgba(255,255,255,.6); text-align: center; margin-top: 8px; }
.mc-visual-deco  { position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); top: -50px; right: -50px; }
.mc-visual-deco2 { position: absolute; width: 130px; height: 130px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); bottom: -30px; left: -30px; }
.mc-badge        { background: rgba(255,202,40,.2); border: 1px solid rgba(255,202,40,.4); color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; display: inline-block; margin-top: 14px; }
.mc-features     { display: flex; flex-direction: column; gap: 13px; margin-top: 20px; }
.mc-feat         { display: flex; align-items: flex-start; gap: 13px; padding: 15px 16px; background: #fff; border: 1px solid var(--border); border-radius: 11px; transition: var(--trans); }
.mc-feat:hover   { border-color: var(--blue); box-shadow: var(--shadow); }
.mc-feat-icon    { width: 40px; height: 40px; border-radius: 10px; background: var(--pale); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; color: var(--blue); }
.mc-feat h5 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.mc-feat p  { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ── OUTCOMES / CHARTS ────────────────────────────────────── */
#outcomes       { background: #fff; }
.outcomes-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.chart-box      { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 24px; }
.chart-box h3   { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.chart-tag      { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; background: var(--pale); color: var(--blue); padding: 3px 9px; border-radius: 100px; }
canvas          { max-height: 240px; }
.kpi-list       { display: flex; flex-direction: column; gap: 12px; }
.kpi-item       { padding: 13px 16px; background: var(--off); border-radius: 11px; border: 1px solid var(--border); }
.kpi-top        { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.kpi-label      { font-size: .82rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.kpi-val        { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--blue); }
.kpi-bar-track  { height: 5px; background: var(--border); border-radius: 3px; }
.kpi-bar-fill   { height: 5px; border-radius: 3px; background: linear-gradient(90deg,var(--blue),var(--sky)); width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1); }

/* ── DOCTORS ──────────────────────────────────────────────── */
#doctors       { background: var(--pale); }
.doctors-grid  { display: grid; grid-template-columns: repeat(auto-fit,minmax(268px,1fr)); gap: 24px; }
.doctor-card   { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid transparent; transition: var(--trans); }
.doctor-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(2,136,209,.25); border-color: var(--pale); }
.doctor-visual { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; flex-direction: column; }
.doc-v1 { background: linear-gradient(135deg,#01335c,#0288d1); }
.doc-v2 { background: linear-gradient(135deg,#0d47a1,#039be5); }
.doc-v3 { background: linear-gradient(135deg,#1b5e20,#26a69a); }
.doctor-avatar       { width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 42px; border: 3px solid rgba(255,255,255,.28); }
.doctor-specialty-tag { position: absolute; bottom: 12px; left: 12px; background: var(--blue); color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.doctor-info   { padding: 20px 20px 24px; }
.doctor-info h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.doctor-qual  { font-size: .72rem; color: var(--blue); font-weight: 700; margin-bottom: 4px; }
.doctor-spec  { font-size: .76rem; color: var(--sky); font-weight: 600; margin-bottom: 4px; }
.doctor-exp   { font-size: .74rem; color: var(--blue); font-weight: 600; margin-bottom: 6px; }
.doctor-timing { font-size: .74rem; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 8px; }

/* ── HOURS ────────────────────────────────────────────────── */
#hours        { background: var(--off); padding: 60px 0; }
.hours-grid   { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 18px; }
.hour-card    { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 24px 18px; text-align: center; }
.hour-day     { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.hour-time    { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.hour-badge   { display: inline-block; background: var(--pale); color: var(--blue); font-size: .65rem; font-weight: 700; padding: 3px 12px; border-radius: 100px; margin-top: 8px; }
.hour-card.emergency { border: 2px solid var(--blue); background: linear-gradient(135deg,var(--pale),#dbeafe); }
.hour-card.emergency .hour-day  { color: var(--blue); }
.hour-card.emergency .hour-time { color: var(--blue); }

/* ── OPTICALS & PHARMACY ──────────────────────────────────── */
#opticals    { background: #fff; }
#pharmacy    { background: var(--off); }
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-visual { border-radius: var(--rad); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 380px; display: flex; align-items: center; justify-content: center; position: relative; padding: 40px; }
.opt-visual { background: linear-gradient(135deg,#0277bd,#29b6f6); }
.pha-visual { background: linear-gradient(135deg,#006064,#0288d1); }
.feature-visual-deco { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); }
.feat-items   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.feat-item    { background: var(--off); border: 1px solid var(--border); border-radius: 11px; padding: 16px 14px; text-align: center; transition: var(--trans); }
.feat-item:hover { border-color: var(--blue); box-shadow: var(--shadow); background: #fff; }
.feat-item-icon { font-size: 24px; margin-bottom: 8px; }
.feat-item h5 { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feat-item p  { font-size: .75rem; color: var(--muted); line-height: 1.55; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials   { background: #fff; }
.testi-grid     { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 22px; }
.testi-card     { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 26px; transition: var(--trans); position: relative; overflow: hidden; }
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); background: #fff; }
.testi-quote    { font-family: var(--serif); font-size: 4rem; color: var(--sky); opacity: .15; position: absolute; top: 8px; left: 16px; line-height: 1; }
.testi-stars    { color: var(--blue); font-size: .88rem; margin-bottom: 12px; }
.testi-text     { font-size: .86rem; color: var(--text); line-height: 1.76; margin-bottom: 18px; font-style: italic; }
.testi-author   { display: flex; align-items: center; gap: 12px; }
.testi-avatar   { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--sky)); color: #fff; font-weight: 800; font-size: .83rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name     { font-size: .85rem; font-weight: 700; color: var(--navy); }
.testi-loc      { font-size: .71rem; color: var(--muted); }

/* ── WHATSAPP BOOKING MODAL ───────────────────────────────── */
.wa-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; align-items: center; justify-content: center; padding: 20px; }
.wa-modal-overlay.open { display: flex; }
.wa-modal { background: #fff; border-radius: 20px; padding: 36px 32px; max-width: 480px; width: 100%; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.25); animation: modalIn .35s cubic-bezier(.4,0,.2,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: none; } }
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */
.wa-modal-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.wa-modal-logo   { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg,var(--navy),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.wa-modal-header h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.wa-modal-header p  { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.wa-form-group    { margin-bottom: 14px; }
.wa-form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--rad-sm); font-family: var(--sans); font-size: .88rem; color: var(--text); outline: none; transition: border-color .2s; background: #fff; }
.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus { border-color: var(--blue); }
.wa-form-group textarea { resize: vertical; min-height: 80px; }
.wa-form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wa-submit-row    { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.wa-submit-row .btn { flex: 1; justify-content: center; font-size: .88rem; padding: 12px 18px; }
.wa-note          { font-size: .73rem; color: var(--muted); text-align: center; margin-top: 12px; }
.wa-note i        { color: #25d366; }

/* ── CTA SECTION ──────────────────────────────────────────── */
#cta { background: linear-gradient(135deg,#01335c 0%,#0277bd 55%,#0288d1 100%); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%,rgba(255,255,255,.07) 0%,transparent 70%); }
#cta .container   { position: relative; }
#cta h2           { font-family: var(--serif); font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
#cta h2 em        { font-style: italic; color: var(--gold); }
#cta > .container > p { font-size: .93rem; color: rgba(255,255,255,.6); margin-bottom: 30px; }
.cta-form         { display: flex; justify-content: center; gap: 11px; flex-wrap: wrap; max-width: 580px; margin: 0 auto; }
.cta-form input   { flex: 1; min-width: 180px; padding: 13px 18px; border-radius: var(--rad-sm); border: 2px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); color: #fff; font-family: var(--sans); font-size: .88rem; outline: none; }
.cta-form input::placeholder { color: rgba(255,255,255,.55); }
.cta-form input:focus { border-color: var(--gold); }
.cta-confirm      { margin-top: 14px; color: var(--gold); font-weight: 700; display: none; }
.cta-links        { margin-top: 26px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-divider      { color: rgba(255,255,255,.3); margin: 18px 0 6px; font-size: .82rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
#contact            { background: #fff; }
.contact-grid       { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start; }
.contact-info       { display: flex; flex-direction: column; gap: 16px; }
.contact-block      { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 18px; display: flex; align-items: flex-start; gap: 14px; }
.contact-block-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--pale); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue); flex-shrink: 0; }
.contact-block h4   { font-size: .84rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-block p, .contact-block a { font-size: .81rem; color: var(--muted); line-height: 1.65; }
.contact-block a:hover { color: var(--blue); }
.map-wrap           { border-radius: var(--rad); overflow: hidden; border: 1px solid var(--border); min-height: 400px; }
.map-wrap iframe    { width: 100%; height: 100%; min-height: 400px; border: none; display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer              { background: #011e36; color: rgba(255,255,255,.5); padding: 60px 0 0; }
.footer-grid        { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 42px; padding-bottom: 50px; }
.footer-brand .logo { margin-bottom: 13px; }
.footer-brand .logo-text .name { color: #fff !important; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,.35) !important; }
.footer-motto       { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
.footer-desc        { font-size: .8rem; line-height: 1.76; max-width: 260px; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-list a, .footer-contact-list span { font-size: .79rem; color: rgba(255,255,255,.46); display: flex; align-items: flex-start; gap: 8px; transition: color .2s; }
.footer-contact-list i { margin-top: 2px; color: var(--sky); width: 13px; flex-shrink: 0; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-social      { display: flex; gap: 9px; margin-top: 18px; }
.soc-btn            { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.46); font-size: .88rem; transition: var(--trans); }
.soc-btn:hover      { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4      { font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.footer-links       { display: flex; flex-direction: column; gap: 10px; }
.footer-links a     { font-size: .79rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom      { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .75rem; }
.footer-bottom a    { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
#wa-float    { position: fixed; bottom: 22px; right: 22px; z-index: 1002; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; font-size: 1.45rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--trans); }
#wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media(max-width:1180px){
  .nav-links .nav-optional { display: none; }
}
@media(max-width:1024px){
  .nav-links { display: none; }
  #mob-btn   { display: flex; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .outcomes-grid, .contact-grid { grid-template-columns: 1fr; }
  .mc-grid, .feature-split { grid-template-columns: 1fr; }
  .feature-split.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  #mob-btn   { display: flex; }
  .slide     { min-height: 80vh; }
  .stat-item { padding: 10px 8px; }
  .stat-num  { font-size: 1.4rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .astat.span2 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .tb-right  { display: none; }
  #topbar    { font-size: .7rem; }
  .section   { padding: 60px 0; }
  .feat-items { grid-template-columns: 1fr 1fr; }
  .wa-form-row { grid-template-columns: 1fr; }
  .wa-modal  { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .stat-item  { min-width: 50%; border-right: none; }
  .trust-item { min-width: 50%; }
  .feat-items { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .astat.span2 { grid-column: span 1; }
  .slide-h1  { font-size: 2rem; }
  .cta-form  { flex-direction: column; }
  .cta-form input { min-width: 100%; }
  .wa-submit-row  { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW FEATURES — ORDER / SCHEDULE / FEEDBACK / ADMIN TOOLS
═══════════════════════════════════════════════════════════════ */

/* ── ORDER NOW BUTTON ─────────────────────────────────────── */
.btn-order { background: #e65100; color: #fff; border-color: #e65100; }
.btn-order:hover { background: #bf360c; border-color: #bf360c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,81,0,.35); }

/* Order modal */
.order-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; align-items: center; justify-content: center; padding: 20px; }
.order-modal-overlay.open { display: flex; }
.order-modal { background: #fff; border-radius: 20px; padding: 36px 32px; max-width: 520px; width: 100%; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.25); animation: modalIn .35s cubic-bezier(.4,0,.2,1); max-height: 90vh; overflow-y: auto; }
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */
.order-modal-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.order-modal-logo { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg,#e65100,#ff8f00); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.order-tabs { display: flex; gap: 8px; margin-bottom: 20px; background: var(--off); border-radius: var(--rad-sm); padding: 4px; }
.order-tab { flex: 1; padding: 9px 12px; border-radius: 6px; font-size: .82rem; font-weight: 600; color: var(--muted); cursor: pointer; text-align: center; transition: var(--trans); border: none; background: none; font-family: var(--sans); }
.order-tab.active { background: #fff; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.order-panel { display: none; }
.order-panel.active { display: block; }

/* ── APPOINTMENT SCHEDULE (INT'L / NATIONAL / LOCAL) ─────── */
#appointment { background: var(--off); }
.appt-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.appt-tab { padding: 10px 22px; border-radius: 100px; font-size: .83rem; font-weight: 700; cursor: pointer; transition: var(--trans); border: 2px solid var(--border); background: #fff; color: var(--muted); font-family: var(--sans); }
.appt-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.appt-panel { display: none; }
.appt-panel.active { display: block; }
.appt-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; }
.appt-card { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 18px 16px; }
.appt-card-day { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.appt-card-time { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.appt-card-note { font-size: .74rem; color: var(--muted); }
.appt-card-badge { display: inline-block; font-size: .63rem; font-weight: 700; padding: 2px 10px; border-radius: 100px; margin-top: 6px; }
.badge-intl { background: #e8eaf6; color: #3949ab; }
.badge-natl { background: #e8f5e9; color: #2e7d32; }
.badge-local { background: var(--pale); color: var(--blue); }
.appt-contact-row { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.appt-contact-card { flex: 1; min-width: 180px; background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 14px 16px; display: flex; align-items: flex-start; gap: 11px; }
.appt-contact-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.aci-intl { background: #e8eaf6; }
.aci-natl { background: #e8f5e9; }
.aci-local { background: var(--pale); }
.appt-contact-card h5 { font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.appt-contact-card p { font-size: .75rem; color: var(--muted); line-height: 1.5; }
.appt-contact-card a { color: var(--blue); font-weight: 600; }

/* ── FEEDBACK SECTION ─────────────────────────────────────── */
#feedback { background: #fff; }
.feedback-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.feedback-list { display: flex; flex-direction: column; gap: 16px; }
.feedback-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 20px; position: relative; overflow: hidden; transition: var(--trans); }
.feedback-card:hover { box-shadow: var(--shadow-lg); }
.feedback-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.feedback-author { display: flex; align-items: center; gap: 10px; }
.feedback-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),var(--sky)); color: #fff; font-weight: 800; font-size: .8rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feedback-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.feedback-loc { font-size: .71rem; color: var(--muted); }
.feedback-type { font-size: .63rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.fb-type-text { background: var(--pale); color: var(--blue); }
.fb-type-video { background: #fce4ec; color: #c2185b; }
.feedback-stars { color: var(--gold); font-size: .82rem; margin-bottom: 8px; }
.feedback-text { font-size: .83rem; color: var(--text); line-height: 1.7; font-style: italic; }
.feedback-video-thumb { width: 100%; height: 140px; background: linear-gradient(135deg,#0d47a1,#0288d1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; cursor: pointer; position: relative; overflow: hidden; }
.feedback-video-thumb::after { content: '▶'; font-size: 2.5rem; color: rgba(255,255,255,.9); }
.feedback-video-label { font-size: .78rem; color: var(--muted); font-style: italic; }
.feedback-reply { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 10px 13px; margin-top: 12px; display: flex; align-items: flex-start; gap: 9px; }
.feedback-reply-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.feedback-reply-text { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.feedback-reply-text strong { color: var(--navy); display: block; margin-bottom: 2px; font-size: .75rem; }

/* Feedback form */
.feedback-form-wrap { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 26px 22px; position: sticky; top: 90px; }
.feedback-form-wrap h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feedback-form-wrap p { font-size: .82rem; color: var(--muted); margin-bottom: 18px; }
.star-select { display: flex; gap: 6px; margin-bottom: 14px; }
.star-select span { font-size: 1.4rem; cursor: pointer; transition: transform .15s; }
.star-select span:hover { transform: scale(1.2); }
.wa-form-group { margin-bottom: 13px; }
.wa-form-group label { display: block; font-size: .77rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); border-radius: var(--rad-sm); font-family: var(--sans); font-size: .87rem; color: var(--text); outline: none; transition: border-color .2s; background: #fff; }
.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus { border-color: var(--blue); }
.wa-form-group textarea { resize: vertical; min-height: 80px; }
.upload-btn-wrap { position: relative; overflow: hidden; display: inline-block; }
.upload-btn-wrap input[type=file] { position: absolute; left: 0; top: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
#feedbackSuccess { display: none; background: #e8f5e9; border: 1px solid #a5d6a7; border-radius: 10px; padding: 13px 16px; color: #2e7d32; font-size: .84rem; font-weight: 600; margin-top: 14px; text-align: center; }

/* ── BROADCAST NOTICE ─────────────────────────────────────── */
.wa-broadcast-strip { background: linear-gradient(90deg,#1b5e20,#2e7d32); padding: 14px 0; }
.broadcast-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.broadcast-text { color: #fff; font-size: .85rem; display: flex; align-items: center; gap: 10px; }
.broadcast-text i { font-size: 1.1rem; color: #a5d6a7; }
.broadcast-text strong { color: #fff; }
.btn-broadcast { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.35); font-size: .8rem; padding: 8px 18px; }
.btn-broadcast:hover { background: rgba(255,255,255,.25); }

/* ── ADMIN WHATSAPP TOOLS PANEL ───────────────────────────── */
.admin-panel-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9500; align-items: center; justify-content: center; padding: 20px; }
.admin-panel-overlay.open { display: flex; }
.admin-panel { background: #fff; border-radius: 20px; max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 80px rgba(0,0,0,.3); animation: modalIn .35s cubic-bezier(.4,0,.2,1); position: relative; }
.admin-panel-head { background: linear-gradient(135deg,var(--navy),var(--blue)); padding: 22px 26px; border-radius: 20px 20px 0 0; display: flex; align-items: center; justify-content: space-between; }
.admin-panel-head h3 { font-family: var(--serif); font-size: 1.2rem; color: #fff; font-weight: 700; }
.admin-panel-head p { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: 2px; }
/* [removed duplicate close btn rule] */
.admin-body { padding: 24px 26px; display: flex; flex-direction: column; gap: 14px; }
.admin-msg-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 16px 18px; }
.admin-msg-card h4 { font-size: .84rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.admin-msg-card p { font-size: .78rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.admin-msg-card .wa-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.admin-msg-card input, .admin-msg-card select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: var(--rad-sm); font-family: var(--sans); font-size: .83rem; color: var(--text); outline: none; background: #fff; }
.admin-msg-card input:focus { border-color: var(--blue); }
.admin-tag { font-size: .62rem; font-weight: 700; padding: 2px 9px; border-radius: 100px; }
.tag-appt { background: var(--pale); color: var(--blue); }
.tag-lens { background: #e8f5e9; color: #2e7d32; }
.tag-remind { background: #fff3e0; color: #e65100; }
.tag-lab { background: #f3e5f5; color: #7b1fa2; }
.tag-broad { background: #e8eaf6; color: #3949ab; }

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media (max-width: 768px) {
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-form-wrap { position: static; }
  .admin-msg-card .wa-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW FEATURES — v2 additions
═══════════════════════════════════════════════════════════════ */

/* ── ORDER NOW / ONLINE STORE MODAL ──────────────────────── */
.store-modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:9000;align-items:center;justify-content:center;padding:16px;}
.store-modal-overlay.open{display:flex;}
.store-modal{background:#fff;border-radius:20px;padding:0;max-width:680px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:0 24px 80px rgba(0,0,0,.25);animation:modalIn .35s cubic-bezier(.4,0,.2,1);position:relative;}
.store-modal-head{background:linear-gradient(135deg,var(--navy),var(--blue));padding:28px 28px 22px;border-radius:20px 20px 0 0;position:sticky;top:0;z-index:2;}
.store-modal-head h3{font-family:var(--serif);font-size:1.4rem;font-weight:700;color:#fff;margin-bottom:4px;}
.store-modal-head p{font-size:.82rem;color:rgba(255,255,255,.65);}
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */
.store-tabs{display:flex;gap:0;border-bottom:1px solid var(--border);padding:0 24px;background:#fff;position:sticky;top:82px;z-index:1;}
.store-tab{padding:13px 18px;font-size:.82rem;font-weight:700;color:var(--muted);border-bottom:2px solid transparent;cursor:pointer;transition:var(--trans);background:none;border-top:none;border-left:none;border-right:none;}
.store-tab.active{color:var(--blue);border-bottom-color:var(--blue);}
.store-body{padding:22px 24px 28px;}
.store-panel{display:none;}
.store-panel.active{display:block;}
.store-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px;margin-bottom:20px;}
.store-item{background:var(--off);border:1px solid var(--border);border-radius:12px;padding:14px 13px;text-align:center;transition:var(--trans);}
.store-item:hover{border-color:var(--blue);box-shadow:var(--shadow);background:#fff;}
.store-item-icon{font-size:1.6rem;margin-bottom:8px;height:2rem;display:flex;align-items:center;justify-content:center;}
.store-item-name{font-size:.82rem;font-weight:700;color:var(--navy);margin-bottom:3px;}
.store-item-desc{font-size:.72rem;color:var(--muted);line-height:1.5;margin-bottom:10px;}
.store-item-btn{display:inline-flex;align-items:center;gap:5px;background:#25d366;color:#fff;border:none;border-radius:7px;padding:7px 13px;font-size:.73rem;font-weight:700;cursor:pointer;transition:var(--trans);}
.store-item-btn:hover{background:#1da851;}
.store-order-note{background:var(--pale);border:1px solid var(--border);border-radius:10px;padding:13px 16px;font-size:.8rem;color:var(--muted);line-height:1.7;margin-top:8px;}
.store-order-note strong{color:var(--navy);}

/* ── APPOINTMENT TIMINGS (INTL/NATIONAL/LOCAL) ────────────── */
#appointment-timings{background:#fff;}
.timing-tabs{display:flex;gap:0;border:1px solid var(--border);border-radius:var(--rad);overflow:hidden;margin-bottom:28px;width:fit-content;}
.timing-tab{padding:12px 24px;font-size:.83rem;font-weight:700;color:var(--muted);cursor:pointer;border:none;background:#fff;transition:var(--trans);}
.timing-tab.active{background:var(--blue);color:#fff;}
.timing-panels{}
.timing-panel{display:none;}
.timing-panel.active{display:block;}
.timing-grid-3{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;}
.timing-card{background:var(--off);border:1px solid var(--border);border-radius:var(--rad);padding:20px 18px;position:relative;overflow:hidden;}
.timing-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;}
.timing-intl .timing-card::before{background:linear-gradient(90deg,#1565c0,#42a5f5);}
.timing-natl .timing-card::before{background:linear-gradient(90deg,#00695c,#26a69a);}
.timing-locl .timing-card::before{background:linear-gradient(90deg,var(--blue),var(--sky));}
.timing-flag{font-size:1.6rem;margin-bottom:8px;}
.timing-zone{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin-bottom:4px;}
.timing-day{font-size:.82rem;font-weight:700;color:var(--navy);margin-bottom:2px;}
.timing-time{font-family:var(--serif);font-size:1rem;font-weight:700;color:var(--blue);}
.timing-phone{display:flex;align-items:center;gap:6px;margin-top:10px;font-size:.78rem;color:var(--muted);}
.timing-phone i{color:var(--sky);font-size:.72rem;}
.timing-phone a{color:var(--blue);font-weight:600;}
.timing-note{background:var(--pale);border-radius:10px;padding:14px 16px;font-size:.8rem;color:var(--muted);margin-top:18px;line-height:1.7;}

/* ── FEEDBACK / TESTIMONIALS V2 ───────────────────────────── */
.feedback-wrap{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:start;}
.feedback-list{display:flex;flex-direction:column;gap:18px;}
.feedback-card{background:var(--off);border:1px solid var(--border);border-radius:var(--rad);padding:20px;}
.feedback-card-head{display:flex;align-items:flex-start;gap:12px;margin-bottom:12px;}
.feedback-avatar{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--blue),var(--sky));color:#fff;font-weight:800;font-size:.83rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.feedback-meta{}
.feedback-name{font-size:.88rem;font-weight:700;color:var(--navy);}
.feedback-loc{font-size:.72rem;color:var(--muted);}
.feedback-stars{color:var(--gold);font-size:.82rem;margin-top:2px;}
.feedback-text{font-size:.83rem;color:var(--text);line-height:1.72;font-style:italic;margin-bottom:12px;}
/* video badge */
.feedback-video-badge{display:inline-flex;align-items:center;gap:6px;background:#fee2e2;color:#dc2626;font-size:.7rem;font-weight:700;padding:4px 11px;border-radius:100px;cursor:pointer;border:none;}
.feedback-video-badge i{font-size:.75rem;}
/* doctor reply */
.doctor-reply{background:linear-gradient(135deg,var(--pale),#f0f9ff);border:1px solid var(--border);border-radius:10px;padding:13px 15px;margin-top:10px;display:flex;align-items:flex-start;gap:10px;}
.reply-icon{width:30px;height:30px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-size:.75rem;flex-shrink:0;}
.reply-content{}
.reply-label{font-size:.65rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--blue);margin-bottom:2px;}
.reply-text{font-size:.79rem;color:var(--muted);line-height:1.6;}
/* feedback form */
.feedback-form-box{background:#fff;border:1px solid var(--border);border-radius:var(--rad);padding:24px;position:sticky;top:90px;}
.feedback-form-box h3{font-family:var(--serif);font-size:1.15rem;font-weight:700;color:var(--navy);margin-bottom:6px;}
.feedback-form-box p{font-size:.8rem;color:var(--muted);margin-bottom:18px;}
.star-picker{display:flex;gap:6px;margin-bottom:16px;}
.star-btn{font-size:1.5rem;background:none;border:none;cursor:pointer;color:#d1d5db;transition:color .15s;}
.star-btn.lit,.star-btn:hover{color:var(--gold);}
.fb-form-group{margin-bottom:12px;}
.fb-form-group label{display:block;font-size:.76rem;font-weight:700;color:var(--navy);margin-bottom:4px;}
.fb-form-group input,.fb-form-group select,.fb-form-group textarea{width:100%;padding:10px 13px;border:1.5px solid var(--border);border-radius:var(--rad-sm);font-family:var(--sans);font-size:.85rem;outline:none;transition:border-color .2s;background:#fff;color:var(--text);}
.fb-form-group input:focus,.fb-form-group textarea:focus{border-color:var(--blue);}
.fb-form-group textarea{resize:vertical;min-height:80px;}
.fb-success{display:none;background:#dcfce7;border:1px solid #86efac;border-radius:10px;padding:12px 16px;font-size:.83rem;color:#166534;margin-top:12px;font-weight:600;}

/* ── WA BROADCAST / COMMUNITY ─────────────────────────────── */
#wa-broadcast{background:linear-gradient(135deg,#064e3b,#065f46,#047857);}
.broadcast-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;}
.broadcast-left .label{color:rgba(255,220,100,.9);}
.broadcast-left .label::before{background:rgba(255,220,100,.9);}
.broadcast-left .heading{color:#fff;}
.broadcast-left .subtext{color:rgba(255,255,255,.6);margin-bottom:20px;}
.broadcast-features{display:flex;flex-direction:column;gap:11px;}
.bc-feat{display:flex;align-items:center;gap:12px;padding:12px 15px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);border-radius:11px;}
.bc-feat-icon{width:36px;height:36px;background:rgba(255,255,255,.15);border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:17px;flex-shrink:0;}
.bc-feat p{font-size:.8rem;color:rgba(255,255,255,.8);line-height:1.5;}
.bc-feat strong{color:#fff;}
.broadcast-right{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);border-radius:18px;padding:28px 24px;}
.bc-right-title{font-family:var(--serif);font-size:1.15rem;font-weight:700;color:#fff;margin-bottom:18px;}
.wa-msg-preview{display:flex;flex-direction:column;gap:10px;}
.wa-msg{background:rgba(255,255,255,.12);border-radius:10px 10px 10px 2px;padding:11px 14px;max-width:85%;}
.wa-msg.out{border-radius:10px 10px 2px 10px;margin-left:auto;background:#25d366;}
.wa-msg-label{font-size:.62rem;font-weight:700;color:rgba(255,255,255,.5);margin-bottom:3px;}
.wa-msg p{font-size:.78rem;color:#fff;line-height:1.55;}
.wa-msg-time{font-size:.6rem;color:rgba(255,255,255,.4);text-align:right;margin-top:3px;}
.bc-join-btn{display:flex;align-items:center;gap:10px;background:#25d366;color:#fff;border:none;border-radius:11px;padding:14px 22px;font-family:var(--sans);font-weight:700;font-size:.9rem;cursor:pointer;transition:var(--trans);margin-top:18px;width:100%;justify-content:center;}
.bc-join-btn:hover{background:#1da851;transform:translateY(-2px);}

/* ── AUTOMATED MESSAGES SECTION ──────────────────────────── */
#auto-messages{background:var(--off);}
.automsg-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(265px,1fr));gap:18px;}
.automsg-card{background:#fff;border:1px solid var(--border);border-radius:var(--rad);padding:20px 18px;transition:var(--trans);}
.automsg-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.automsg-icon{width:48px;height:48px;border-radius:13px;display:flex;align-items:center;justify-content:center;font-size:22px;margin-bottom:13px;}
.ac-green{background:#dcfce7;} .ac-blue{background:var(--pale);} .ac-gold{background:#fef9c3;}
.ac-red{background:#fee2e2;} .ac-purple{background:#f3e8ff;} .ac-teal{background:#ccfbf1;}
.ac-orange{background:#fff7ed;}
.automsg-card h4{font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:6px;}
.automsg-card p{font-size:.79rem;color:var(--muted);line-height:1.68;margin-bottom:12px;}
.automsg-preview{background:var(--off);border:1px solid var(--border);border-radius:9px;padding:10px 12px;font-size:.73rem;color:var(--text);line-height:1.6;font-style:italic;}
.automsg-preview::before{content:'💬 ';font-style:normal;}

/* ── ONLINE STORE SECTION (page) ──────────────────────────── */
#store{background:var(--off);}
.store-section-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center;}
.store-visual{background:linear-gradient(135deg,#0277bd,#29b6f6);border-radius:var(--rad);min-height:360px;display:flex;align-items:center;justify-content:center;padding:40px;position:relative;overflow:hidden;box-shadow:var(--shadow-lg);}
.store-visual-deco{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.1);}
.store-cats{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:18px 0;}
.store-cat{background:#fff;border:1px solid var(--border);border-radius:11px;padding:14px 13px;display:flex;align-items:center;gap:11px;transition:var(--trans);}
.store-cat:hover{border-color:var(--blue);box-shadow:var(--shadow);}
.store-cat-icon{width:38px;height:38px;border-radius:9px;background:var(--pale);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
.store-cat h5{font-size:.82rem;font-weight:700;color:var(--navy);margin-bottom:1px;}
.store-cat p{font-size:.72rem;color:var(--muted);}

/* ── RESPONSIVE ADDITIONS ─────────────────────────────────── */
@media(max-width:768px){
  .feedback-wrap{grid-template-columns:1fr;}
  .broadcast-grid{grid-template-columns:1fr;}
  .store-section-grid{grid-template-columns:1fr;}
  .timing-tab{padding:10px 14px;font-size:.76rem;}
}
@media(max-width:480px){
  .timing-grid-3{grid-template-columns:1fr 1fr;}
  .stat-item  { min-width: 50%; border-right: none; padding: 12px 6px; }
  .stat-num   { font-size: 1.5rem; }
  .stat-lbl   { font-size: .58rem; }
  .store-cats{grid-template-columns:1fr 1fr;}
  .store-grid{grid-template-columns:1fr 1fr;}
}

/* ═══════════════════════════════════════════════════════════════
   NEW FEATURE STYLES — Schedule · Feedback · Order · Admin
═══════════════════════════════════════════════════════════════ */

/* ── APPOINTMENT SCHEDULE ─────────────────────────────────── */
#schedule { background: #fff; }
.appt-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.appt-tab  { padding: 10px 22px; border-radius: 100px; border: 2px solid var(--border); background: var(--off); font-family: var(--sans); font-size: .84rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: var(--trans); }
.appt-tab.active, .appt-tab:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.appt-panel { display: none; }
.appt-panel.active { display: block; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
.appt-panel-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start; }
.appt-region-badge { display: inline-block; background: var(--pale); color: var(--blue); font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; }
.appt-region-badge.nat  { background: #fff3e0; color: #e65100; }
.appt-region-badge.intl { background: #f3e5f5; color: #7b1fa2; }
.appt-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.appt-desc  { font-size: .86rem; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.appt-times { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 16px; margin-bottom: 18px; }
.appt-time-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .83rem; }
.appt-time-row:last-child { border-bottom: none; }
.appt-time-row.emerg { color: var(--blue); font-weight: 700; }
.appt-time-label { color: var(--muted); font-weight: 600; }
.appt-time-val { color: var(--navy); font-weight: 700; font-family: var(--serif); font-size: .95rem; }
.appt-contact-row { display: flex; gap: 11px; flex-wrap: wrap; }
.appt-card-col { display: flex; flex-direction: column; gap: 14px; }
.appt-detail-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 18px 16px; transition: var(--trans); }
.appt-detail-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.appt-card-icon { font-size: 1.6rem; margin-bottom: 8px; }
.appt-detail-card h4 { font-family: var(--serif); font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.appt-detail-card p  { font-size: .79rem; color: var(--muted); line-height: 1.65; }
@media(max-width:768px){ .appt-panel-inner { grid-template-columns: 1fr; } }

/* ── FEEDBACK SECTION ─────────────────────────────────────── */
#feedback { background: var(--off); }
.feedback-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.feedback-form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 28px 24px; }
.feedback-form-box h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.star-select { display: flex; gap: 6px; margin: 6px 0 12px; }
.star-select span { font-size: 1.6rem; cursor: pointer; color: var(--gold); transition: transform .15s; line-height: 1; }
.star-select span:hover { transform: scale(1.2); }
.video-feedback-box { background: linear-gradient(135deg,#1a237e,#0288d1); border-radius: var(--rad); padding: 24px 22px; color: #fff; margin-bottom: 16px; text-align: center; }
.vfb-icon { font-size: 2.8rem; margin-bottom: 10px; }
.video-feedback-box h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 7px; }
.video-feedback-box p  { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.fb-reply-note { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 18px 18px; margin-bottom: 16px; text-align: center; }
.fb-reply-note h4 { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.fb-reply-note p  { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.fb-sample-replies { display: flex; flex-direction: column; gap: 14px; }
.fb-reply-card { background: #fff; border: 1px solid var(--border); border-radius: var(--rad); padding: 16px; }
.fb-reply-testi { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.fb-doctor-reply { display: flex; align-items: flex-start; gap: 10px; }
.fb-reply-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--navy),var(--blue)); color: #fff; font-size: .6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-align: center; }
.fb-reply-bubble { background: var(--pale); border-radius: 0 10px 10px 10px; padding: 10px 13px; font-size: .79rem; color: var(--text); line-height: 1.6; flex: 1; }
@media(max-width:768px){ .feedback-grid { grid-template-columns: 1fr; } }

/* ── ORDER MODAL ──────────────────────────────────────────── */
.order-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9000; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.order-modal-overlay.open { display: flex; }
.order-modal { background: #fff; border-radius: 20px; padding: 32px 28px; max-width: 520px; width: 100%; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.25); animation: modalIn .35s ease; max-height: 92vh; overflow-y: auto; }
/* [removed duplicate close btn rule] */
.order-modal-header { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.order-modal-logo   { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,var(--navy),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.order-tabs  { display: flex; gap: 6px; margin-bottom: 18px; }
.order-tab   { flex: 1; padding: 9px 14px; border-radius: var(--rad-sm); border: 2px solid var(--border); background: var(--off); font-family: var(--sans); font-size: .82rem; font-weight: 700; color: var(--muted); cursor: pointer; transition: var(--trans); }
.order-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.order-panel { display: none; }
.order-panel.active { display: block; }
.btn-order   { background: #ff6f00; color: #fff; border-color: #ff6f00; }
.btn-order:hover { background: #e65100; border-color: #e65100; transform: translateY(-2px); }

/* ── ADMIN PANEL ──────────────────────────────────────────── */
.admin-panel-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9500; align-items: flex-start; justify-content: flex-end; }
.admin-panel-overlay.open { display: flex; }
.admin-panel { background: #fff; width: 100%; max-width: 480px; height: 100vh; overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.2); display: flex; flex-direction: column; }
.admin-panel-head { background: var(--navy); padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.admin-panel-head h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.admin-panel-head p  { font-size: .72rem; color: rgba(255,255,255,.5); }
/* [removed duplicate close btn rule] */
.admin-body  { padding: 18px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
.admin-msg-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--rad); padding: 18px 16px; }
.admin-msg-card h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.admin-msg-card p  { font-size: .78rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.admin-msg-card input, .admin-msg-card select, .admin-msg-card textarea { width: 100%; padding: 9px 11px; border: 1.5px solid var(--border); border-radius: var(--rad-sm); font-family: var(--sans); font-size: .82rem; margin-bottom: 9px; outline: none; }
.admin-msg-card input:focus, .admin-msg-card select:focus { border-color: var(--blue); }
.admin-tag   { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 2px 8px; border-radius: 100px; }
.tag-broad   { background: #e8f5e9; color: #2e7d32; }
.tag-appt    { background: #e3f2fd; color: #1565c0; }
.tag-lens    { background: #fff3e0; color: #e65100; }
.tag-remind  { background: #f3e5f5; color: #7b1fa2; }
.tag-lab     { background: #e0f7fa; color: #006064; }

/* ── BROADCAST STRIP ──────────────────────────────────────── */
.wa-broadcast-strip { background: linear-gradient(135deg,#1b5e20,#2e7d32); padding: 22px 0; }
.broadcast-inner  { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.broadcast-text   { display: flex; align-items: flex-start; gap: 14px; flex: 1; }
.broadcast-text i { font-size: 1.8rem; color: #a5d6a7; flex-shrink: 0; margin-top: 2px; }
.broadcast-text strong { color: #fff; font-size: .92rem; display: block; margin-bottom: 3px; }
.btn-broadcast    { background: #fff; color: #2e7d32; border-color: #fff; font-weight: 700; flex-shrink: 0; }
.btn-broadcast:hover { background: #f1f8e9; }

/* ── ADMIN FLOATING TRIGGER ───────────────────────────────── */
#admin-trigger { position: fixed; bottom: 22px; left: 22px; z-index: 999; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(1,51,92,.45); transition: var(--trans); cursor: pointer; }
#admin-trigger:hover { background: var(--blue); transform: scale(1.1); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
#back-top { position: fixed; bottom: 152px; right: 22px; z-index: 999; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(1,51,92,.4); transition: var(--trans); opacity: 0; pointer-events: none; cursor: pointer; border: none; }
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--blue); transform: translateY(-3px); }

/* ── INAUGURATION BANNER ──────────────────────────────────── */
#inaug-banner { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.72); display: flex; align-items: center; justify-content: center; padding: 20px; }
#inaug-banner.hidden { display: none; }
.inaug-inner { background: linear-gradient(135deg,#01335c,#0288d1); border-radius: 20px; padding: 44px 36px; max-width: 520px; width: 100%; text-align: center; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.4); animation: modalIn .5s ease; }
/* [removed duplicate close btn rule] */
.inaug-icon { font-size: 3rem; margin-bottom: 14px; color: var(--gold); }
.inaug-inner h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.inaug-inner h2 em { color: var(--gold); font-style: italic; }
.inaug-inner p { font-size: .88rem; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 22px; }
.inaug-countdown { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; }
.inaug-cd-box { background: rgba(255,255,255,.12); border-radius: 10px; padding: 10px 14px; min-width: 56px; }
.inaug-cd-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.inaug-cd-lbl { font-size: .6rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.inaug-btns { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }

/* ── MODAL ANIMATION ──────────────────────────────────────── */
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(.96); } to { opacity: 1; transform: none; } }

/* ── DOCTOR INITIALS AVATAR ───────────────────────────────── */
.doctor-initials { width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: #fff; border: 3px solid rgba(255,255,255,.35); letter-spacing: .02em; }
.doc-init-1 { background: linear-gradient(135deg,#01335c,#29b6f6); }
.doc-init-2 { background: linear-gradient(135deg,#0d47a1,#29b6f6); }
.doc-init-3 { background: linear-gradient(135deg,#1b5e20,#26a69a); }

/* ── MOBILE MENU CLEAN ────────────────────────────────────── */
/* rules merged with main #mob-menu above */

/* ── TRUST ICON FA WRAPPER ────────────────────────────────── */
.trust-icon-fa { font-size: 1.3rem; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--pale); border-radius: 50%; color: var(--blue); }

/* ── ICON WRAPPER COLOR FIX ───────────────────────────────── */
.cond-icon-wrap i, .dept-icon i, .trust-icon-fa i { font-size: inherit; }
.cond-c1 .cond-icon-wrap i { color: #0288d1; }
.cond-c2 .cond-icon-wrap i { color: #006064; }
.cond-c3 .cond-icon-wrap i { color: #d32f2f; }
.cond-c4 .cond-icon-wrap i { color: #7b1fa2; }
.cond-c5 .cond-icon-wrap i { color: #e65100; }
.cond-c6 .cond-icon-wrap i { color: #1565c0; }
.about-feat-icon i { color: var(--gold); font-size: 1.1rem; }
.wa-modal-logo i { color: #fff; font-size: 1.4rem; }

/* ── STORE ITEM ICON FA ───────────────────────────────────── */
.store-item-icon i { font-size: 1.4rem; color: var(--blue); }

/* ── TESTI STARS FA ───────────────────────────────────────── */
.testi-stars i { color: var(--gold); font-size: .85rem; margin-right: 1px; }

/* ── FEEDBACK STAR SELECT ─────────────────────────────────── */
.fb-reply-testi .testi-stars i { font-size: .75rem; }

/* ── NAV ORDER BUTTON ─────────────────────────────────────── */
.nav-order-btn { background: var(--gold)!important; color: var(--navy)!important; border-radius: var(--rad-sm)!important; padding: 8px 14px!important; font-weight: 700!important; font-size: .8rem!important; display: inline-flex!important; align-items: center!important; gap: 6px!important; }
.nav-order-btn:hover { background: var(--golddark)!important; transform: translateY(-1px)!important; }

/* ── FEAT-ITEM ICON FA ────────────────────────────────────── */
.feat-item-icon i { font-size: 1.3rem; color: var(--blue); }
.feat-item-icon { font-size: 1.5rem; margin-bottom: 8px; }

/* ── APPT CONTACT ICON FA ─────────────────────────────────── */
.appt-contact-icon i { font-size: 1rem; }

/* ── APPT CARD ICON FA ────────────────────────────────────── */
.appt-card-icon i { font-size: 1.2rem; color: var(--blue); }
.appt-card-icon { font-size: 1.5rem; margin-bottom: 8px; }

/* ── AUTOMSG ICON FA ──────────────────────────────────────── */
.automsg-icon i { font-size: 1.1rem; color: #fff; }

/* ── BC FEAT ICON FA ──────────────────────────────────────── */
.bc-feat-icon i { font-size: 1rem; }

/* ── TIMING FLAG FA ───────────────────────────────────────── */
.timing-flag i { font-size: 1rem; }

/* ── STORE CAT ICON FA ────────────────────────────────────── */
.store-cat-icon i { font-size: 1.3rem; }

/* ── VFB ICON FA ──────────────────────────────────────────── */
.vfb-icon i { font-size: 2rem; color: rgba(255,255,255,.9); }

/* ── DROPDOWN with FA icons aligned ──────────────────────── */
.dropdown a { display: flex; align-items: center; padding: 10px 18px; font-size: .82rem; border-bottom: 1px solid var(--pale); }
.dropdown a:last-child { border-bottom: none; }

@media(max-width:480px){
  .stat-item  { padding: 12px 6px; }
  #back-top       { bottom: 82px; right: 16px; width: 40px; height: 40px; font-size: .88rem; }
  #wa-float       { bottom: 18px; right: 16px; width: 50px; height: 50px; font-size: 1.3rem; }
  #admin-trigger  { bottom: 140px; right: 16px; width: 42px; height: 42px; font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   AI CHATBOT — Balaji Eye Foundation
═══════════════════════════════════════════════════════════════ */

/* ── Trigger Button ─────────────────────────────────────────── */
#chat-trigger {
  position: fixed; bottom: 84px; right: 22px; z-index: 1001;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #01335c, #0288d1);
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; line-height: 1;
  box-shadow: 0 4px 20px rgba(2,136,209,.5), 0 0 0 0 rgba(2,136,209,.4);
  animation: chat-pulse 2.8s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease;
  -webkit-font-smoothing: antialiased;
}
#chat-trigger:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(2,136,209,.65); animation: none; }
#chat-trigger .chat-badge {
  position: absolute; top: -4px; right: -4px;
  background: #ef4444; color: #fff;
  font-size: .55rem; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; letter-spacing: 0;
  animation: badge-bounce .6s ease infinite alternate;
}
@keyframes chat-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(2,136,209,.45), 0 0 0 0 rgba(2,136,209,.35); }
  60%      { box-shadow: 0 4px 20px rgba(2,136,209,.45), 0 0 0 14px rgba(2,136,209,.0); }
}
@keyframes badge-bounce { from { transform: translateY(0); } to { transform: translateY(-2px); } }

/* ── Chat Window ─────────────────────────────────────────────── */
#chat-window {
  position: fixed; bottom: 160px; right: 24px; z-index: 1001;
  width: 380px; max-width: calc(100vw - 32px);
  height: 560px; max-height: calc(100vh - 180px);
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(1,31,56,.22), 0 4px 20px rgba(1,31,56,.12);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(.85) translateY(20px); opacity: 0;
  pointer-events: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(2,136,209,.15);
}
#chat-window.open {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
}

/* ── Chat Header ─────────────────────────────────────────────── */
.chat-header {
  background: linear-gradient(135deg, #01335c 0%, #0288d1 100%);
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.chat-header-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
  position: relative;
}
.chat-online-dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; border: 2px solid #fff;
}
.chat-header-info { flex: 1; min-width: 0; }
.chat-header-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.2; }
.chat-header-status { font-size: .68rem; color: rgba(255,255,255,.7); margin-top: 1px; display: flex; align-items: center; gap: 4px; }
.chat-header-status i { font-size: .58rem; color: #22c55e; }
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */

/* ── Quick Suggestions ───────────────────────────────────────── */
.chat-suggestions {
  padding: 10px 14px 6px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-suggestions-label { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid var(--border); background: #fff;
  font-size: .72rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.chip:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Messages Area ───────────────────────────────────────────── */
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px 14px;
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Message bubbles */
.msg { display: flex; gap: 8px; max-width: 100%; animation: msg-in .3s ease; }
@keyframes msg-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.msg.bot { align-items: flex-end; }
.msg.user { align-items: flex-end; flex-direction: row-reverse; }
.msg-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .72rem;
}
.msg-bubble {
  max-width: 78%; padding: 10px 14px;
  border-radius: 16px; font-size: .84rem; line-height: 1.6;
  position: relative;
}
.msg.bot  .msg-bubble { background: var(--off); color: var(--text); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.msg.user .msg-bubble { background: var(--blue); color: #fff; border-bottom-right-radius: 4px; }
.msg-time { font-size: .6rem; color: var(--muted); margin-top: 4px; text-align: right; }
.msg.user .msg-time { color: rgba(255,255,255,.65); }

/* Typing indicator */
.typing-indicator { display: flex; align-items: center; gap: 5px; padding: 10px 14px; }
.typing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); opacity: .5; animation: typing 1.2s ease infinite; }
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }

/* Action buttons inside bot messages */
.msg-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.msg-action-btn {
  padding: 6px 13px; border-radius: 100px; font-size: .73rem; font-weight: 700;
  border: 1.5px solid var(--blue); color: var(--blue); background: #fff;
  cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 5px;
}
.msg-action-btn:hover { background: var(--blue); color: #fff; }
.msg-action-btn.wa { border-color: #25d366; color: #25d366; }
.msg-action-btn.wa:hover { background: #25d366; color: #fff; }

/* ── Input Bar ───────────────────────────────────────────────── */
.chat-input-bar {
  padding: 12px 14px; border-top: 1px solid var(--border);
  display: flex; align-items: flex-end; gap: 9px;
  background: #fff; flex-shrink: 0;
}
.chat-input-wrap { flex: 1; position: relative; }
#chat-input {
  width: 100%; padding: 10px 40px 10px 14px;
  border: 1.5px solid var(--border); border-radius: 22px;
  font-family: var(--sans); font-size: .85rem; color: var(--text);
  outline: none; resize: none; line-height: 1.4; max-height: 100px;
  background: var(--off); transition: border-color .2s;
}
#chat-input:focus { border-color: var(--blue); background: #fff; }
#chat-input::placeholder { color: var(--muted); }
#chat-send {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .2s; flex-shrink: 0;
}
#chat-send:hover { background: var(--navy); transform: scale(1.08); }
#chat-send:disabled { background: var(--border); cursor: not-allowed; transform: none; }
.chat-powered {
  text-align: center; font-size: .6rem; color: var(--muted);
  padding: 4px 0 8px; border-top: 1px solid var(--pale); margin-top: 4px;
}
.chat-powered i { color: var(--blue); margin-right: 3px; }

/* ── Mobile adjustments ─────────────────────────────────────── */
@media(max-width:480px){
  #chat-window { bottom: 140px; right: 16px; width: calc(100vw - 32px); height: calc(100vh - 200px); border-radius: 16px; }
  #chat-trigger { bottom: 82px; right: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   BUTTON & ICON POLISH — QA Round 3
═══════════════════════════════════════════════════════════════ */

/* ── Admin staff button (left side) ─────────────────────────── */
#admin-btn {
  position: fixed; bottom: 22px; left: 22px; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(1,51,92,.5);
  transition: all .25s ease; cursor: pointer;
}
#admin-btn:hover { background: var(--blue); transform: scale(1.08); }
#admin-btn svg   { width: 20px; height: 20px; }

/* ── Back-to-top ─────────────────────────────────────────────── */
#back-top svg { width: 18px; height: 18px; }

/* ── Slide arrow SVG ─────────────────────────────────────────── */
.slide-arrow svg { display: block; }

/* ── Modal close buttons — all variants ─────────────────────── */
/* [removed duplicate SVG rule] */

/* ── Store modal close positioning fix ──────────────────────── */
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */

/* ── Order modal close ───────────────────────────────────────── */
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */

/* ── Inaug close ─────────────────────────────────────────────── */
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */

/* ── Admin panel close ───────────────────────────────────────── */
/* [removed duplicate close btn rule] */
/* [removed duplicate close btn rule] */

/* ── Hamburger button ────────────────────────────────────────── */
#mob-btn {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: var(--rad-sm);
  background: var(--pale); color: var(--navy);
  border: 1.5px solid var(--border);
  cursor: pointer;
}
#mob-btn svg { display: block; }

/* ── Chat send button SVG ────────────────────────────────────── */
#chat-send svg { display: block; }

/* ── WA float button — ensure clean rendering ───────────────── */
#wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1002;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.45rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .25s ease; text-decoration: none;
  -webkit-font-smoothing: antialiased;
}
#wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ── Chip buttons with icons ─────────────────────────────────── */
.chip { transition: all .2s ease; }
.chip i { font-size: .68rem; }

/* ── Service card link button ────────────────────────────────── */
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 7px 14px;
  font-size: .78rem; font-weight: 700; color: var(--blue);
  background: var(--pale); border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: all .2s ease; cursor: pointer;
}
.service-card-link:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.service-card-link i { font-size: .65rem; transition: transform .2s; }
.service-card:hover .service-card-link i { transform: translateX(3px); }

/* ── Mobile responsive for buttons ──────────────────────────── */
@media (max-width: 768px) {
  #mob-btn { display: flex; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  #wa-float      { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; right: 16px; }
  #chat-trigger  { width: 50px; height: 50px; font-size: 1.15rem; bottom: 78px; right: 16px; }
  #back-top      { width: 42px; height: 42px; bottom: 138px; right: 16px; }
  #admin-btn     { width: 44px; height: 44px; bottom: 18px; left: 16px; }
  #chat-window   { bottom: 140px; right: 16px; width: calc(100vw - 32px); }
  .slide-arrow   { width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════════════════════
   INLINE SVG ICON SYSTEM — replaces all Font Awesome icons
   Every <span class="ic"> wraps a pure SVG — zero FA dependency
═══════════════════════════════════════════════════════════════ */

/* Base icon span */
.ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.ic svg {
  width: 1em; height: 1em;
  display: block;
  fill: currentColor;
}

/* Star icons */
.ic-star {
  display: inline-block;
  width: .85em; height: .85em;
  vertical-align: -0.05em;
  fill: currentColor;
}
.feedback-stars .ic-star   { fill: var(--gold); }
.testi-stars .ic-star      { fill: var(--gold); }
.fb-reply-testi .ic-star   { fill: var(--gold); width: .7em; height: .7em; }

/* Star picker (feedback form) */
.star-select {
  display: flex; gap: 6px; margin-bottom: 16px;
}
.star-select .star-btn {
  font-size: 1.6rem; background: none; border: none;
  cursor: pointer; color: #d1d5db;
  display: flex; align-items: center;
  transition: color .15s; padding: 0;
}
.star-select .star-btn:hover,
.star-select .star-btn.lit { color: var(--gold); }
.star-select .star-btn .ic-star { fill: currentColor; width: 1.4em; height: 1.4em; }

/* WA tick double-check */
.wa-tick { display: inline-flex; align-items: center; margin-left: 2px; }

/* Chat trigger icon override */
#chat-trigger-icon { display: flex; align-items: center; justify-content: center; }
#chat-trigger-icon svg { width: 1.3rem; height: 1.3rem; fill: #fff; }

/* Ensure service icon-big SVG renders correctly */
.service-icon-big .ic svg { width: 1.8rem; height: 1.8rem; }
.service-icon-big .ic { width: 1.8rem; height: 1.8rem; }

/* Dept/cond icons */
.dept-icon .ic, .cond-icon-wrap .ic { font-size: 1.3rem; }
.dept-icon .ic svg, .cond-icon-wrap .ic svg { width: 1.3em; height: 1.3em; }

/* Trust strip */
.trust-icon-fa .ic { font-size: 1.3rem; color: var(--blue); }
.trust-icon-fa .ic svg { width: 1.3em; height: 1.3em; fill: var(--blue); }

/* About feat icons */
.about-feat-icon .ic svg { fill: var(--gold); width: 1.1em; height: 1.1em; }

/* Timing flag icons */
.timing-flag .ic, .timing-flag svg { width: 1.4rem; height: 1.4rem; }

/* FA icon in nav dropdown stays small */
.dropdown .ic svg { width: .9em; height: .9em; }

/* Button icons */
.btn .ic { width: 1em; height: 1em; }
.btn .ic svg { fill: currentColor; }

/* Footer social icons */
.footer-social a .ic svg { width: 1em; height: 1em; fill: currentColor; }

/* WA float button SVG */
#wa-float .ic svg { width: 1.5rem; height: 1.5rem; fill: #fff; }

/* Nav order btn icon */
.nav-order-btn .ic svg { fill: var(--navy); }


/* ═══════════════════════════════════════════════════════════════
   MODAL CLOSE BUTTONS — Single definitive ruleset
   All 6 modals: WA booking · Order · Store · Admin · Inaug · Chat
═══════════════════════════════════════════════════════════════ */

/* Shared base for all close buttons */
.wa-modal-close,
.order-modal-close,
.store-modal-close-btn,
.admin-close,
.inaug-close,
.chat-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all .2s ease;
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
}

/* Light modals (WA booking, Order) — dark X on light bg */
.wa-modal-close,
.order-modal-close {
  background: #f1f5f9;
  border: 1.5px solid #cbd5e1;
  color: #475569;
}
.wa-modal-close:hover,
.order-modal-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* Dark modals (Store, Admin, Inaug, Chat) — white X on dark bg */
.store-modal-close-btn,
.admin-close,
.inaug-close,
.chat-close-btn {
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
}
.store-modal-close-btn:hover,
.admin-close:hover,
.inaug-close:hover,
.chat-close-btn:hover {
  background: rgba(239,68,68,.85);
  border-color: rgba(239,68,68,.6);
  color: #fff;
}

/* Chat close is not absolute — it's in flexbox header */
.chat-close-btn {
  position: static;
  width: 36px; height: 36px;
}

/* SVG inside close buttons — always visible */
.wa-modal-close svg,
.order-modal-close svg,
.store-modal-close-btn svg,
.admin-close svg,
.inaug-close svg,
.chat-close-btn svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  flex-shrink: 0;
}

.admin-panel { position: relative; }
.store-modal { position: relative; }
