/* ============================================================
   INSPORT — Main Stylesheet
   Font: Plus Jakarta Sans (200–600)
   Palette: Forest Green #1B5C20 | Lime #6ABF30 | Sky #2BB5E8 | Gold #FFB900
   ============================================================ */

/* ── Variables ── */
:root {
  --font: 'Plus Jakarta Sans', sans-serif;
  --dark-green:   #1B5C20;
  --mid-green:    #2E7D32;
  --bright-green: #6ABF30;
  --sky-blue:     #2BB5E8;
  --gold:         #FFB900;
  --gold-dark:    #E6A800;
  --bg-light:     #F4FAF4;
  --bg-green:     #EAF5EA;
  --white:        #FFFFFF;
  --text-dark:    #111827;
  --text-body:    #374151;
  --text-muted:   #6B7280;
  --border:       #E5E7EB;
  --border-green: #C3E1C3;
  --topbar-h:     42px;
  --navbar-h:     80px;
  --offset:       calc(var(--topbar-h) + var(--navbar-h));
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.10);
  --transition:   .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }
input, select, textarea, button { font-family: var(--font); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Padding ── */
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── Page offset (below fixed header) ── */
.page-offset { padding-top: var(--offset); }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font);
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 200; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 300; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; }
h1 strong, h2 strong { font-weight: 600; color: var(--dark-green); }
p { font-weight: 300; line-height: 1.75; }

/* ── Section Label ── */
.section-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 14px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 400;
  font-size: .9rem;
  letter-spacing: -0.01em;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--dark-green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,92,32,.25);
}
.btn-primary:hover { background: var(--mid-green); box-shadow: 0 6px 24px rgba(27,92,32,.35); }

.btn-gold {
  background: var(--gold);
  color: var(--dark-green);
  box-shadow: 0 4px 16px rgba(255,185,0,.3);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 6px 24px rgba(255,185,0,.4); }

.btn-outline {
  background: transparent;
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
}
.btn-outline:hover { background: var(--dark-green); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-dark {
  background: var(--text-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-dark:hover { background: #2d2d3a; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--topbar-h);
  background: var(--dark-green);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .01em;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--gold); }
.topbar-contact svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-tagline {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  display: none;
}
@media (min-width: 900px) { .topbar-tagline { display: block; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--navbar-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border-bottom-color: var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 54px;
  width: auto;
  mix-blend-mode: multiply; /* removes white-bg halo on white navbar — swap for a transparent PNG when available */
}
.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-body);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--dark-green);
  background: var(--bg-light);
}
.nav-cta { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: var(--offset);
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--white);
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--dark-green); }
.mobile-menu .btn { justify-content: center; margin-top: 10px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark-green) 0%, #0f3a14 50%, #1a4a1e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--offset);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(43,181,232,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(106,191,48,.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--bright-green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-content h1 strong { color: var(--gold); font-weight: 600; }
.hero-content > p {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 300;
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--bright-green); }

/* Hero image side */
.hero-visual {
  position: relative;
  display: none;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3.5;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-img-fallback {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3.5;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(106,191,48,.3) 0%, rgba(43,181,232,.2) 100%);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card-icon svg { width: 18px; height: 18px; }
.hero-float-card h4 { font-size: .82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.hero-float-card p  { font-size: .72rem; font-weight: 300; color: var(--text-muted); }
.hero-float-card.card-1 { bottom: -20px; left: -20px; }
.hero-float-card.card-2 { top: -20px; right: -20px; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: block; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, #0f3a14 100%);
  padding: calc(var(--offset) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(43,181,232,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.page-hero-wave svg { width: 100%; display: block; }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-content > p {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.75);
  font-weight: 300;
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; display: block; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--dark-green);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--gold); font-weight: 600; }
.stat-label {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  letter-spacing: .01em;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   PROMISE / FEATURE CARDS
   ============================================================ */
.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.cards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 640px)  { .cards-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .cards-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.promise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.promise-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.promise-card-icon svg { width: 24px; height: 24px; }
.promise-card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
.promise-card p  { font-size: .88rem; color: var(--text-muted); }

/* ── Service Preview Cards ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-green), rgba(43,181,232,.1));
}
.service-card-body { padding: 28px 24px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 12px; }
.service-card-body p  { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: var(--bg-green);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

/* ── Split / Alternating Sections ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.split-section.reverse { }
.split-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--bg-green), rgba(43,181,232,.1));
}
.split-content h2 { margin-bottom: 16px; }
.split-content p  { color: var(--text-muted); margin-bottom: 24px; }
.split-content .btn { margin-top: 8px; }

@media (min-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split-section.reverse .split-img { order: 2; }
  .split-section.reverse .split-content { order: 1; }
}

/* ── Who We Help ── */
.help-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.help-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.help-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.help-card-icon svg { width: 26px; height: 26px; color: var(--dark-green); }
.help-card h4 { font-size: .95rem; font-weight: 500; margin-bottom: 8px; }
.help-card p  { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-green) 0%, #0f3a14 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(43,181,232,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-banner-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner-content p  { color: rgba(255,255,255,.7); font-size: clamp(.9rem,2vw,1.05rem); margin-bottom: 36px; }
.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--text-muted); font-size: clamp(.9rem,2vw,1.05rem); }

/* ============================================================
   ABOUT — VALUES / TEAM
   ============================================================ */
.value-card {
  text-align: center;
  padding: 28px 20px;
}
.value-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-card-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
.value-card p  { font-size: .88rem; color: var(--text-muted); }

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-img {
  width: 100%;
  aspect-ratio: 3/2.5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-green), rgba(106,191,48,.2));
}
.team-card-body { padding: 28px 26px 32px; }
.team-card-body h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.team-role {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 14px;
}
.team-card-body > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; }
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.team-stat { text-align: center; }
.team-stat-num {
  font-size: 1.3rem;
  font-weight: 200;
  color: var(--dark-green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.team-stat-lbl { font-size: .7rem; font-weight: 300; color: var(--text-muted); }

/* ============================================================
   SERVICES — Full-width alternating
   ============================================================ */
.service-section {
  padding: 80px 0;
}
.service-section:nth-child(even) { background: var(--bg-light); }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.service-section-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-green), rgba(43,181,232,.1));
  box-shadow: var(--shadow-md);
}
.service-section-content h2 { margin-bottom: 16px; }
.service-section-content > p { color: var(--text-muted); margin-bottom: 24px; }
.service-bullets { margin-bottom: 32px; }
.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.service-bullet:first-child { border-top: 1px solid var(--border); }
.service-bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-bullet-icon svg { width: 14px; height: 14px; color: var(--dark-green); }
.service-bullet p { font-size: .88rem; color: var(--text-muted); }
.service-bullet p strong { color: var(--text-dark); font-weight: 500; }

@media (min-width: 900px) {
  .service-section-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .service-section-inner.reverse .service-section-img { order: 2; }
  .service-section-inner.reverse .service-section-content { order: 1; }
}

/* External agencies cards */
.agency-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.agency-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.agency-card-icon svg { width: 26px; height: 26px; }
.agency-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 10px; }
.agency-card p  { font-size: .85rem; color: var(--text-muted); }

/* ============================================================
   RESOURCES — Article Cards / FAQ
   ============================================================ */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-green), rgba(43,181,232,.1));
}
.resource-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.resource-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: var(--bg-green);
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 12px;
}
.resource-card-body h3 { font-size: 1rem; font-weight: 500; margin-bottom: 10px; line-height: 1.4; }
.resource-card-body p  { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; flex: 1; }
.resource-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.resource-card-footer span { font-size: .75rem; font-weight: 300; color: var(--text-muted); }
.resource-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--dark-green);
}
.resource-read-link svg { width: 14px; height: 14px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: clamp(.9rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--dark-green); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--dark-green); transition: transform var(--transition); }
.faq-btn.open .faq-icon { background: var(--dark-green); }
.faq-btn.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; }

/* Newsletter */
.newsletter-box {
  background: var(--dark-green);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.newsletter-box h3 { color: var(--white); font-size: 1.4rem; font-weight: 300; margin-bottom: 10px; }
.newsletter-box p  { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: .9rem; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border-radius: 50px;
  border: none;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 300;
  outline: none;
}
@media (max-width: 480px) {
  .newsletter-box { padding: 36px 24px; }
  .newsletter-form input { width: 100%; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 300; margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--dark-green); }
.contact-info-item h4 { font-size: .85rem; font-weight: 500; margin-bottom: 2px; }
.contact-info-item p  { font-size: .88rem; color: var(--text-muted); font-weight: 300; }
.contact-info-item a  { color: var(--dark-green); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--mid-green); }
.contact-hours { background: var(--bg-light); border-radius: var(--radius-md); padding: 20px 22px; }
.contact-hours h4 { font-size: .85rem; font-weight: 500; margin-bottom: 12px; }
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 300;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.contact-hours-row:last-child { border-bottom: none; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 300; margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); font-size: .88rem; margin-bottom: 28px; }

/* Form elements */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-grid .span-2 { }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(27,92,32,.08);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.required-star { color: #dc2626; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 44px 24px;
  background: var(--bg-green);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.form-success-icon svg { width: 26px; height: 26px; }
.form-success h3 { font-size: 1.2rem; font-weight: 500; color: var(--dark-green); margin-bottom: 8px; }
.form-success p  { font-size: .9rem; color: var(--mid-green); font-weight: 300; }

/* Notice box */
.notice-box {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-green);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.notice-box svg { width: 18px; height: 18px; color: var(--dark-green); flex-shrink: 0; margin-top: 2px; }
.notice-box p { font-size: .83rem; color: var(--dark-green); font-weight: 300; line-height: 1.6; margin: 0; }
.notice-box p strong { font-weight: 500; }

/* Why contact cards */
.why-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.why-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-card-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 10px; }
.why-card p  { font-size: .85rem; color: var(--text-muted); }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.3fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .span-2 { grid-column: 1 / -1; }
  .contact-form-card { padding: 48px 44px; }
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.booking-tabs::-webkit-scrollbar { display: none; }
.booking-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.booking-tab-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.booking-tab-btn.active { color: var(--dark-green); border-bottom-color: var(--dark-green); }
.booking-tab-btn:hover:not(.active) { color: var(--mid-green); }
.booking-panel { display: none; }
.booking-panel.active { display: block; }

/* How steps */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.how-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-step-num.blue { background: var(--sky-blue); }
.how-step-num.gold { background: var(--gold); color: var(--dark-green); }
.how-step-text h4 { font-size: .9rem; font-weight: 500; margin-bottom: 4px; }
.how-step-text p  { font-size: .82rem; color: var(--text-muted); font-weight: 300; }

@media (min-width: 768px) {
  .how-steps {
    flex-direction: row;
    position: relative;
  }
  .how-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 12px;
  }
  .how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -8%;
    width: 16%;
    height: 2px;
    background: var(--border);
  }
  .how-step-text { text-align: center; }
}

/* Booking card */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.booking-card-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.booking-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-card-icon svg { width: 24px; height: 24px; }
.booking-card-header h2 { font-size: clamp(1.1rem, 3vw, 1.35rem); font-weight: 500; margin-bottom: 4px; }
.booking-card-header p  { font-size: .85rem; color: var(--text-muted); font-weight: 300; }
.booking-card-body { padding: 32px; }

/* Book form */
.book-form { display: grid; grid-template-columns: 1fr; gap: 16px; }
.book-form .full { }

@media (min-width: 640px) {
  .book-form { grid-template-columns: 1fr 1fr; }
  .book-form .full { grid-column: 1 / -1; }
  .booking-card-body { padding: 40px; }
}

/* Price row */
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.price-row-label { font-size: .88rem; font-weight: 300; color: var(--text-muted); }
.price-row-label strong {
  display: block;
  font-size: .98rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.price-badge {
  background: var(--dark-green);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Section divider */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* Google form */
.google-form-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
}
.google-form-wrap iframe { display: block; width: 100%; border: none; }

/* Btn loading */
.btn-loading { opacity: .7; pointer-events: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0a14;
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  background: rgba(255,255,255,.1);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  /* Replace with a transparent PNG for the cleanest result */
}
.footer-brand p { font-size: .85rem; font-weight: 300; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,.55); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--transition), color var(--transition);
}
.footer-social-btn:hover { background: var(--dark-green); color: var(--white); }
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: rgba(255,255,255,.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.3); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SPIN ANIMATION
   ============================================================ */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-0  { margin-bottom: 0; }

/* ============================================================
   MEDIA QUERIES — Mobile overrides
   ============================================================ */
@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .booking-card-body { padding: 24px 20px; }
  .booking-card-header { padding: 22px 20px; }
  .topbar-contact a:last-child { display: none; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================================
   COMING SOON MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  position: relative;
  transform: scale(.95) translateY(16px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--border); }
.modal-close svg { width: 15px; height: 15px; color: var(--text-muted); }
.modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.modal-icon svg { width: 32px; height: 32px; color: var(--dark-green); }
.modal-box h3 {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.modal-box p {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-box .btn { min-width: 160px; justify-content: center; }

@media (max-width: 480px) {
  .modal-box { padding: 44px 28px 32px; }
}

/* ============================================================
   NEWSLETTER SUCCESS MESSAGE
   ============================================================ */
.newsletter-success {
  display: none;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
  text-align: center;
  color: var(--white);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.6;
  animation: fadeSlideIn .4s ease forwards;
}
.newsletter-success.visible { display: block; }
.newsletter-success strong { font-weight: 600; color: var(--gold); display: block; font-size: 1rem; margin-bottom: 4px; }
@keyframes fadeSlideIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ============================================================
   RI & RM LEADERSHIP PILLARS
   ============================================================ */
.pillar-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px)  { .pillar-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillar-cards { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.pillar-card-icon svg { width: 24px; height: 24px; }
.pillar-card h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
.pillar-card > p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.pillar-bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.pillar-bullet {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .78rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.45;
}
.pillar-bullet svg { width: 12px; height: 12px; color: var(--bright-green); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 480px) {
  .pillar-bullet-list { grid-template-columns: 1fr; }
}

/* ============================================================
   TRUSTED PROFESSIONAL NETWORK GRID
   ============================================================ */
.network-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 500px)  { .network-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .network-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .network-grid { grid-template-columns: repeat(4, 1fr); } }

.network-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.network-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.network-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.network-card-icon svg { width: 18px; height: 18px; }
.network-card h4 { font-size: .88rem; font-weight: 500; margin-bottom: 4px; color: var(--text-dark); }
.network-card p  { font-size: .76rem; color: var(--text-muted); font-weight: 300; line-height: 1.5; margin: 0; }

/* ============================================================
   ADDITIONAL MOBILE RESPONSIVENESS FIXES
   ============================================================ */
@media (max-width: 480px) {
  /* Team stats tighten on small phones */
  .team-stats { gap: 6px; }
  .team-stat-num { font-size: 1.05rem; }
  .team-stat-lbl { font-size: .62rem; }

  /* Booking tabs hide icon on very small screens */
  .booking-tab-btn svg { display: none; }
  .booking-tab-btn { padding: 12px 14px; font-size: .82rem; }

  /* Stats numbers on tiny screens */
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: .75rem; }

  /* Hero trust items wrap smaller */
  .hero-trust-item { font-size: .74rem; }

  /* Footer bottom stacks */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Section padding tighter */
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }
  .page-hero { padding-top: calc(var(--offset) + 40px); padding-bottom: 64px; }

  /* Cards less padding */
  .promise-card { padding: 24px 20px; }
  .pillar-card { padding: 24px 20px; }
  .network-card { padding: 16px; }

  /* Service section image aspect */
  .service-section-img { aspect-ratio: 16/10; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .topbar-contact a:last-child { display: none; }
  .topbar-contact a:nth-child(2) { display: none; } /* hide 2nd phone on tiny screens */
  .how-step-num { width: 32px; height: 32px; font-size: .75rem; }
}
