/* ============================================================
   HAZARI EYE HOSPITAL — style.css
   Premium Healthcare | Version 7.0
   Palette: Navy #0B2545 | Blue #1565C0 | Accent #0EA5E9
============================================================ */

/* ─────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────── */
:root {
  --navy:       #0B2545;
  --navy-dark:  #061630;
  --navy-mid:   #0F3460;
  --blue:       #1565C0;
  --blue-md:    #1976D2;
  --accent:     #0EA5E9;
  --sky:        #38BDF8;
  --bg:         #FFFFFF;
  --bg-lt:      #F0F7FF;
  --bg-soft:    #E8F4FD;
  --bg-grey:    #F8FAFC;
  --bg-section: #F4F8FE;
  --text:       #1A2332;
  --text-2:     #4B5E7A;
  --text-3:     #8FA3BC;
  --white:      #FFFFFF;
  --border:     #D0DFF0;
  --border-lt:  #E8F0FA;
  --gold:       #D4A843;
  --gold-lt:    #E8C06A;

  --sh-xs:   0 1px 3px rgba(11,37,69,.06);
  --sh-sm:   0 2px 8px rgba(11,37,69,.08), 0 1px 3px rgba(11,37,69,.05);
  --sh-md:   0 6px 24px rgba(11,37,69,.10), 0 2px 8px rgba(11,37,69,.06);
  --sh-lg:   0 16px 48px rgba(11,37,69,.13), 0 6px 16px rgba(11,37,69,.08);
  --sh-xl:   0 24px 64px rgba(11,37,69,.16), 0 8px 24px rgba(11,37,69,.10);
  --sh-blue: 0 8px 32px rgba(21,101,192,.30);
  --sh-acc:  0 8px 32px rgba(14,165,233,.28);

  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease:   cubic-bezier(.4,0,.2,1);
  --t-fast: .15s;
  --t-base: .26s;
  --t-slow: .45s;
}

/* ─────────────────────────────────────
   2. RESET
───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text);
  letter-spacing: -.02em;
}
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: rgba(14,165,233,.15); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--r-xs); }

/* ─────────────────────────────────────
   3. LAYOUT
───────────────────────────────────── */
.section-py    { padding: 96px 0; }
.section-py-sm { padding: 64px 0; }
.section-py-lg { padding: 120px 0; }

/* ─────────────────────────────────────
   4. TYPOGRAPHY
───────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  flex-shrink: 0;
}
.h-section {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--navy);
}
.body-lg { font-size: 18px; line-height: 1.8; color: var(--text-2); }
.body-md { font-size: 16.5px; line-height: 1.78; color: var(--text-2); }
.body-sm { font-size: 14.5px; line-height: 1.72; color: var(--text-2); }
.divider {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 3px;
  margin: 0 0 30px;
}
.divider.center { margin: 0 auto 30px; }

/* ─────────────────────────────────────
   5. BUTTONS
───────────────────────────────────── */
.btn-h {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-base) var(--ease);
  letter-spacing: .01em;
  white-space: nowrap;
  line-height: 1;
}
.btn-h.btn-lg { padding: 15px 34px; font-size: 16px; }
.btn-h.btn-sm { padding: 9px 20px;  font-size: 13.5px; }

.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 2px 12px rgba(21,101,192,.22);
}
.btn-blue:hover {
  background: var(--navy-mid); border-color: var(--navy-mid);
  color: #fff; transform: translateY(-2px); box-shadow: var(--sh-blue);
}

.btn-accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 2px 14px rgba(14,165,233,.25);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
  color: #fff; transform: translateY(-2px); box-shadow: var(--sh-acc);
}

.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-2px); box-shadow: var(--sh-blue);
}

.btn-white {
  background: #fff; color: var(--navy); border-color: rgba(255,255,255,.4);
}
.btn-white:hover {
  background: rgba(255,255,255,.95); color: var(--navy);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-wa {
  background: #22C55E; color: #fff; border-color: #22C55E;
}
.btn-wa:hover {
  background: #16A34A; border-color: #16A34A;
  color: #fff; transform: translateY(-2px);
}

/* ─────────────────────────────────────
   6. TOP BAR
───────────────────────────────────── */
#top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  padding: 8px 0;
}
#top-bar a { color: rgba(255,255,255,.75); transition: color var(--t-fast); }
#top-bar a:hover { color: var(--sky); }
#top-bar .sep { width: 1px; height: 13px; background: rgba(255,255,255,.2); display: inline-block; vertical-align: middle; }

/* ─────────────────────────────────────
   7. NAVIGATION
───────────────────────────────────── */
#main-nav {
  background: #fff;
  border-bottom: 1px solid var(--border-lt);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--t-base) ease;
}
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(11,37,69,.10); border-bottom-color: transparent; }
#main-nav .container {
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
#main-nav .container > .d-flex {
  width: 100%; /* fixes toggler not reaching the right edge on mobile */
}
.nav-logo { flex-shrink: 0; padding: 8px 0; min-width: 0; }
.nav-logo img { height: 56px; width: auto; max-width: 220px; object-fit: contain; display: block; }

/* Desktop nav */
#navMain {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
}
.nav-link-h {
  font-family: var(--font-head);
  font-weight: 500; font-size: 15px;
  color: var(--text) !important;
  padding: 22px 13px !important;
  display: block; position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-link-h::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
  transform-origin: left; border-radius: 2px;
}
.nav-link-h:hover,
.nav-link-h.active { color: var(--blue) !important; }
.nav-link-h:hover::after,
.nav-link-h.active::after { transform: scaleX(1); }

.nav-appt-btn {
  background: linear-gradient(135deg, var(--blue), var(--accent)) !important;
  color: #fff !important;
  padding: 10px 20px !important; border-radius: 50px;
  font-weight: 700 !important; font-size: 14px !important;
  font-family: var(--font-head) !important;
  box-shadow: 0 2px 14px rgba(14,165,233,.2);
  margin-left: 6px;
  transition: all var(--t-base) !important;
}
.nav-appt-btn:hover {
  opacity: .92; transform: translateY(-1px) !important;
  box-shadow: var(--sh-acc) !important; color: #fff !important;
}
.nav-appt-btn::after { display: none !important; }

.nav-toggler {
  background: none;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  cursor: pointer; padding: 7px 10px;
  color: var(--navy); font-size: 1.4rem;
  transition: all var(--t-fast);
  margin-left: auto; /* guarantees the toggler pins to the right regardless of sibling order/width */
  flex-shrink: 0;
}
.nav-toggler:hover { background: var(--bg-lt); border-color: var(--accent); }

/* Mega menu */
.mega-wrap { position: static !important; }
.mega-drop {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: var(--sh-xl);
  display: none; z-index: 999;
  padding: 36px 0 44px;
  animation: megaFade .2s ease both;
}
@keyframes megaFade { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
.mega-wrap:hover .mega-drop,
.mega-wrap:focus-within .mega-drop { display: block; }
.mega-label {
  font-size: 11px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy);
  border-bottom: 1px solid var(--border-lt);
  padding-bottom: 10px; margin-bottom: 14px;
}
.mega-link {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text-2);
  padding: 6px 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mega-link i { color: var(--accent); font-size: 13px; width: 16px; flex-shrink: 0; }
.mega-link:hover { color: var(--blue); padding-left: 6px; }

/* ─────────────────────────────────────
   8. HERO
───────────────────────────────────── */
#hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  background: linear-gradient(145deg, #EAF3FE 0%, #F0F7FF 35%, #E8F4FD 65%, #F4F9FF 100%);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(21,101,192,.09) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; opacity: .7;
}
#hero::before {
  content: '';
  position: absolute;
  width: 650px; height: 650px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.10) 0%, transparent 65%);
  right: -180px; bottom: -160px; pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.07) 0%, transparent 65%);
  left: -80px; top: -80px; pointer-events: none;
}
.hero-content-wrap { position: relative; z-index: 2; padding: 80px 0 60px; }
.hero-img-col { position: relative; z-index: 2; padding: 60px 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(21,101,192,.08); border: 1px solid rgba(21,101,192,.18);
  color: var(--blue); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  font-family: var(--font-head);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2); flex-shrink: 0;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}
.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800; letter-spacing: -.035em;
  line-height: 1.07; color: var(--navy); margin-bottom: 10px;
}
.hero-h1 .line-blue {
  background: linear-gradient(135deg, var(--blue) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub-h {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--text-2);
  letter-spacing: -.01em; margin-bottom: 24px;
  font-family: var(--font-head);
}
.hero-desc { font-size: 17px; color: var(--text-2); line-height: 1.82; max-width: 530px; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; align-items: center; }

.hero-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 26px 6px;
  margin-top: 4px;
}
.hero-stats-card .hero-stat {
  text-align: center;
  padding: 0 6px;
  border-right: 1px solid var(--border-lt);
}
.hero-stats-card .hero-stat:last-child { border-right: none; }
.hero-stat-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bg-lt); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin: 0 auto 10px;
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.7rem; font-weight: 800;
  color: var(--navy); line-height: 1; letter-spacing: -.03em;
}
.hero-stat-num .sfx {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stat-label { font-size: 12px; color: var(--text-2); margin-top: 5px; font-weight: 500; line-height: 1.35; }

.hero-img-main-wrap { position: relative; max-width: 540px; margin-left: auto; }
.hero-img-main { width: 100%; height: 560px; object-fit: cover; border-radius: var(--r-2xl); box-shadow: var(--sh-xl); display: block; }
.hero-card {
  position: absolute; background: #fff; border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border-lt); min-width: 170px; z-index: 3;
}
.hero-card-1 { left: -28px; bottom: 90px; }
.hero-card-2 { right: -14px; top: 70px; }
.hero-card-icon { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero-card-title { font-weight: 700; font-size: 13.5px; color: var(--navy); line-height: 1.3; font-family: var(--font-head); }
.hero-card-sub   { font-size: 12px; color: var(--text-2); margin-top: 1px; }

/* ─────────────────────────────────────
   9. TRUST STRIP
───────────────────────────────────── */
#trust-strip {
  background: #fff; border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt); padding: 26px 0; z-index: 3; position: relative;
}
.trust-pill { display: flex; align-items: center; gap: 15px; padding: 8px 0; }
.trust-pill-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--bg-lt); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
  border: 1px solid var(--border-lt); transition: all var(--t-base);
}
.trust-pill:hover .trust-pill-icon { background: var(--blue); color: #fff; border-color: var(--blue); transform: scale(1.06); }
.trust-pill-label { font-weight: 700; font-size: 15px; color: var(--navy); line-height: 1.3; font-family: var(--font-head); }
.trust-pill-sub   { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.trust-div { width: 1px; height: 44px; background: var(--border); margin: 0 auto; }

/* ─────────────────────────────────────
   10. ABOUT
───────────────────────────────────── */
#about-intro { background: var(--bg-section); }
.about-feat { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.about-feat-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--bg-lt); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid var(--border-lt); transition: all var(--t-base);
}
.about-feat:hover .about-feat-icon { background: var(--blue); color: #fff; border-color: var(--blue); }
.about-feat-t { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 3px; line-height: 1.4; font-family: var(--font-head); }
.about-feat-d { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.img-hover-zoom { overflow: hidden; }
.img-hover-zoom img { transition: transform var(--t-slow) var(--ease); }
.img-hover-zoom:hover img { transform: scale(1.04); }
.dr-qual-chip {
  display: inline-flex; align-items: center;
  background: rgba(21,101,192,.07); border: 1px solid rgba(21,101,192,.16);
  color: var(--blue); font-size: 12.5px; font-weight: 600;
  padding: 4px 13px; border-radius: 50px; margin: 3px 3px 3px 0;
  font-family: var(--font-head);
}

/* ─────────────────────────────────────
   11. TEAM CARDS
───────────────────────────────────── */
.team-card {
  background: #fff; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border-lt);
  box-shadow: var(--sh-xs); transition: all var(--t-base); height: 100%;
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: transparent; }
.team-photo-wrap { overflow: hidden; }
.team-photo { transition: transform var(--t-slow); }
.team-card:hover .team-photo { transform: scale(1.04); }
.team-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-spec { font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }

/* ─────────────────────────────────────
   12. SERVICES
───────────────────────────────────── */
#services { background: #fff; }
.service-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 32px 26px 28px;
  border: 1px solid var(--border-lt); box-shadow: var(--sh-xs);
  height: 100%; position: relative; overflow: hidden;
  transition: all var(--t-base);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.service-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: rgba(21,101,192,.12); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: var(--r-md);
  background: var(--bg-lt); border: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; color: var(--blue); margin-bottom: 20px;
  transition: all var(--t-base); overflow: hidden;
}
.service-card:hover .service-icon { background: var(--blue); color: #fff; border-color: var(--blue); }
.service-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.service-text { font-size: 14.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: var(--accent); font-family: var(--font-head); transition: gap var(--t-fast), color var(--t-fast); }
.service-link:hover { gap: 9px; color: var(--blue); }

/* ─────────────────────────────────────
   13. TECHNOLOGY
───────────────────────────────────── */
#technology { background: var(--bg-section); }
.tech-card {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--border-lt); box-shadow: var(--sh-xs);
  padding: 24px 20px; height: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: all var(--t-base);
}
.tech-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: rgba(14,165,233,.22); }
.tech-img-box {
  width: 100%; height: 130px; border-radius: var(--r-md);
  background: var(--bg-grey); border: 1px solid var(--border-lt);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 16px; transition: all var(--t-base);
}
.tech-card:hover .tech-img-box { background: var(--bg-lt); border-color: rgba(14,165,233,.22); }
.tech-img-box img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.tech-equip-name { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 5px; }
.tech-equip-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ─────────────────────────────────────
   14. DR HAZARI
───────────────────────────────────── */
#dr-hazari { background: var(--bg-lt); }
.dr-photo-wrap { position: relative; height: 100%; min-height: 480px; }
.dr-photo-main { width: 100%; height: 100%; border-radius: var(--r-2xl); box-shadow: var(--sh-xl); display: block; object-fit: cover; object-position: top; border: 4px solid #fff; }
.dr-exp-card {
  position: absolute; bottom: 20px; left: -16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; padding: 18px 22px; border-radius: var(--r-lg); box-shadow: var(--sh-lg); z-index: 2;
}
.dr-exp-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--sky); line-height: 1; }
.dr-exp-lb  { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .75; margin-top: 4px; }
.dr-kpi {
  text-align: center; padding: 22px 14px; background: #fff;
  border-radius: var(--r-lg); border: 1px solid var(--border-lt);
  box-shadow: var(--sh-xs); transition: all var(--t-base);
}
.dr-kpi:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.dr-kpi-num {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.dr-kpi-lb { font-size: 12.5px; color: var(--text-2); margin-top: 5px; font-weight: 500; }

/* ─────────────────────────────────────
   15. OPTICAL CENTRE
───────────────────────────────────── */
#optical { background: #fff; }
.optical-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--r-2xl); box-shadow: var(--sh-lg); display: block; }
.optical-lens-card {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: var(--r-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--sh-lg); border: 1px solid rgba(21,101,192,.1);
}
.optical-lens-img { height: 50px; width: auto; object-fit: contain; border-radius: var(--r-sm); }
.optical-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 16px; line-height: 1.65; color: var(--text); }
.optical-check .bi { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.optical-check strong { color: var(--navy); }

/* ─────────────────────────────────────
   16. PATIENT JOURNEY
───────────────────────────────────── */
#journey { background: var(--bg-section); }
.journey-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--border-lt); box-shadow: var(--sh-xs);
  height: 100%; transition: all var(--t-base);
}
.journey-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: rgba(14,165,233,.2); }
.journey-num-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(21,101,192,.28);
}
.journey-icon-ring {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-lt); border: 1px solid var(--border);
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; margin: 0 auto 14px;
}
.journey-step-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.journey-step-text  { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }

/* ─────────────────────────────────────
   17. TESTIMONIALS
───────────────────────────────────── */
#testimonials { background: #fff; }
.testi-card {
  background: var(--bg-section); border-radius: var(--r-xl);
  padding: 34px 28px; border: 1px solid var(--border-lt);
  height: 100%; position: relative; transition: all var(--t-base);
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); background: #fff; border-color: rgba(21,101,192,.12); }
.testi-quot { position: absolute; top: 20px; right: 24px; font-size: 3.5rem; color: rgba(14,165,233,.1); line-height: 1; font-family: Georgia, serif; pointer-events: none; }
.testi-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text  { font-size: 15.5px; color: var(--text); line-height: 1.88; margin-bottom: 22px; font-style: italic; }
.testi-name  { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--navy); }
.testi-role  { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.testi-avatar-ph {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--font-head);
}

/* Swiper */
.swiper-button-next, .swiper-button-prev {
  width: 44px !important; height: 44px !important; border-radius: 50%;
  background: #fff !important; box-shadow: var(--sh-md);
  color: var(--navy) !important; border: 1px solid var(--border-lt);
  transition: all var(--t-base);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--blue) !important; color: #fff !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 13px !important; font-weight: 800 !important; }
.swiper-pagination-bullet { background: var(--border); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ─────────────────────────────────────
   18. BLOG
───────────────────────────────────── */
#blog { background: var(--bg-section); }
.blog-card { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border-lt); box-shadow: var(--sh-xs); overflow: hidden; height: 100%; transition: all var(--t-base); }
.blog-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); border-color: transparent; }
.blog-img-box { height: 200px; overflow: hidden; background: var(--bg-soft); }
.blog-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-img-box img { transform: scale(1.05); }
.blog-cat { display: inline-flex; background: rgba(21,101,192,.08); color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 12px; border-radius: 50px; font-family: var(--font-head); }
.blog-body { padding: 24px 26px 26px; }
.blog-meta { font-size: 13px; color: var(--text-2); margin-bottom: 10px; display: flex; gap: 8px; align-items: center; }
.blog-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.38; transition: color var(--t-fast); }
.blog-card:hover .blog-title { color: var(--blue); }
.blog-excerpt { font-size: 14.5px; color: var(--text-2); line-height: 1.72; }
.blog-link { display: inline-flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 700; color: var(--accent); margin-top: 16px; transition: gap var(--t-fast), color var(--t-fast); font-family: var(--font-head); }
.blog-link:hover { gap: 9px; color: var(--blue); }

/* ─────────────────────────────────────
   19. INSURANCE
───────────────────────────────────── */
#insurance { background: #fff; }
.ins-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 20px 18px; min-height: 80px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-lt); box-shadow: var(--sh-xs);
  transition: all var(--t-base); text-align: center;
}
.ins-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(14,165,233,.22); }
.ins-name { font-weight: 700; font-size: 14px; color: var(--text-2); font-family: var(--font-head); }

/* ─────────────────────────────────────
   20. FAQ
───────────────────────────────────── */
#faq { background: var(--bg-section); }
.faq-item { background: #fff; border-radius: var(--r-lg); border: 1px solid var(--border-lt); margin-bottom: 10px; overflow: hidden; transition: box-shadow var(--t-base); }
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-item.open { border-color: rgba(21,101,192,.2); box-shadow: var(--sh-md); }
.faq-btn {
  width: 100%; background: none; border: none;
  padding: 20px 24px; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 16.5px;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; line-height: 1.45; transition: color var(--t-fast);
}
.faq-btn:hover { color: var(--blue); }
.faq-icon-box { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-lt); border: 1px solid var(--border); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; transition: all var(--t-base); }
.faq-item.open .faq-icon-box { background: var(--blue); border-color: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-body { display: none; padding: 0 24px 20px; font-size: 16px; color: var(--text-2); line-height: 1.85; }
.faq-body.open { display: block; animation: faqIn .25s ease both; }
@keyframes faqIn { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:none; } }

/* ─────────────────────────────────────
   21. APPOINTMENT SECTION
───────────────────────────────────── */
#appointment {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 50%, #0D3B7A 100%);
  position: relative; overflow: hidden;
}
#appointment::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 65%);
  right: -200px; bottom: -200px; pointer-events: none;
}
#appointment::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  left: -100px; top: -100px; pointer-events: none;
}
.appt-info-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.appt-info-icon { width: 42px; height: 42px; border-radius: var(--r-sm); background: rgba(255,255,255,.1); color: var(--sky); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; border: 1px solid rgba(255,255,255,.12); }
.appt-info-lbl { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.appt-info-val { font-size: 15.5px; color: #fff; font-weight: 700; margin-top: 2px; font-family: var(--font-head); }
.appt-form-box { background: #fff; border-radius: var(--r-2xl); padding: 44px 38px; box-shadow: var(--sh-xl); position: relative; z-index: 2; }
.appt-form-box .form-label { font-family: var(--font-head); font-weight: 700; font-size: 12.5px; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.appt-form-box .form-control,
.appt-form-box .form-select { font-family: var(--font-body); font-size: 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 12px 14px; background: var(--bg-grey); color: var(--text); transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast); }
.appt-form-box .form-control:focus,
.appt-form-box .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14,165,233,.12); background: #fff; outline: none; }

/* ─────────────────────────────────────
   22. MODAL
───────────────────────────────────── */
.modal-hd {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 20px 26px; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-hd .modal-title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
.modal-hd .btn-close { filter: invert(1) brightness(2); }

/* ─────────────────────────────────────
   23. FOOTER — PREMIUM
───────────────────────────────────── */
footer {
  background: #050F1F;
  color: #A8BFCF;
  font-family: var(--font-body);
}

/* Top border accent */
footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 50%, var(--blue) 100%);
}

.footer-top { padding: 72px 0 56px; }

/* Logo */
.footer-logo img {
  height: 48px; width: auto; object-fit: contain;
  filter: brightness(1.15) contrast(1.05);
}

/* Description text */
.footer-desc {
  font-size: 14.5px;
  color: #8CA8BE;
  line-height: 1.88;
  margin-top: 18px;
  max-width: 290px;
}

/* Column headings */
.footer-col-hd {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-hd::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
}

/* Footer links */
footer ul li { margin-bottom: 11px; }
footer ul li a {
  font-size: 14.5px;
  color: #8CA8BE;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
footer ul li a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-fast);
  display: inline-block;
  vertical-align: middle;
}
footer ul li a:hover { color: #FFFFFF; padding-left: 4px; }
footer ul li a:hover::before { width: 10px; }

/* Contact rows */
.footer-contact-row {
  display: flex; gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px; font-size: 14.5px;
}
.footer-contact-row .bi {
  color: var(--accent);
  flex-shrink: 0; margin-top: 3px; font-size: 15px;
  width: 18px; text-align: center;
}
.footer-contact-row div,
.footer-contact-row span { color: #8CA8BE; }
.footer-contact-row a { color: #C8DCE8; transition: color var(--t-fast); }
.footer-contact-row a:hover { color: #FFFFFF; }

/* Social icons */
.f-social { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.f-social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: #8CA8BE;
  align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--t-base);
}
.f-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(14,165,233,.35);
}

/* Map placeholder */
.footer-map-box {
  background: rgba(255,255,255,.04);
  border-radius: var(--r-md);
  min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: #4A6880; font-size: 13px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--t-base);
}
.footer-map-box:hover { border-color: rgba(14,165,233,.25); background: rgba(14,165,233,.05); }
.footer-map-box .bi { font-size: 2rem; color: rgba(14,165,233,.4); }

/* Footer divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 0;
}

/* Bottom bar */
.footer-bottom {
  padding: 20px 0; font-size: 13.5px;
  color: #4A6880;
  background: rgba(0,0,0,.15);
}
.footer-bottom a {
  color: #4A6880;
  transition: color var(--t-fast);
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--sky); }
.footer-bottom .footer-legal { display: flex; gap: 20px; align-items: center; }
.footer-bottom .footer-legal a { position: relative; }
.footer-bottom .footer-legal a + a::before {
  content: '·';
  position: absolute; left: -12px;
  color: rgba(255,255,255,.15);
}

/* ─────────────────────────────────────
   24. FLOATING BUTTONS
───────────────────────────────────── */
#float-bar {
  position: fixed; right: 22px; bottom: 90px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-pill {
  display: flex; align-items: center; gap: 8px;
  border-radius: 50px; padding: 11px 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: var(--sh-lg);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.float-pill:hover { transform: scale(1.05) translateY(-2px); box-shadow: var(--sh-xl); }
.float-wa   { background: #22C55E; color: #fff; }
.float-call { background: var(--navy); color: #fff; }

/* ─────────────────────────────────────
   25. CHATBOT
───────────────────────────────────── */
#chatbot-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 950;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; cursor: pointer; box-shadow: var(--sh-xl);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
#chatbot-fab:hover { transform: scale(1.08); }
#chatbot-fab .ic-open  { display: block; }
#chatbot-fab .ic-close { display: none; }
#chatbot-fab.is-open .ic-open  { display: none; }
#chatbot-fab.is-open .ic-close { display: block; }

#chatbot-win {
  position: fixed; right: 24px; bottom: 88px; z-index: 940;
  width: 350px; max-width: calc(100vw - 48px);
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); border: 1px solid var(--border-lt);
  display: none; flex-direction: column; overflow: hidden;
}
#chatbot-win.is-open { display: flex; animation: chatIn .25s ease both; }
@keyframes chatIn { from { opacity:0; transform:translateY(10px) scale(.97); } to { opacity:1; transform:none; } }
.chat-hd { background: linear-gradient(135deg, var(--navy), var(--blue)); padding: 16px 18px; display: flex; align-items: center; gap: 11px; }
.chat-av  { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #fff; }
.chat-nm  { font-weight: 700; font-size: 14.5px; color: #fff; font-family: var(--font-head); }
.chat-st  { font-size: 12px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 5px; }
.chat-st::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.chat-msgs { padding: 14px; max-height: 280px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-bub { padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.6; max-width: 86%; }
.chat-bub.bot  { background: var(--bg-section); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-bub.user { background: var(--blue); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-qr { padding: 0 14px 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.chat-qr-btn { background: none; border: 1px solid var(--border); border-radius: 50px; padding: 5px 12px; font-size: 12.5px; font-weight: 600; color: var(--blue); cursor: pointer; transition: all var(--t-fast); font-family: var(--font-head); }
.chat-qr-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.chat-inp-row { padding: 12px 14px; border-top: 1px solid var(--border-lt); display: flex; gap: 8px; }
.chat-inp { flex: 1; border: 1.5px solid var(--border); border-radius: 50px; padding: 9px 14px; font-size: 13.5px; outline: none; transition: border-color var(--t-fast); }
.chat-inp:focus { border-color: var(--accent); }
.chat-send { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .85rem; transition: background var(--t-fast); }
.chat-send:hover { background: var(--accent); }

/* ─────────────────────────────────────
   26. SCROLL TOP
───────────────────────────────────── */
#scroll-top {
  position: fixed; left: 22px; bottom: 22px; z-index: 900;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--sh-md);
  transition: background var(--t-fast), transform var(--t-fast);
}
#scroll-top:hover { background: var(--blue); transform: translateY(-3px); }
#scroll-top.show { display: flex; }

/* ─────────────────────────────────────
   27. SCROLL REVEAL ANIMATIONS
───────────────────────────────────── */
.reveal, .reveal-l, .reveal-r, .reveal-s {
  transition-timing-function: var(--ease);
  transition-property: opacity, transform;
}
.reveal   { opacity:0; transform:translateY(22px);  transition-duration:.6s; }
.reveal-l { opacity:0; transform:translateX(-30px); transition-duration:.65s; }
.reveal-r { opacity:0; transform:translateX(30px);  transition-duration:.65s; }
.reveal-s { opacity:0; transform:scale(.94);         transition-duration:.55s; }
.reveal.in, .reveal-l.in, .reveal-r.in, .reveal-s.in { opacity:1; transform:none; }
.d1 { transition-delay:.07s !important; }
.d2 { transition-delay:.14s !important; }
.d3 { transition-delay:.21s !important; }
.d4 { transition-delay:.28s !important; }
.d5 { transition-delay:.35s !important; }
.d6 { transition-delay:.42s !important; }

/* Hero stagger */
.ha1 { animation: heroUp .8s ease both .05s; }
.ha2 { animation: heroUp .8s ease both .20s; }
.ha3 { animation: heroUp .8s ease both .35s; }
.ha4 { animation: heroUp .8s ease both .50s; }
.ha5 { animation: heroUp .8s ease both .65s; }
.ha-img { animation: heroSc .9s ease both .25s; }
@keyframes heroUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes heroSc { from { opacity:0; transform:scale(.95); } to { opacity:1; transform:scale(1); } }

.float-anim { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }

.pulse-anim { animation: pulseCTA 2.8s ease infinite; }
@keyframes pulseCTA { 0%,100% { box-shadow:0 2px 14px rgba(14,165,233,.25); } 50% { box-shadow:0 4px 28px rgba(14,165,233,.5); } }

.no-scrollbar::-webkit-scrollbar { display:none; }
.no-scrollbar { -ms-overflow-style:none; scrollbar-width:none; }

/* ─────────────────────────────────────
   28. DESKTOP NAV FIX
───────────────────────────────────── */
@media (min-width: 1025px) {
  #navMain { display: flex !important; flex-direction: row !important; align-items: center !important; }
}
@media (max-width: 1024px) {
  #navMain {
    display: none !important; flex-direction: column !important;
    align-items: flex-start !important;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border-lt);
    border-bottom: 2px solid var(--border-lt);
    padding: 12px 0 20px; box-shadow: var(--sh-lg); z-index: 999;
  }
  #navMain.open { display: flex !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal,.reveal-l,.reveal-r,.reveal-s { opacity:1; transform:none; }
}

/* ─────────────────────────────────────
   29. INNER PAGE HERO (used by contact.html, about.html, etc.)
───────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 440px; display: flex; align-items: center;
  background: var(--navy);
  padding: 100px 0 44px;
}
.page-hero-bgimg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 88% 20%, rgba(14,165,233,.22) 0%, transparent 45%),
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 32%, rgba(11,37,69,.94) 42%, rgba(11,37,69,.72) 54%, rgba(11,37,69,.28) 68%, transparent 82%);
}
.page-hero-ring {
  position: absolute; z-index: 1; right: 6%; top: 50%; transform: translateY(-50%);
  width: 220px; height: 220px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.18);
  pointer-events: none;
}
.page-hero .hero-grid-dots { z-index: 1; opacity: .35; }
.page-hero .container { position: relative; z-index: 3; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; margin-bottom: 20px; }
.page-breadcrumb a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); text-decoration: none; transition: color var(--t-fast); }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb i.bi-chevron-right { font-size: 11px; color: rgba(255,255,255,.4); }
.page-breadcrumb .current { color: #fff; font-weight: 600; }
.page-hero-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 4vw, 3rem); color: #fff; letter-spacing: -.02em; margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.page-hero-rule { width: 56px; height: 4px; background: linear-gradient(90deg,var(--accent),var(--sky)); border-radius: 2px; margin-bottom: 18px; }
.page-hero-sub { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; max-width: 520px; }

/* ─────────────────────────────────────
   30. CONTACT PAGE
───────────────────────────────────── */
.contact-info-card {
  background: #fff; border: 1px solid var(--border-lt); border-radius: var(--r-lg);
  padding: 26px 22px; height: 100%; text-align: center;
  box-shadow: var(--sh-xs); transition: all var(--t-base);
}
.contact-info-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(21,101,192,.2); }
.contact-info-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--bg-lt); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-info-title { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--navy); margin-bottom: 6px; }
.contact-info-val { font-size: 13.5px; color: var(--text-2); line-height: 1.6; }
.contact-info-val a { color: var(--text-2); text-decoration: none; }
.contact-info-val a:hover { color: var(--blue); }

.contact-map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--border-lt); height: 100%; min-height: 550px; }
.contact-map-wrap iframe { width: 100%; height: 100%; min-height: 550px; display: block; border: 0; }

.contact-side-card {
  background: var(--bg-lt); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 26px;
}
.contact-hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-day { color: var(--text-2); font-weight: 500; }
.contact-hours-time { color: var(--navy); font-weight: 700; }

/* ─────────────────────────────────────
   31. TIMELINE (about.html milestones)
───────────────────────────────────── */
.timeline { display: flex; justify-content: space-between; position: relative; gap: 8px; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 5%; right: 5%; height: 2px; background: var(--border); z-index: 0; }
.timeline-item { flex: 1; text-align: center; position: relative; z-index: 1; }
.timeline-dot { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin: 0 auto 16px; box-shadow: var(--sh-sm); transition: all var(--t-base); }
.timeline-item:hover .timeline-dot { background: var(--blue); color: #fff; transform: scale(1.08); }
.timeline-year { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.timeline-label { font-size: 12.5px; color: var(--text-2); line-height: 1.5; max-width: 140px; margin: 0 auto; }
