/* MODALS & OVERLAYS — Booking Modal, Order Modal, Store Modal, Admin Panel, Inaug Banner, Float, Back-to-Top */
/* ═══════════════════════════════════════════════════════════════ */

/* ── 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; }
}


/* ── 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; }
}


/* ── 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);}


/* ── 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; }
}

