/* ========================================
   REVIEW LIFE FINANCIAL - Main Stylesheet
   Colors: #043a00 (dark green), #fdd33d (gold)
   Fonts: Archivo (body), Mulish (headings)
   ======================================== */

:root {
  --blue:       #043a00;
  --blue-dark:  #022200;
  --blue-light: #e6f0e6;
  --yellow:     #fdd33d;
  --yellow-dark:#e6be2a;
  --text:       #7a7a7a;
  --dark:       #1e1e1e;
  --white:      #ffffff;
  --light-bg:   #f9f9f9;
  --border:     #e5e5e5;
  --font-body:  'Archivo', sans-serif;
  --font-head:  'Mulish', sans-serif;
  --font-slab:  'Roboto Slab', serif;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--dark); line-height: 1.25; font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

/* ── TOP BAR ────────────────────────────── */
.top-bar {
  background: var(--blue);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.7); flex-shrink: 0; }
.top-bar-item span { font-weight: 500; }
.top-bar-social { display: flex; gap: 14px; align-items: center; }
.top-bar-social a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color .2s; display: flex; align-items: center; }
.top-bar-social a:hover { color: var(--yellow); }
.top-bar-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ── HEADER / NAV ───────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.site-logo img { height: 70px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 4px;
  transition: background 0.2s linear, color 0.2s linear;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu .active > a { background: var(--blue-light); color: var(--blue); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 300ms ease-out, transform 300ms ease-out, visibility 300ms ease-out;
  z-index: 100;
}
.nav-menu li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a { padding: 9px 18px; font-size: 13.5px; color: var(--text); transition: background 0.2s, color 0.2s; }
.nav-dropdown a:hover { background: var(--blue-light); color: var(--blue); }

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  color: var(--dark) !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  margin-left: 10px;
  transition: background .2s !important;
}
.btn-quote:hover { background: var(--yellow-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: var(--blue);
  border: none;
  padding: 10px;
  border-radius: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; }

/* ── BUTTONS ────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 26px; border-radius: 4px; font-family: var(--font-head); font-weight: 700; font-size: 14px; cursor: pointer; border: none; transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s; text-align: center; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--yellow); color: var(--dark); }
.btn-primary:hover { background: var(--yellow-dark); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: var(--blue); }

/* ── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Single static hero slide (bg set inline) */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
}
/* Multi-slide hero backgrounds */
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 500ms ease;
  will-change: opacity;
}
.hero-slide-bg.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,58,0,0.82) 0%, rgba(2,34,0,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 110px 20px 90px;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: #fff;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: background .2s; }
.hero-dot.active { background: var(--yellow); }

/* ── FEATURE CARDS (3 col below hero) ──── */
.features-strip { background: #043a00; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.12); }
.feature-card {
  background: #043a00;
  padding: 48px 36px;
  text-align: center;
  transition: box-shadow .2s, background .2s;
  border-bottom: 4px solid var(--yellow);
}
.feature-card:hover { background: #022200; box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.feature-icon { width: 80px; height: 80px; margin: 0 auto 22px; background: rgba(255,255,255,0.1); border-radius: 50%; padding: 14px; }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.feature-card h3 { font-family: var(--font-head); font-size: 20px; color: #fff; margin-bottom: 14px; font-weight: 700; }
.feature-card p { font-size: 14.5px; color: rgba(255,255,255,0.75); margin-bottom: 22px; line-height: 1.7; }

/* ── STATS / QUOTE SECTION ──────────────── */
.quote-section {
  background: var(--blue-dark);
  color: #fff;
  padding: 80px 0;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; }
.quote-photos { display: flex; gap: 16px; }
.quote-photos img { border-radius: 6px; width: 50%; object-fit: cover; }
.quote-box { text-align: center; }
.quote-counter { font-family: var(--font-head); font-size: 56px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.quote-counter-lbl { font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 24px; }
.blockquote { font-family: var(--font-slab); font-size: 18px; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.65; margin-bottom: 14px; }
.blockquote-attr { font-size: 14px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.06em; }
.quote-img-right { display: flex; flex-direction: column; gap: 16px; }
.quote-img-right img { border-radius: 6px; object-fit: cover; }

/* ── ABOUT ──────────────────────────────── */
.about-section { background: #f0f6f0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 8px; width: 85%; box-shadow: 0 12px 40px rgba(4,58,0,0.15); }
.about-img-badge {
  position: absolute; bottom: -20px; right: 0;
  background: var(--yellow);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  width: 45%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-badge-num { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.about-badge-txt { font-size: 12px; font-weight: 700; color: var(--blue-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.about-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--blue); margin-bottom: 12px; }
.about-h { font-size: clamp(22px, 2.5vw, 34px); color: var(--dark); margin-bottom: 18px; }
.about-body { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.about-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.about-check { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; color: var(--dark); }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon svg { width: 11px; height: 11px; fill: #fff; }
.partner-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--blue-light); border: 1px solid rgba(4,58,0,0.2);
  border-radius: 6px; padding: 16px 22px; margin-top: 24px;
}
.partner-badge-num { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--blue); line-height: 1; }
.partner-badge-txt { font-size: 13px; color: var(--text); line-height: 1.45; }
.partner-badge-txt strong { color: var(--dark); }

/* ── SERVICES ───────────────────────────── */
.services-section { background: var(--light-bg); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--blue); margin-bottom: 10px; }
.section-h { font-size: clamp(22px, 2.8vw, 36px); color: var(--dark); }
.section-sub { font-size: 15px; color: var(--text); margin-top: 12px; max-width: 600px; margin-inline: auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover { box-shadow: 0 10px 36px rgba(4,58,0,0.16); transform: translateY(-5px); }
.service-card-img { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-icon {
  position: absolute; bottom: -22px; right: 20px;
  width: 50px; height: 50px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-card-icon img { width: 28px; height: 28px; object-fit: contain; }
.service-card-body { padding: 36px 24px 24px; }
.service-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--blue); margin-bottom: 12px; font-weight: 700; }
.service-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }

/* ── COUNTERS SECTION ───────────────────── */
.counters-section {
  background: var(--blue);
  padding: 80px 0;
  color: #fff;
}
.counters-header { text-align: center; margin-bottom: 60px; }
.counters-header h2 { color: #fff; font-size: clamp(22px, 2.8vw, 36px); }
.counters-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.counter-item { padding: 20px 10px; }
.counter-num { font-family: var(--font-head); font-size: 46px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.counter-lbl { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; line-height: 1.4; }

/* ── APPOINTMENT ────────────────────────── */
.appointment-section { background: var(--light-bg); }
.appointment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.appt-text h2 { font-size: clamp(22px, 2.5vw, 34px); color: var(--dark); margin-bottom: 18px; }
.appt-text p { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 28px; }
.appt-cta-box {
  background: var(--blue);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.appt-cta-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.appt-cta-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.appt-cta-phone { font-family: var(--font-head); font-size: 20px; font-weight: 900; color: var(--yellow); }
.appt-visual { position: relative; }
.appt-visual img { border-radius: 8px; width: 100%; }
.appt-graphic { position: absolute; bottom: -20px; right: -20px; width: 120px; }

/* ── WHY CHOOSE ─────────────────────────── */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 20px; }
.why-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--blue);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.why-card:hover { box-shadow: 0 10px 32px rgba(4,58,0,0.12); transform: translateY(-5px); }
.why-icon { width: 70px; height: 70px; margin: 0 auto 20px; }
.why-icon img { width: 100%; height: 100%; object-fit: contain; }
.why-card h3 { font-family: var(--font-head); font-size: 18px; color: var(--blue); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text); line-height: 1.7; }
.why-bottom { text-align: center; margin-top: 40px; }

/* ── BENEFITS DETAIL ────────────────────── */
.benefits-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.benefits-intro { text-align: center; margin-bottom: 48px; }
.benefits-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-col {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.benefit-col-header {
  background: var(--blue);
  padding: 24px 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.benefit-col-icon { width: 40px; height: 40px; flex-shrink: 0; }
.benefit-col-icon img { width: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.benefit-col-header h3 { font-family: var(--font-head); font-size: 17px; color: #fff; font-weight: 700; line-height: 1.3; }
.benefit-col-header p { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; line-height: 1.6; }
.benefit-col-body { padding: 24px; }
.benefit-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.benefit-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── TESTIMONIALS ───────────────────────── */
.testimonials-section { background: var(--light-bg); }
.testi-carousel { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .4s ease; }
.testi-slide { min-width: 100%; }
.testi-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--blue);
}
.testi-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-quote::before { content: '\201C'; font-size: 28px; color: var(--blue); line-height: 0; vertical-align: -12px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--yellow); flex-shrink: 0; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--dark); }
.testi-role { font-size: 12px; color: var(--text); }
.testi-nav { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background .2s; border: none; }
.testi-dot.active { background: var(--blue); }
.testi-arrows { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.testi-arrow { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--blue); background: transparent; color: var(--blue); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.testi-arrow:hover { background: var(--blue); color: #fff; }

/* ── PARTNER LOGOS ──────────────────────── */
.partners-section { background: var(--white); padding: 60px 0; border-top: 1px solid var(--border); }
.partners-head { text-align: center; margin-bottom: 36px; }
.partners-head .partner-meta { font-family: var(--font-head); font-size: 15px; color: var(--text); margin-bottom: 6px; }
.partners-head .partner-meta strong { color: var(--dark); }
.partners-logo-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; }
.partner-logo { width: 110px; height: 70px; display: flex; align-items: center; justify-content: center; filter: grayscale(100%); opacity: 0.6; transition: all .2s; }
.partner-logo:hover { filter: none; opacity: 1; }
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ── WHAT WE OFFER ──────────────────────── */
.offer-section { background: var(--light-bg); border-top: 1px solid var(--border); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.offer-text-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--blue); margin-bottom: 10px; }
.offer-text h2 { font-size: clamp(22px, 2.5vw, 34px); color: var(--dark); margin-bottom: 18px; }
.offer-text p { font-size: 15px; color: var(--text); line-height: 1.75; }
.offer-logo-img { width: 100%; max-width: 360px; margin: 0 auto; }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { }
.footer-logo img { height: 60px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-desc { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: all .2s; }
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 18px 0; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.35); transition: color .2s; }
.footer-legal a:hover { color: var(--yellow); }

/* ── FLOATING BUTTONS ───────────────────── */
.floating-call {
  position: fixed; bottom: 80px; left: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-size: 22px;
  animation: pulse 2s infinite;
}
.floating-wa {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-size: 26px;
}
.scroll-top {
  position: fixed; bottom: 20px; left: 20px; z-index: 999;
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--blue); color: #fff; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.scroll-top.visible { display: flex; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.8); } }

/* ── PAGE HERO (inner pages) ──────────────*/
.page-hero {
  background: var(--blue);
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(4, 58, 0, 0.72);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 14px; font-family: var(--font-head); font-weight: 700; }
.page-hero-subtitle { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 620px; margin: 0 auto 14px; line-height: 1.65; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── INNER PAGE CONTENT ──────────────────*/
.page-content { padding: 80px 0; }
.page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-text h2 { font-size: clamp(20px, 2.3vw, 30px); color: var(--dark); margin-bottom: 16px; font-family: var(--font-head); }
.page-text p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.page-img img { border-radius: 10px; width: 100%; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.page-img-circle { display: flex; align-items: center; justify-content: center; }
.page-img-circle img { width: 100%; max-width: 420px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }

/* ── SERVICE CARDS (sub-pages) ───────────*/
.service-cards-sub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card-sub { background: var(--white); border-radius: 8px; padding: 28px 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; border-top: 4px solid var(--blue); }
.service-card-sub:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.service-card-sub .card-icon { width: 60px; height: 60px; margin-bottom: 18px; }
.service-card-sub h3 { font-family: var(--font-head); font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.service-card-sub p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.service-card-sub a { color: var(--blue); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.service-card-sub a:hover { color: var(--blue-dark); }

/* ── EDUCATION CENTER SCHEDULE ───────────*/
.schedule-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.schedule-card { background: var(--white); border-radius: 8px; padding: 28px 24px; box-shadow: 0 2px 14px rgba(0,0,0,0.07); border-left: 4px solid var(--blue); }
.schedule-day { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 10px; }
.schedule-title { font-family: var(--font-head); font-size: 17px; color: var(--dark); margin-bottom: 8px; font-weight: 700; }
.schedule-time { font-size: 14px; color: var(--text); }

/* ── ABOUT PAGE ──────────────────────────*/
.about-stat-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: #fff; border-radius: 50px; padding: 10px 20px; font-size: 14px; font-weight: 600; margin-top: 20px; }
.about-counter-big { font-size: clamp(40px, 5vw, 64px); font-weight: 900; color: var(--blue); font-family: var(--font-head); line-height: 1; }
.about-quote { font-style: italic; font-size: 15px; color: var(--text); border-left: 3px solid var(--yellow); padding-left: 16px; margin: 20px 0; line-height: 1.7; }

/* ── CONTACT PAGE ───────────────────────── */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px 24px; text-align: center; border-top: 4px solid var(--blue); }
.contact-card-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-card-icon svg { width: 24px; height: 24px; fill: var(--blue); }
.contact-card h3 { font-family: var(--font-head); font-size: 16px; color: var(--blue); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text); line-height: 1.6; }
.contact-card a { color: var(--blue); font-weight: 600; }

/* ── EDUCATION CENTER ───────────────────── */
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.edu-card { background: var(--white); border-radius: 8px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border-top: 4px solid var(--blue); }
.edu-card h3 { font-family: var(--font-head); font-size: 17px; color: var(--blue); margin-bottom: 10px; }
.edu-card p { font-size: 14px; color: var(--text); line-height: 1.7; }
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.schedule-table th { background: var(--blue); color: #fff; padding: 12px 16px; text-align: left; font-family: var(--font-head); font-size: 13px; }
.schedule-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.schedule-table tr:nth-child(even) td { background: var(--light-bg); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar-left { gap: 12px; }
  nav .nav-menu, .nav-desktop { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 16px; gap: 4px; z-index: 200; }
  .nav-menu.open .nav-dropdown { position: static; box-shadow: none; border: none; opacity: 0; visibility: hidden; max-height: 0; transform: none; transition: none; padding-left: 16px; overflow: hidden; }
  .nav-menu.open li.open .nav-dropdown { opacity: 1; visibility: visible; max-height: 300px; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .about-grid, .appointment-grid, .offer-grid, .page-grid, .quote-grid { grid-template-columns: 1fr; }
  .why-grid, .benefits-grid-3, .contact-cards { grid-template-columns: 1fr; }
  .testi-inner { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section, .section-sm { padding: 60px 0; }
  .hero { min-height: 480px; }
  .hero-content { padding: 70px 20px 60px; }
  .quote-photos { flex-direction: column; }
  .about-img-badge { position: static; width: 100%; margin-top: 16px; }
  .edu-grid { grid-template-columns: 1fr; }
  .service-cards-sub { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 240px; padding: 70px 0 50px; }
  .page-hero h1 { font-size: 28px; }
  .page-img-circle img { max-width: 280px; }
  .stats-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .top-bar-left { font-size: 11px; }
  .hero h1 { font-size: 28px; }
  .counter-num { font-size: 36px; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

/* ── SCROLL REVEAL ANIMATIONS ────────────── */
/* anim-hidden no longer used — content always visible, animations are additive */

/* Keyframes matching Elementor's animation library */
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown  { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft  { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes zoomIn      { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }

.anim-running.anim-fadeIn      { animation: fadeIn      0.7s ease both; }
.anim-running.anim-fadeInUp    { animation: fadeInUp    0.7s ease both; }
.anim-running.anim-fadeInDown  { animation: fadeInDown  0.7s ease both; }
.anim-running.anim-fadeInLeft  { animation: fadeInLeft  0.7s ease both; }
.anim-running.anim-fadeInRight { animation: fadeInRight 0.7s ease both; }
.anim-running.anim-zoomIn      { animation: zoomIn      0.6s ease both; }

@media (prefers-reduced-motion: reduce) {
  [class*="anim-running"] { animation: none !important; }
}

/* ── PARTNER LOGOS MARQUEE ───────────────── */
.partners-logo-strip.marquee-active {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  justify-content: flex-start;
  gap: 0;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
.partners-logo-strip.marquee-active .partner-logo {
  flex-shrink: 0;
  min-width: 130px;
  margin: 0 20px;
}
.partners-logo-strip.marquee-active:hover { animation-play-state: paused; }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FEATURE CARD hover ──────────────────── */
.feature-card { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.feature-card:hover { box-shadow: 0 10px 36px rgba(4,58,0,0.12); transform: translateY(-4px); }
.feature-card .feature-icon img { transition: transform 0.4s ease; }
.feature-card:hover .feature-icon img { transform: scale(1.1) rotate(-3deg); }

/* ── TESTIMONIAL card hover ──────────────── */
.testi-card { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.testi-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }

/* ── PARTNER LOGO hover ──────────────────── */
.partner-logo { transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease; }
.partner-logo:hover { transform: translateY(-3px); }
