/* ============================================================
   JACQUELINE BOOTH-DICKSON — MAIN STYLESHEET
   ============================================================ */

:root {
  --teal: #1B4332;
  --teal-mid: #2D6A4F;
  --gold: #C89A2E;
  --gold-light: #E8C55A;
  --navy: #112240;
  --white: #ffffff;
  --off-white: #F8F7F2;
  --light-bg: #F4F1EA;
  --text-dark: #1A1A2E;
  --text-mid: #444444;
  --text-light: #666666;
  --border: #E0D9CC;
  --shadow: 0 4px 24px rgba(27,67,50,0.10);
  --shadow-lg: 0 8px 40px rgba(27,67,50,0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--navy); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--navy); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { color: var(--text-mid); }
.lead { font-size: 1.1rem; font-weight: 500; color: var(--text-dark); }

/* UTILITIES */
.gold-text { color: var(--gold) !important; }
.teal-text { color: var(--teal) !important; }
.white { color: var(--white) !important; }
.center { text-align: center; }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.gold-bar { width: 48px; height: 3px; background: var(--gold); margin: 12px 0 18px; }
.gold-bar.centered { margin: 12px auto 18px; }
.bold-statement { font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-top: 12px; }
.teal-link { color: var(--teal); font-weight: 600; font-size: 0.95rem; }
.teal-link:hover { text-decoration: underline; }
.small-note { font-size: 0.82rem; color: var(--text-light); margin-top: 10px; }
.subtitle-text { font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 10px; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--white);
  padding: 13px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: #13321f; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--teal); color: var(--teal);
  padding: 11px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.7); color: var(--white);
  padding: 11px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--white); color: var(--white);
  padding: 11px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  padding: 13px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
}
.btn-gold:hover { background: #a07c1e; transform: translateY(-1px); }

.btn-submit {
  width: 100%; background: var(--teal); color: var(--white);
  padding: 15px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; letter-spacing: 0.05em;
  transition: background var(--transition);
}
.btn-submit:hover { background: #13321f; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.logo-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-light); text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
  list-style: none;
}
.nav-links li a {
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
  padding: 6px 10px; border-radius: 4px;
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--teal); }
.nav-links li a.active { color: var(--teal); border-bottom: 2px solid var(--gold); }
.btn-nav {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 9px 16px !important; border-radius: var(--radius) !important;
  white-space: nowrap;
}
.btn-nav:hover { background: #13321f !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px; overflow: hidden;
}
.hero-content {
  background: var(--navy); color: var(--white);
  padding: 60px 48px 60px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.hero-content h1 { color: var(--white); }
.hero-sub { font-size: 1.2rem; font-weight: 700; }
.hero-desc { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-img { overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   REALITY STRIP
   ============================================================ */
.reality-strip {
  background: var(--off-white);
  padding: 56px 48px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: center;
}
.reality-text h2 { margin-bottom: 12px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-icon { display: flex; justify-content: center; margin-bottom: 8px; }
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.stat-desc { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }

/* ============================================================
   APPROACH
   ============================================================ */
.approach {
  max-width: 1280px; margin: 0 auto;
  padding: 72px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.approach-text { display: flex; flex-direction: column; gap: 14px; }
.approach-text h2 { margin-bottom: 0; }
.approach-pillars { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-icon.pink { background: #C25E7A; }
.pillar-icon.gold { background: var(--gold); }
.pillar-icon.teal { background: var(--teal); }
.pillar strong { font-size: 0.95rem; }
.pillar small { font-size: 0.85rem; color: var(--text-light); }
.approach-visual { position: relative; }
.approach-visual img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 420px; }
.testimonial-bubble {
  position: absolute; bottom: -20px; right: -12px;
  background: var(--teal); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-lg);
  max-width: 260px; box-shadow: var(--shadow-lg);
}
.testimonial-bubble p { font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.testimonial-bubble .attrib { color: var(--gold); font-weight: 700; font-size: 0.82rem; margin-top: 8px; }
.big-quote { font-size: 3rem; line-height: 0.5; color: var(--gold); display: block; }

/* ============================================================
   SERVICES GRID (HOME)
   ============================================================ */
.services-section { padding: 72px 48px; max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 40px; }
.section-header h2 { margin-bottom: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; background: var(--white); }
.service-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.teal-bg { background: var(--teal); }
.gold-bg { background: var(--gold); }
.pink-bg { background: #C25E7A; }
.service-card h4 { color: var(--navy); font-size: 0.95rem; }
.service-card p { font-size: 0.85rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--teal); color: var(--white);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.cta-text p { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: var(--white); padding: 56px 48px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { font-size: 1.1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 460px; overflow: hidden;
}
.page-hero-content {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  background: var(--white);
}
.page-hero-content h1 { color: var(--navy); }
.page-hero-img { overflow: hidden; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* TRUST ROW (ABOUT HERO) */
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; }

/* HERO BTNS */
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ============================================================
   TWO-COL SECTION (ABOUT - MY STORY)
   ============================================================ */
.two-col-section {
  max-width: 1280px; margin: 0 auto;
  padding: 72px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  background: var(--off-white);
}
.two-col-img img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; }
.two-col-content { display: flex; flex-direction: column; gap: 14px; }
.icon-title { display: flex; align-items: center; gap: 14px; }
.icon-title h2, .icon-title h3 { margin: 0; }

/* ============================================================
   EXPERTISE SECTION
   ============================================================ */
.expertise-section {
  max-width: 1280px; margin: 0 auto;
  padding: 72px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.expertise-card { display: flex; flex-direction: column; gap: 14px; }
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.two-col-list ul { display: flex; flex-direction: column; gap: 8px; }
.two-col-list li { font-size: 0.88rem; color: var(--text-mid); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.work-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--off-white); border-radius: var(--radius); }
.work-item strong { font-size: 0.9rem; }
.work-item small { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   TRUST SECTION (WHY SCHOOLS TRUST ME)
   ============================================================ */
.trust-section {
  background: var(--light-bg);
  padding: 72px 48px;
}
.trust-section > div { max-width: 1280px; margin: 0 auto; }
.trust-content { display: flex; flex-direction: column; gap: 14px; max-width: 1280px; margin: 0 auto; }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 8px;
}
.trust-card { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--white); border-radius: var(--radius); }
.trust-card strong { font-size: 0.9rem; }
.trust-card small { font-size: 0.82rem; color: var(--text-light); }
.trust-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 1280px; margin: 0 auto; }
.trust-img img { border-radius: var(--radius-lg); width: 100%; height: 380px; object-fit: cover; }

/* ============================================================
   MESSAGE SECTION (ABOUT - BOTTOM)
   ============================================================ */
.message-section {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.message-card { padding: 56px 48px; display: flex; flex-direction: column; gap: 16px; }
.message-card.dark { background: var(--teal); }
.message-card.dark p { color: rgba(255,255,255,0.9); }
.message-card.dark .quote-mark { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 0.6; }
.message-card.light { background: var(--off-white); justify-content: center; }
.signature { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.4rem; color: var(--gold); }
.sig-tag { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ============================================================
   SERVICES PAGE - TRUST BAR
   ============================================================ */
.trust-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; background: var(--teal);
}
.trust-bar-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 28px 20px; border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item strong { display: block; font-size: 0.82rem; color: var(--white); letter-spacing: 0.03em; margin-bottom: 4px; }
.trust-bar-item small { font-size: 0.8rem; color: rgba(255,255,255,0.75); }

/* ============================================================
   CORE SERVICES (SERVICES PAGE)
   ============================================================ */
.core-services { max-width: 1280px; margin: 0 auto; padding: 72px 48px; }
.core-services .section-header { margin-bottom: 48px; }
.service-detail-row {
  display: grid; grid-template-columns: 60px 280px 1fr; gap: 28px; align-items: start;
  padding: 32px 0; border-bottom: 1px solid var(--border);
}
.service-detail-row:last-child { border-bottom: none; }
.service-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; padding-top: 8px; }
.service-detail-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.service-detail-img img { width: 100%; height: 200px; object-fit: cover; }
.service-icon-overlay {
  position: absolute; top: 12px; left: 12px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-detail-content { display: flex; flex-direction: column; gap: 12px; }
.service-detail-content h3 { color: var(--navy); }
.service-detail-content ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.service-detail-content li { font-size: 0.88rem; color: var(--text-mid); }
.outcome-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--off-white); padding: 12px 16px; border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.outcome-box strong { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--teal); }
.outcome-box div { font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--off-white); padding: 72px 48px; }
.process-section .section-header { max-width: 1280px; margin: 0 auto 48px; }
.process-steps {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0;
  align-items: start;
}
.process-step { display: flex; flex-direction: column; gap: 10px; padding: 0 12px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.step-icon.gold-circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}
.process-step h4 { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--navy); margin-top: 4px; }
.process-step p { font-size: 0.85rem; }
.step-note { background: var(--white); padding: 8px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; color: var(--teal); }
.process-arrow { font-size: 2rem; color: var(--gold); padding-top: 40px; align-self: flex-start; }

/* ============================================================
   CTA TWO COL (SERVICES BOTTOM)
   ============================================================ */
.cta-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--navy);
}
.cta-left {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 44px 48px; border-right: 1px solid rgba(255,255,255,0.1);
}
.cta-left h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.cta-left p { color: rgba(255,255,255,0.85); }
.cta-right {
  padding: 44px 48px; display: flex; flex-direction: column; gap: 14px;
  background: var(--off-white);
}
.cta-right-icon { color: var(--teal); }
.cta-right h3 { color: var(--navy); }
.cta-right p { font-size: 0.9rem; }

/* THREE ICONS */
.three-icons { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.icon-label { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.circle-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.icon-label span { font-size: 0.82rem; font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-ways { max-width: 1280px; margin: 0 auto; padding: 56px 48px; }
.contact-ways h2 { text-align: center; margin-bottom: 32px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 8px;
}
.contact-card.highlighted { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(200,154,46,0.15); }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-main { font-size: 1.05rem; }

.contact-form-section {
  max-width: 1280px; margin: 0 auto; padding: 0 48px 72px;
  display: grid; grid-template-columns: 3fr 2fr; gap: 48px;
}
.form-col h2 { margin-bottom: 6px; }
.enquiry-form { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { width: 100%; }
label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.req { color: #c0392b; }
input, textarea, select {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--white);
}
input:focus, textarea:focus { outline: none; border-color: var(--teal); }
textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-light); text-align: center; }
.success-box { background: #d4edda; border: 1px solid #c3e6cb; border-radius: var(--radius); padding: 24px; }
.success-box h3 { color: #155724; margin-bottom: 8px; }
.success-box p { color: #155724; }

.safe-hands-col { display: flex; flex-direction: column; gap: 24px; }
.safe-box {
  background: var(--teal); color: var(--white);
  padding: 28px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.safe-box h3 { color: var(--white); }
.safe-box p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.safe-item { display: flex; align-items: flex-start; gap: 14px; }
.safe-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.safe-item strong { display: block; color: var(--white); font-size: 0.9rem; }
.safe-item small { font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.safe-img img { border-radius: var(--radius-lg); width: 100%; height: 220px; object-fit: cover; }

.next-step-banner {
  background: var(--teal); color: var(--white);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  max-width: 100%;
}
.next-step-left { display: flex; align-items: center; gap: 20px; max-width: 600px; }
.next-step-left h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.next-step-left p { color: rgba(255,255,255,0.85); }
.next-step-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.banner-icon { flex-shrink: 0; }

.closing-quote {
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: var(--off-white); text-align: center;
}
.big-quote-left, .big-quote-right {
  font-family: var(--font-display); font-size: 5rem; line-height: 0.5;
  color: var(--gold); flex-shrink: 0;
}
.big-quote-right { align-self: flex-end; }
.closing-quote p { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.closing-quote strong { color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .reality-strip { padding: 48px 32px; }
  .approach, .two-col-section, .expertise-section { padding: 56px 32px; gap: 40px; }
  .services-section { padding: 56px 32px; }
  .core-services { padding: 56px 32px; }
  .process-section { padding: 56px 32px; }
  .service-detail-row { grid-template-columns: 50px 220px 1fr; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 10px 0; border-bottom: 1px solid var(--border); }
  .btn-nav { display: inline-block !important; margin-top: 8px; }

  .hero, .page-hero { grid-template-columns: 1fr; }
  .hero-img, .page-hero-img { height: 280px; }
  .hero-content, .page-hero-content { padding: 40px 24px; }

  .reality-strip { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .approach, .two-col-section { grid-template-columns: 1fr; padding: 48px 24px; }
  .testimonial-bubble { position: static; margin-top: 16px; max-width: 100%; }

  .expertise-section { grid-template-columns: 1fr; padding: 48px 24px; }
  .trust-section { grid-template-columns: 1fr !important; padding: 48px 24px; }
  .trust-img { display: none; }
  .message-section { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 36px 24px; }

  .contact-cards { grid-template-columns: 1fr; }
  .contact-form-section { grid-template-columns: 1fr; padding: 0 24px 48px; }
  .contact-ways { padding: 40px 24px; }

  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-item { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .service-detail-row { grid-template-columns: 1fr; }
  .service-num { font-size: 1.4rem; padding-top: 0; }
  .service-detail-content ul { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-arrow { display: none; }

  .cta-two-col { grid-template-columns: 1fr; }
  .cta-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 36px 24px; }
  .cta-right { padding: 36px 24px; }

  .next-step-banner { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .closing-quote { padding: 40px 24px; }

  .footer { padding: 40px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .core-services { padding: 48px 24px; }
  .process-section { padding: 48px 24px; }
  .process-section .section-header { margin-bottom: 28px; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .two-col-list { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .three-icons { flex-direction: column; align-items: flex-start; }
  .cta-banner .cta-text p { font-size: 1.1rem; }
  .closing-quote { flex-direction: column; gap: 10px; }
  .big-quote-right { align-self: auto; }
}
