/* ═══════════════════════════════════════════════
   OMEC — Opeyemi Mega Eye Centre
   Website CSS — Django Template Version
   ═══════════════════════════════════════════════ */
:root {
  --navy: #1a2066;
  --navy-dark: #0f1440;
  --navy-light: #2a3280;
  --crimson: #c0202a;
  --crimson-light: #e03040;
  --gold: #d4900a;
  --gold-light: #f0aa20;
  --white: #ffffff;
  --off-white: #f8f9ff;
  --light-gray: #f0f2f8;
  --text-dark: #1a1a2e;
  --text-mid: #444466;
  --text-light: #888;
  --border: #dde3f0;
  --shadow: 0 4px 24px rgba(26,32,102,.10);
  --shadow-lg: 0 12px 48px rgba(26,32,102,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
p { line-height: 1.75; color: var(--text-mid); }

/* ── TOPBAR ── */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,.82); font-size: .82rem; padding: 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: stretch; gap: 0; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; padding: 10px 0; gap: 8px; color: rgba(255,255,255,.82); }
.topbar-right { display: flex; align-items: stretch; }
.tb-contact { display: flex; align-items: center; gap: 8px; padding: 0 22px; font-size: .82rem; font-weight: 600; color: var(--white); transition: opacity .2s; }
.tb-contact.email { background: rgba(255,255,255,.1); }
.tb-contact.phone { background: var(--crimson); }
.tb-contact:hover { opacity: .88; color: var(--white); }

/* ── NAV ── */
.main-nav { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; transition: box-shadow .3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.navbar-brand img { height: 60px; width: auto; }
.logo-text .logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.logo-text .logo-sub { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--crimson); font-weight: 600; }
.nav-links-wrap { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 13px; border-radius: 4px; font-size: .88rem; font-weight: 600; color: var(--text-dark); transition: all .2s; }
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--off-white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dd-btn { display: flex; align-items: center; gap: 5px; padding: 8px 13px; border-radius: 4px; font-size: .88rem; font-weight: 600; color: var(--text-dark); background: none; font-family: 'Inter',sans-serif; cursor: pointer; border: none; }
.nav-dd-btn:hover { color: var(--navy); background: var(--off-white); }
.dd-arrow { font-size: .62rem; transition: transform .25s; }
.nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }
.dd-menu { position: absolute; top: calc(100% + 6px); left: 0; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); min-width: 180px; padding: 8px 0; z-index: 600; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .22s; }
.nav-dropdown:hover .dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dd-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: .85rem; font-weight: 500; color: var(--text-dark); transition: all .15s; white-space: nowrap; }
.dd-menu a:hover { background: var(--off-white); color: var(--navy); padding-left: 24px; }

/* CTA buttons in nav */
.nav-cta { background: var(--crimson) !important; color: var(--white) !important; padding: 10px 18px !important; border-radius: 6px !important; font-weight: 700 !important; margin-left: 4px; }
.nav-cta:hover { background: var(--crimson-light) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(192,32,42,.3); }
.nav-call { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; background: var(--gold); color: var(--navy-dark) !important; border-radius: 6px; font-size: .87rem; font-weight: 700; margin-left: 6px; transition: all .25s; white-space: nowrap; }
.nav-call:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-portal { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; background: transparent; color: var(--navy) !important; border-radius: 6px; font-size: .85rem; font-weight: 700; margin-left: 4px; border: 1.5px solid var(--border); transition: all .25s; }
.nav-portal:hover { border-color: var(--navy); background: var(--off-white); }

/* Hamburger */
.navbar-toggler-btn { background: none; border: none; cursor: pointer; padding: 4px; }
.navbar-toggler-btn .bar { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; margin: 5px 0; transition: all .3s; }

/* Mobile menu */
.mobile-menu { background: var(--white); border-top: 1px solid var(--border); padding: 12px 0; }
.mobile-nav-link { display: flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: 1rem; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--border); }
.mobile-nav-link:last-child { border-bottom: none; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; width: 100%; height: 92vh; min-height: 540px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.slide.active { opacity: 1; }
.slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,14,60,.84) 0%, rgba(10,14,60,.55) 55%, rgba(10,14,60,.15) 100%); }
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; }
.slide-text { max-width: 620px; }
.slide-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,144,10,.18); border: 1px solid rgba(212,144,10,.35); color: var(--gold-light); padding: 6px 18px; border-radius: 40px; font-size: .82rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; }
.slide-text h1 { color: var(--white); margin-bottom: 18px; font-size: clamp(2rem,5vw,3.4rem); text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.slide-text p { color: rgba(255,255,255,.82); font-size: 1.08rem; margin-bottom: 32px; max-width: 500px; }
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-controls { position: absolute; bottom: 32px; right: 40px; display: flex; gap: 10px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.slider-dot.active { background: var(--gold); width: 30px; border-radius: 5px; }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; pointer-events: none; }
.slider-arrow { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); color: var(--white); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: all; transition: all .2s; backdrop-filter: blur(4px); }
.slider-arrow:hover { background: var(--crimson); border-color: var(--crimson); }
.slide-counter { position: absolute; top: 32px; right: 40px; color: rgba(255,255,255,.7); font-size: .9rem; font-weight: 600; z-index: 10; letter-spacing: 2px; }
.slide.active .slide-badge { animation: splashLetters .8s .1s ease both; }
.slide.active h1 { animation: splashFadeUp .9s .25s ease both; }
.slide.active p { animation: splashFadeUp .8s .45s ease both; }
.slide.active .slide-actions { animation: splashFadeUp .7s .65s ease both; }

/* ── BUTTONS ── */
.btn-primary-omec { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--crimson); color: var(--white); border-radius: 4px; font-size: .95rem; font-weight: 700; font-family: 'Inter',sans-serif; transition: all .25s; border: none; cursor: pointer; }
.btn-primary-omec:hover { background: var(--crimson-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,32,42,.35); color: var(--white); }
.btn-outline-omec { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border: 2px solid var(--white); color: var(--white); border-radius: 4px; font-size: .95rem; font-weight: 700; transition: all .25s; }
.btn-outline-omec:hover { background: var(--white); color: var(--navy); }
.btn-navy-omec { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: var(--navy); color: var(--white); border-radius: 4px; font-size: .95rem; font-weight: 700; transition: all .25s; border: none; cursor: pointer; }
.btn-navy-omec:hover { background: var(--navy-light); transform: translateY(-2px); color: var(--white); }

/* ── SECTION COMMONS ── */
.section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; font-size: clamp(1.7rem,3.5vw,2.4rem); }
.section-label { font-size: .78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.divider { width: 60px; height: 3px; background: linear-gradient(to right, var(--crimson), var(--gold)); margin: 16px auto; border-radius: 2px; }

/* ── ANNOUNCEMENT ── */
.announcement { background: var(--gold); color: var(--navy-dark); text-align: center; padding: 11px 24px; font-size: .88rem; font-weight: 600; }
.announcement a { color: var(--navy-dark); text-decoration: underline; margin-left: 12px; }

/* ── EQUIPMENT TICKER ── */
.equip-ticker { background: var(--navy-dark); padding: 28px 0; overflow: hidden; position: relative; }
.equip-ticker::before, .equip-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.equip-ticker::before { left: 0; background: linear-gradient(to right, var(--navy-dark), transparent); }
.equip-ticker::after { right: 0; background: linear-gradient(to left, var(--navy-dark), transparent); }
.equip-track { display: flex; gap: 0; width: max-content; animation: ticker 28s linear infinite; }
.equip-track:hover { animation-play-state: paused; }
.equip-item { display: flex; align-items: center; gap: 14px; padding: 0 40px; border-right: 1px solid rgba(255,255,255,.10); white-space: nowrap; flex-shrink: 0; }
.equip-emoji { font-size: 1.8rem; line-height: 1; }
.equip-name { font-size: .88rem; font-weight: 700; color: var(--white); letter-spacing: .3px; }
.equip-type { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 1px; letter-spacing: .5px; text-transform: uppercase; }
@keyframes ticker { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ── VISIT GUIDE ── */
.visit-guide { padding: 88px 0; background: var(--white); }
.visit-steps-wrap { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; margin-top: 10px; }
.visit-steps-wrap::before { content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 3px; background: linear-gradient(to right, var(--navy), var(--crimson), var(--gold)); z-index: 0; }
.vstep { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.vstep-circle { width: 88px; height: 88px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 18px; box-shadow: 0 6px 24px rgba(26,32,102,.18); border: 3px solid var(--white); }
.vstep:nth-child(1) .vstep-circle { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.vstep:nth-child(2) .vstep-circle { background: linear-gradient(135deg, #1a6a9a, #2a8abd); }
.vstep:nth-child(3) .vstep-circle { background: linear-gradient(135deg, #1a7a5a, #28a07a); }
.vstep:nth-child(4) .vstep-circle { background: linear-gradient(135deg, var(--gold), #e8a820); }
.vstep:nth-child(5) .vstep-circle { background: linear-gradient(135deg, var(--crimson), #e03040); }
.vstep-num { position: absolute; top: -8px; right: calc(50% - 50px); width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: .68rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid var(--white); }
.vstep h4 { font-size: .95rem; font-weight: 700; color: var(--navy); font-family: 'Inter',sans-serif; margin-bottom: 10px; }
.vstep p { font-size: .79rem; line-height: 1.65; color: var(--text-mid); }
.visit-note-strip { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 18px; margin-top: 52px; padding: 28px; background: var(--off-white); border-radius: 12px; border-left: 4px solid var(--navy); }
.vnote { display: flex; gap: 12px; align-items: flex-start; }
.vnote-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.vnote h5 { font-size: .85rem; font-weight: 700; color: var(--navy); font-family: 'Inter',sans-serif; margin-bottom: 3px; }
.vnote p { font-size: .79rem; margin: 0; line-height: 1.6; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: 8px; border: 1px solid var(--border); transition: all .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right,var(--navy),var(--crimson)); opacity: 0; transition: opacity .3s; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px 22px; }
.service-icon { width: 54px; height: 54px; border-radius: 10px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 16px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: .88rem; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--crimson); font-size: .86rem; font-weight: 600; margin-top: 14px; transition: gap .2s; }
.service-card:hover .read-more { gap: 10px; }

/* ── WHY SECTION ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 8px; background: rgba(26,32,102,.07); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.feature-text h4 { color: var(--navy); font-size: .93rem; font-family: 'Inter',sans-serif; font-weight: 600; margin-bottom: 4px; }
.feature-text p { font-size: .84rem; margin: 0; }
.why-image { background: linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%); border-radius: 12px; padding: 44px 36px; color: var(--white); position: relative; overflow: hidden; }
.why-image::after { content: '👁'; position: absolute; right: -20px; bottom: -30px; font-size: 10rem; opacity: .07; }
.award-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.award-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,.08); border-radius: 6px; font-size: .84rem; color: rgba(255,255,255,.9); }

/* ── HOME ABOUT ── */
.home-about { padding: 88px 0; }
.home-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.home-about-imgs { position: relative; height: 420px; }
.ha-img-main { width: 80%; height: 360px; object-fit: cover; border-radius: 12px; position: absolute; bottom: 0; right: 0; box-shadow: var(--shadow-lg); }
.ha-img-accent { width: 50%; height: 200px; object-fit: cover; border-radius: 10px; position: absolute; top: 0; left: 0; border: 5px solid var(--white); box-shadow: var(--shadow-lg); }
.ha-stat-badge { position: absolute; bottom: 0; left: 0; background: var(--navy); color: var(--white); border-radius: 10px; padding: 16px 20px; text-align: center; box-shadow: var(--shadow-lg); z-index: 2; }
.ha-stat-badge .num { font-size: 1.9rem; font-weight: 700; font-family: 'Playfair Display',serif; display: block; color: var(--gold); }
.ha-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.ha-highlight { display: flex; gap: 10px; align-items: flex-start; }
.ha-hl-icon { width: 36px; height: 36px; min-width: 36px; border-radius: 7px; background: rgba(26,32,102,.07); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.ha-hl-text h5 { font-size: .84rem; font-weight: 700; color: var(--navy); font-family: 'Inter',sans-serif; margin-bottom: 2px; }
.ha-hl-text p { font-size: .78rem; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: 10px; padding: 28px; border: 1px solid var(--border); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 12px; right: 20px; font-size: 5rem; color: var(--light-gray); font-family: 'Playfair Display',serif; line-height: 1; }
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 1rem; }
.testimonial-text { font-size: .9rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 18px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--navy),var(--navy-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: .94rem; }
.author-name { font-weight: 600; font-size: .9rem; color: var(--text-dark); }
.author-condition { font-size: .75rem; color: var(--text-light); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: .91rem; color: var(--navy); background: var(--white); border: none; cursor: pointer; font-family: 'Inter',sans-serif; }
.faq-q:hover { background: var(--off-white); }
.faq-icon { font-size: 1.2rem; transition: transform .3s; color: var(--crimson); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 20px 16px; font-size: .88rem; color: var(--text-mid); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); text-align: center; transition: box-shadow .3s; }
.team-card:hover { box-shadow: var(--shadow-lg); }
.team-avatar { height: 170px; background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-info { padding: 20px; }
.team-info h3 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.team-info .specialty { font-size: .78rem; color: var(--crimson); font-weight: 600; margin-bottom: 8px; }
.team-info p { font-size: .81rem; }

/* ── BOOKING ── */
.booking-section { background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%); padding: 88px 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.booking-info h2 { color: var(--white); margin-bottom: 14px; }
.booking-info p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.booking-steps { display: flex; flex-direction: column; gap: 18px; }
.booking-step { display: flex; gap: 14px; align-items: flex-start; }
.b-step-num { width: 36px; height: 36px; min-width: 36px; border-radius: 50%; background: var(--gold); color: var(--navy-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; }
.b-step-text h4 { color: var(--white); font-size: .9rem; font-family: 'Inter',sans-serif; font-weight: 600; margin-bottom: 3px; }
.b-step-text p { color: rgba(255,255,255,.6); font-size: .82rem; margin: 0; }
.booking-form-card { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: var(--shadow-lg); }
.booking-form-card h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.25rem; }

/* Wizard */
.wizard-progress { display: flex; align-items: center; margin-bottom: 28px; gap: 0; }
.wiz-pill { display: flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 40px; font-size: .82rem; font-weight: 700; transition: all .3s; color: var(--text-light); background: var(--off-white); }
.wiz-pill.active { background: var(--navy); color: var(--white); }
.wiz-pill.done { background: var(--crimson); color: var(--white); }
.wiz-line { flex: 1; height: 2px; background: var(--border); min-width: 20px; transition: background .3s; }
.wiz-line.done { background: var(--crimson); }
.wiz-panel { display: none; }
.wiz-panel.active { display: block; animation: fadeSlide .3s ease; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.svc-btn { border: 2px solid var(--border); border-radius: 8px; padding: 12px 8px; cursor: pointer; text-align: center; transition: all .2s; background: var(--white); font-family: 'Inter',sans-serif; }
.svc-btn:hover { border-color: var(--navy); background: var(--off-white); }
.svc-btn.selected { border-color: var(--navy); background: rgba(26,32,102,.06); }
.svc-icon { font-size: 1.5rem; display: block; margin-bottom: 6px; }
.svc-name { font-size: .75rem; font-weight: 600; color: var(--navy); }
.time-grid-wiz { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 10px; }
.time-btn-wiz { border: 1.5px solid var(--border); border-radius: 6px; padding: 9px 4px; font-size: .78rem; font-weight: 600; color: var(--text-mid); cursor: pointer; transition: all .2s; background: var(--white); font-family: 'Inter',sans-serif; }
.time-btn-wiz:hover { border-color: var(--navy); color: var(--navy); }
.time-btn-wiz.selected { background: var(--navy); border-color: var(--navy); color: var(--white); }
.wiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
.wiz-btn-back { color: var(--text-mid); font-size: .88rem; font-weight: 600; font-family: 'Inter',sans-serif; background: none; border: none; cursor: pointer; }
.wiz-btn-next { background: var(--navy); color: var(--white); padding: 11px 24px; border-radius: 6px; font-size: .9rem; font-weight: 600; font-family: 'Inter',sans-serif; border: none; cursor: pointer; transition: all .25s; }
.wiz-btn-next:hover { background: var(--navy-light); }
.wiz-btn-confirm { background: var(--crimson); color: var(--white); padding: 11px 24px; border-radius: 6px; font-size: .9rem; font-weight: 600; font-family: 'Inter',sans-serif; border: none; cursor: pointer; }
.wiz-form-group { margin-bottom: 14px; }
.wiz-form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.wiz-form-group input, .wiz-form-group select, .wiz-form-group textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'Inter',sans-serif; font-size: .88rem; color: var(--text-dark); background: var(--white); }
.wiz-form-group input:focus, .wiz-form-group select:focus { outline: none; border-color: var(--navy); }
.wiz-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wiz-summary { background: var(--off-white); border-radius: 8px; padding: 14px 16px; font-size: .83rem; margin-bottom: 16px; border-left: 3px solid var(--navy); }
.wiz-error { color: var(--crimson); font-size: .78rem; margin-top: 6px; display: none; }
.wiz-success { display: none; text-align: center; padding: 24px; }
.wiz-check { font-size: 3rem; margin-bottom: 12px; }

/* ── INSURANCE BADGES ── */
.insurance-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.insurance-badge { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 10px 18px; font-size: .83rem; font-weight: 600; color: var(--navy); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg,var(--crimson) 0%,#8a1020 100%); padding: 60px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.7rem,3vw,2.2rem); }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 56px 0 0; }
footer h6 { color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 16px; }
footer a { font-size: .84rem; color: rgba(255,255,255,.7); display: block; margin-bottom: 8px; transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-brand p { font-size: .84rem; line-height: 1.7; margin-top: 12px; }
.social-link { display: inline-flex; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.07); align-items: center; justify-content: center; margin-right: 6px; transition: background .2s; font-size: .9rem; }
.social-link:hover { background: var(--crimson); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.footer-policy-link { color: rgba(255,255,255,.5); font-size: .8rem; display: inline; margin: 0; }
.footer-policy-link:hover { color: var(--gold); }
.footer-hours { font-size: .82rem; display: flex; flex-direction: column; gap: 6px; }

/* ── ACCREDITATION BAR ── */
.accreditation-bar { background: var(--off-white); padding: 13px 0; border-top: 1px solid var(--border); }
.accreditation-bar .inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; font-size: .8rem; color: var(--text-mid); }
.accred-badge { display: flex; align-items: center; gap: 7px; font-weight: 500; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg,var(--navy-dark),var(--navy)); padding: 72px 0 60px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); animation: splashFadeUp .8s .1s ease both; }
.page-hero p { color: rgba(255,255,255,.75); margin-top: 10px; animation: splashFadeUp .8s .3s ease both; }
.page-hero .section-label { animation: splashLetters .8s .05s ease both; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(285px,1fr)); gap: 24px; }
.blog-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: all .3s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb { height: 185px; display: flex; align-items: center; justify-content: center; font-size: 3.4rem; position: relative; }
.blog-thumb-general { background: linear-gradient(135deg,#e8f0fe,#c5d6fc); }
.blog-thumb-glaucoma { background: linear-gradient(135deg,#fde8e8,#f9c5c5); }
.blog-thumb-nutrition { background: linear-gradient(135deg,#e8fde8,#c5f5c5); }
.blog-thumb-diabetes { background: linear-gradient(135deg,#fef3e8,#fdd5a5); }
.blog-tag { position: absolute; top: 10px; left: 10px; background: var(--navy); color: var(--white); font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 40px; text-transform: uppercase; }
.blog-body { padding: 22px; }
.blog-meta { font-size: .74rem; color: var(--text-light); margin-bottom: 8px; }
.blog-body h3 { color: var(--navy); font-size: .98rem; margin-bottom: 8px; line-height: 1.4; }
.blog-read { display: inline-flex; align-items: center; gap: 6px; color: var(--crimson); font-size: .82rem; font-weight: 600; margin-top: 12px; }

/* ── CONTACT ── */
.contact-form-card { background: var(--off-white); border-radius: 10px; padding: 34px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-detail-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 8px; background: rgba(26,32,102,.07); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-detail h4 { font-size: .8rem; color: var(--text-light); font-weight: 500; margin-bottom: 2px; }
.contact-detail p { font-size: .92rem; color: var(--text-dark); margin: 0; font-weight: 500; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; padding: 18px; background: var(--off-white); border-radius: 8px; }
.hours-item .day { font-weight: 600; color: var(--navy); font-size: .82rem; }
.hours-item .time { color: var(--text-mid); font-size: .82rem; }

/* ── FORM CONTROLS ── */
.form-control-omec { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: 6px; font-family: 'Inter',sans-serif; font-size: .9rem; color: var(--text-dark); background: var(--white); transition: border-color .2s; }
.form-control-omec:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,32,102,.08); }
.form-label-omec { display: block; font-size: .8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.form-group-omec { margin-bottom: 16px; }

/* ── TOAST ── */
.toast-notif { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: var(--white); padding: 14px 20px; border-radius: 8px; display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 9999; display: none; }
.toast-notif.success { background: #1a7a3c; }
.toast-notif.error { background: var(--crimson); }

/* ── ANIMATIONS ── */
@keyframes splashFadeUp { 0%{opacity:0;transform:translateY(40px);} 100%{opacity:1;transform:translateY(0);} }
@keyframes splashLetters { 0%{opacity:0;letter-spacing:12px;} 100%{opacity:1;letter-spacing:normal;} }
@keyframes fadeSlide { from{opacity:0;transform:translateX(14px);} to{opacity:1;transform:translateX(0);} }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1{transition-delay:.1s;} .delay-2{transition-delay:.2s;} .delay-3{transition-delay:.3s;} .delay-4{transition-delay:.4s;} .delay-5{transition-delay:.5s;} .delay-6{transition-delay:.6s;}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .nav-links-wrap { display: none; }
  .hamburger-visible { display: flex !important; }
}
@media (max-width: 900px) {
  .why-grid, .booking-grid, .home-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .visit-steps-wrap { grid-template-columns: 1fr 1fr; gap: 28px; }
  .visit-steps-wrap::before { display: none; }
  .vstep { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
  .vstep-circle { min-width: 64px; height: 64px; font-size: 1.5rem; margin-bottom: 0; }
  .home-about-imgs { height: 300px; }
  .ha-img-main { width: 85%; height: 260px; }
  .ha-img-accent { width: 55%; height: 160px; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-slider { height: 96vh; }
  .slide-counter, .slider-arrows { display: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .time-grid-wiz { grid-template-columns: repeat(3,1fr); }
  .wiz-form-row { grid-template-columns: 1fr; }
}
