/* ═══════════════════════════════════════════════════
   COMPASSION360 — STYLESHEET
   Style: Soft UI Evolution + Inclusive Design
   Palette: Trust Blue · Healing Green · Warm Peach
   Typography: Cormorant Garamond + Nunito
   ═══════════════════════════════════════════════════ */

/* ─ Design Tokens ─────────────────────────────────── */
:root {
  /* Colors */
  --c-blue:        #1B5E8B;
  --c-blue-light:  #007BFF;
  --c-blue-pale:   #EBF4FC;
  --c-blue-mid:    #D0E8F7;
  --c-green:       #2EBD59;
  --c-green-light: #3CA36A;
  --c-green-pale:  #EAF5EF;
  --c-peach:       #FF8A00;
  --c-peach-light: #E8946A;
  --c-peach-pale:  #FDF1EB;
  --c-white:       #FFFFFF;
  --c-bg:          #F5F8FC;
  --c-surface:     #FFFFFF;
  --c-text:        #1A2332;
  --c-text-mid:    #3D5068;
  --c-text-soft:   #6B82A0;
  --c-border:      #DCE8F2;
  --c-border-soft: #EDF3F9;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(27,94,139,0.08), 0 1px 2px rgba(27,94,139,0.05);
  --shadow:     0 4px 16px rgba(27,94,139,0.10), 0 1px 4px rgba(27,94,139,0.06);
  --shadow-md:  0 8px 32px rgba(27,94,139,0.12), 0 2px 8px rgba(27,94,139,0.07);
  --shadow-lg:  0 16px 48px rgba(27,94,139,0.14), 0 4px 12px rgba(27,94,139,0.08);

  /* Transitions */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --t-fast: 150ms;
  --t-mid: 250ms;
  --t-slow: 400ms;
}

/* ─ Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─ Accessibility ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--c-blue);
  color: var(--c-white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

*:focus-visible {
  outline: 3px solid var(--c-blue-light);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─ Layout ────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - var(--sp-8));
  margin-inline: auto;
}

.section {
  padding-block: var(--sp-24);
}

/* ─ Typography ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--sp-4);
}
.section-label.light { color: rgba(255,255,255,0.75); }
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: var(--sp-6);
}
.section-heading em {
  font-style: italic;
  color: var(--c-blue);
}
.section-heading.centered { text-align: center; }
.section-heading.light { color: var(--c-white); }
.section-heading.light em { color: rgba(255,255,255,0.8); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--c-text-mid);
  max-width: 55ch;
  margin-bottom: var(--sp-12);
}
.section-sub.centered { margin-inline: auto; text-align: center; }

.section-header { margin-bottom: var(--sp-12); }

.body-text {
  font-size: 1.0625rem;
  color: var(--c-text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}

/* ─ Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
  touch-action: manipulation;
  min-height: 48px;
}

.btn-primary {
  background: var(--c-blue);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(27,94,139,0.35);
}
.btn-primary:hover {
  background: var(--c-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,94,139,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--c-blue);
  border: 2px solid var(--c-blue);
}
.btn-outline:hover {
  background: var(--c-blue);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; }

/* ─ Navigation ────────────────────────────────────── */
.site-header {
  position: fixed;
  /* top: 50px; */
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-slow) var(--ease),
              backdrop-filter var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  padding-block: var(--sp-4);
  gap: var(--sp-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.nav-logo:hover { opacity: 0.8; }

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-light));
  color: white;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(27,94,139,0.3);
  flex-shrink: 0;
}
.logo-mark sup { font-size: 0.5em; vertical-align: super; }

.logo-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--c-text);
  transition: color var(--t-fast) var(--ease);
}
.logo-text strong { font-weight: 700; color: var(--c-blue); }

/* .site-header:not(.scrolled) .logo-text { color: rgba(255,255,255,0.95); } */
/* .site-header:not(.scrolled) .logo-text strong { color: rgba(255,255,255,1); } */

.nav-menu {
  /* top: 140%; */
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

/* ─ Nav Logo Image ────────────────────────────────── */
.nav-logo-img {
  /* height: px; */
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-link {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-blue);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-blue); background: var(--c-blue-pale); }

/* .site-header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); } */
/* .site-header:not(.scrolled) .nav-link:hover { color: white; background: rgba(255,255,255,0.15); } */

.nav-link.nav-cta {
  background: var(--c-blue);
  color: var(--c-white);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-5);
  border: 2px solid var(--c-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav-link.nav-cta:hover {
  background: var(--c-blue-light);
  color: var(--c-white);
  border-color: var(--c-blue);
  box-shadow: var(--shadow);
}
.site-header.scrolled .nav-link.nav-cta {
  background: var(--c-blue);
  color: var(--c-white);
  border-color: var(--c-blue);
}
.site-header.scrolled .nav-link.nav-cta:hover { background: var(--c-blue-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--c-text); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─ Nav Dropdown ──────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform var(--t-mid) var(--ease);
  flex-shrink: 0;
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--c-border-soft);
  min-width: 200px;
  padding: var(--sp-2);
  z-index: 200;
}

/* small triangle pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--c-white);
  border-left: 1.5px solid var(--c-border-soft);
  border-top: 1.5px solid var(--c-border-soft);
  transform: rotate(45deg);
}

.nav-dropdown-menu.open {
  display: block;
}

/* desktop: also open on hover */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
}

.nav-dropdown-link {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.nav-dropdown-link:hover {
  color: var(--c-blue);
  background: var(--c-blue-pale);
}

/* mobile: dropdown flows inline */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--c-border);
    border-radius: 0;
    margin-left: var(--sp-4);
    padding: var(--sp-1) 0;
    background: transparent;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-link {
    font-size: 0.9rem;
    color: var(--c-text-soft);
  }
}

/* ─ Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 61, 92, 0.55) 0%, rgba(26, 58, 46, 0.50) 50%),
    url('photos/pic_2.jpeg') top center / cover no-repeat;
  overflow: hidden;
  padding-block: calc(var(--sp-32) + 37px) var(--sp-24);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.hero-shape--1 {
  width: 700px;
  height: 700px;
  background: var(--c-green-light);
  top: -200px;
  right: -100px;
  animation: float1 12s ease-in-out infinite;
}
.hero-shape--2 {
  width: 400px;
  height: 400px;
  background: var(--c-peach-light);
  bottom: -100px;
  left: 10%;
  animation: float2 9s ease-in-out infinite;
}
.hero-shape--3 {
  width: 300px;
  height: 300px;
  background: white;
  top: 30%;
  left: 55%;
  animation: float1 15s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  /* max-width: 740px; */
  padding-top: var(--sp-8);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: var(--sp-2) var(--sp-4);
  border-radius: 100px;
  margin-bottom: var(--sp-8);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: var(--sp-8);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-heading em {
  font-style: italic;
  color: #FF8A00;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: var(--sp-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: 100px;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUpIn 2s var(--ease) 1s both;
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─ About ─────────────────────────────────────────── */
.about { background: var(--c-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  position: relative;
}

.visual-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.visual-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.visual-card--primary {
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-light));
  color: white;
  grid-column: span 2;
}
.visual-card--secondary {
  background: var(--c-green-pale);
  border: 1.5px solid var(--c-green);
}
.visual-card--accent {
  background: var(--c-peach-pale);
  border: 1.5px solid var(--c-peach-light);
}

.visual-icon { width: 48px; height: 48px; }
.visual-icon svg { width: 100%; height: 100%; }
.visual-card--primary .visual-icon { color: rgba(255,255,255,0.9); }
.visual-card--secondary .visual-icon { color: var(--c-green); }
.visual-card--accent .visual-icon { color: var(--c-peach); }

.visual-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-green);
}

.visual-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-mid);
}
.visual-card--primary .visual-card-label { color: rgba(255,255,255,0.85); }

/* ─ Services ──────────────────────────────────────── */
.services { background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  border: 1.5px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-green);
}
.service-card--featured {
  border-color: var(--c-white);
  box-shadow: var(--shadow);
}

.service-badge {
  position: absolute;
  top: -1px;
  right: var(--sp-6);
  background: var(--c-green);
  color: var(--c-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.service-icon--blue { background: var(--c-blue-pale); color: var(--c-blue); }
.service-icon--green { background: var(--c-green-pale); color: var(--c-green); }
.service-icon--peach { background: var(--c-peach-pale); color: var(--c-peach); }

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  border-top: 1px solid var(--c-border-soft);
  padding-top: var(--sp-6);
}
.service-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-mid);
}
.service-features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
}

/* ─ Who We Serve ──────────────────────────────────── */
.who-we-serve { background: var(--c-white); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.serve-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  border: 1.5px solid var(--c-border-soft);
  transition: all var(--t-mid) var(--ease);
}
.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--c-green);
}
.serve-card--highlight {
  background: linear-gradient(135deg, var(--c-blue-pale), #D4E9F7);
  border-color: var(--c-blue-mid);
}

.serve-icon {
  width: 52px;
  height: 52px;
  background: var(--c-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-sm);
  color: var(--c-blue);
}

.serve-title {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.serve-desc {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

/* ─ Why Us ────────────────────────────────────────── */
.why-us { background: var(--c-bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-16);
  align-items: start;
}

.why-text { position: sticky; top: var(--sp-24); }

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.pillar {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  border: 1.5px solid var(--c-border-soft);
  transition: all var(--t-mid) var(--ease);
  cursor: default;
}
.pillar:hover {
  border-color: var(--c-green);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-blue-pale);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  transition: color var(--t-mid) var(--ease);
}
.pillar:hover .pillar-num { color: var(--c-blue-mid); }

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
}

.pillar-desc {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.7;
}

/* ─ Mission ───────────────────────────────────────── */
.mission {
  position: relative;
  background: linear-gradient(135deg, #0F3D5C 0%, var(--c-blue) 40%, var(--c-green) 100%);
  /* background: var(--c-bg); */
  overflow: hidden;
}

.mission-page {
  position: relative;
  /* background: linear-gradient(135deg, #0F3D5C 0%, var(--c-blue) 40%, var(--c-green) 100%); */
  background: var(--c-bg);
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mission-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.mission-inner { position: relative; z-index: 1; text-align: center; }

.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.mission-card {
  background: var(--c-white);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.mission-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: #2EBD59;
}

.mission-card-icon {
  width: 52px;
  height: 52px;
  background: var(--c-green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-green);
  margin-bottom: var(--sp-5);
}

.mission-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-4);
}

.mission-card-text {
  font-size: 1rem;
  color: var(--c-text-mid);
  line-height: 1.75;
}

.mission-quote {
  max-width: 680px;
  margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: var(--sp-10);
}
.mission-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}
.mission-quote cite {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
}

/* ─ Contact ───────────────────────────────────────── */
.contact { background: var(--c-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--c-blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: var(--sp-1);
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
}

/* ─ Form ──────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--c-bg);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  border: 1.5px solid var(--c-border-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}
.form-label span { color: var(--c-peach); }

.form-input {
  padding: 0.8125rem 1rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--c-text-soft); }
.form-input:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(27,94,139,0.12);
}
.form-input.invalid {
  border-color: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-select {
  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='%236B82A0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 130px; }

.form-error {
  font-size: 0.8125rem;
  color: #C0392B;
  font-weight: 500;
  display: none;
}
.form-error.visible { display: block; }

.form-success {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-green-pale);
  border: 1.5px solid var(--c-green);
  border-radius: var(--radius);
  color: var(--c-green);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ─ Footer ────────────────────────────────────────── */
.footer {
  background: var(--c-text);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-block: var(--sp-16);
}

.footer .logo-text { color: rgba(255,255,255,0.9); }
.footer .logo-text strong { color: white; }

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: var(--sp-4);
  max-width: 28ch;
}

.footer-nav-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}

.footer-nav ul, .footer-services ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-nav a, .footer-services a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast) var(--ease);
}
.footer-nav a:hover, .footer-services a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}

/* ─ Footer Logo ───────────────────────────────────── */
.footer-logo-img {
  height: 60px;
  filter: brightness(0) invert(1); /* makes logo white — remove this line if your logo already works on dark backgrounds */
}

/* ─ Scroll Animations ─────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }

/* ─ Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about-visual { max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-text { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding-block: var(--sp-16); }
  .section-heading { font-size: clamp(1.75rem, 6vw, 2.5rem); }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: var(--sp-6);
    gap: var(--sp-1);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--c-text-mid) !important; background: none !important; padding: var(--sp-3) var(--sp-4); width: 100%; }
  .nav-link:hover { color: var(--c-blue) !important; background: var(--c-blue-pale) !important; }
  .nav-link.nav-cta { background: var(--c-blue) !important; color: white !important; border-color: var(--c-blue) !important; border-radius: var(--radius); text-align: center; }

  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-6); }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .mission-quote p { font-size: 1.125rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: clamp(2.25rem, 10vw, 3.5rem); }
  .hero-trust { flex-direction: column; }
}

/* ─ Page Hero (inner pages) ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, rgba(15, 61, 92, 0.40) 0%, rgba(26, 58, 46, 0.50) 100%), url('photos/pic_8.jpeg') left/cover no-repeat;
  padding-block: 9rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: white;
  margin-bottom: var(--sp-5);
}
.page-hero-heading em { font-style: italic; color: var(--c-peach); }

.page-hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.72);
  max-width: 60ch;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--t-fast); }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }


/* ── Services Page Styles ───────────────────────── */

    /* Hero Banner */
    .services-hero {
      background: linear-gradient(135deg, rgba(15, 61, 92, 0.40) 0%, rgba(26, 58, 46, 0.50) 100%), url('photos/pic_8.jpeg') left/cover no-repeat;
      padding-block: calc(9rem + 110px) 5rem;
      position: relative;
      overflow: hidden;
    }
    .services-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .services-hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-12);
      align-items: center;
    }
    .services-hero-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: var(--sp-3);
    }
    .services-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6vw, 5rem);
      font-weight: 600;
      color: white;
      line-height: 1.05;
      margin-bottom: var(--sp-5);
    }
    .services-hero h1 em {
      font-style: italic;
      color: rgba(232,148,106,0.95);
    }
    .services-breadcrumb {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      margin-bottom: var(--sp-6);
      font-size: 0.8125rem;
    }
    .services-breadcrumb a {
      color: rgba(255,255,255,0.55);
      transition: color var(--t-fast);
    }
    .services-breadcrumb a:hover { color: white; }
    .services-breadcrumb span { color: rgba(255,255,255,0.3); }
    .services-breadcrumb strong { color: rgba(255,255,255,0.85); font-weight: 500; }

    .services-hero-sub {
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      max-width: 52ch;
    }

    /* Feature image panel */
    .services-hero-image {
      position: relative;
    }
    .services-hero-image-frame {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
      border: 1.5px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .services-hero-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Placeholder shown when no image is set */
    .img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--sp-3);
      color: rgba(255,255,255,0.3);
      font-size: 0.875rem;
      font-weight: 500;
      text-align: center;
      padding: var(--sp-8);
      width: 100%;
      height: 100%;
    }
    .img-placeholder svg { opacity: 0.4; }
    .img-placeholder span { font-size: 0.8125rem; }

    /* Floating badge on hero image */
    .hero-img-badge {
      position: absolute;
      bottom: var(--sp-5);
      left: var(--sp-5);
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-radius: var(--radius);
      padding: var(--sp-3) var(--sp-5);
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      box-shadow: var(--shadow-md);
    }
    .hero-img-badge-icon {
      width: 36px; height: 36px;
      background: var(--c-blue-pale);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      color: var(--c-blue);
      flex-shrink: 0;
    }
    .hero-img-badge-text { font-size: 0.8125rem; line-height: 1.3; }
    .hero-img-badge-text strong { display: block; color: var(--c-text); font-weight: 700; }
    .hero-img-badge-text span { color: var(--c-text-soft); font-size: 0.75rem; }

    /* ── Services Grid ────────────────────────────── */
    .services-grid-section {
      background: var(--c-bg);
      padding-block: var(--sp-24);
    }
    .services-grid-section .section-header {
      margin-bottom: var(--sp-12);
    }
    .service-cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--sp-6);
    }
    .service-pg-card {
      background: var(--c-white);
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1.5px solid var(--c-border-soft);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform var(--t-mid) var(--ease),
                  box-shadow var(--t-mid) var(--ease),
                  border-color var(--t-mid) var(--ease);
      text-decoration: none;
      color: inherit;
    }
    .service-pg-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--c-blue-mid);
    }

    /* Card thumbnail */
    .service-pg-card-thumb {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: linear-gradient(135deg, var(--c-blue-pale), var(--c-blue-mid));
      position: relative;
    }
    .service-pg-card-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--t-slow) var(--ease);
    }
    .service-pg-card:hover .service-pg-card-thumb img {
      transform: scale(1.04);
    }
    .thumb-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--sp-3);
      color: var(--c-blue);
    }
    .thumb-placeholder svg { opacity: 0.5; }
    .thumb-placeholder span {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--c-text-soft);
    }
    /* Second card thumb tint */
    .service-pg-card:nth-child(2) .service-pg-card-thumb {
      background: linear-gradient(135deg, var(--c-peach-pale), #F5CEBB);
    }
    .service-pg-card:nth-child(2) .thumb-placeholder { color: var(--c-peach); }

    /* Card body */
    .service-pg-card-body {
      padding: var(--sp-7) var(--sp-7) var(--sp-6);
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: var(--sp-4);
    }
    .service-pg-card-tag {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--c-blue);
    }
    .service-pg-card:nth-child(2) .service-pg-card-tag { color: var(--c-peach); }

    .service-pg-card-title {
      font-family: var(--font-display);
      font-size: 1.625rem;
      font-weight: 600;
      color: var(--c-text);
      line-height: 1.2;
      transition: color var(--t-fast) var(--ease);
    }
    .service-pg-card:hover .service-pg-card-title { color: var(--c-blue); }

    .service-pg-card-desc {
      font-size: 0.9375rem;
      color: var(--c-text-mid);
      line-height: 1.7;
      flex: 1;
    }

    .service-pg-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--sp-5);
      border-top: 1px solid var(--c-border-soft);
      margin-top: auto;
    }
    .service-pg-card-link {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--c-blue);
      transition: gap var(--t-fast) var(--ease);
    }
    .service-pg-card:hover .service-pg-card-link { gap: var(--sp-3); }
    .service-pg-card:nth-child(2) .service-pg-card-link { color: var(--c-peach); }

    .service-pg-card-arrow {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--c-blue-pale);
      display: flex; align-items: center; justify-content: center;
      color: var(--c-blue);
      flex-shrink: 0;
      transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    }
    .service-pg-card:hover .service-pg-card-arrow {
      background: var(--c-blue);
      color: white;
      transform: translateX(3px);
    }
    .service-pg-card:nth-child(2) .service-pg-card-arrow {
      background: var(--c-peach-pale);
      color: var(--c-peach);
    }
    .service-pg-card:nth-child(2):hover .service-pg-card-arrow {
      background: var(--c-peach);
      color: white;
    }

    /* ── New Footer Layout ────────────────────────── */
    .footer-new {
      background: var(--c-text);
      color: rgba(255,255,255,0.65);
    }
    .footer-new-inner {
      display: grid;
      grid-template-columns: 1.8fr 1.2fr 1fr 1fr;
      gap: var(--sp-10);
      padding-block: var(--sp-16);
    }
    .footer-new-brand {}
    .footer-new-brand .footer-tagline {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.65;
      margin-top: var(--sp-4);
      max-width: 26ch;
    }
    .footer-new-contact h3,
    .footer-new-links h3 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: var(--sp-5);
    }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: var(--sp-3);
      margin-bottom: var(--sp-4);
    }
    .footer-contact-item-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      margin-top: 2px;
    }
    .footer-contact-item-text {
      font-size: 0.875rem;
      line-height: 1.55;
      color: rgba(255,255,255,0.55);
    }
    .footer-contact-item-text strong {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 2px;
    }
    .footer-new-links ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);
    }
    .footer-new-links a {
      font-size: 0.9375rem;
      color: rgba(255,255,255,0.55);
      transition: color var(--t-fast);
    }
    .footer-new-links a:hover { color: white; }
    .footer-new-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-new-bottom-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-block: var(--sp-5);
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.3);
      flex-wrap: wrap;
      gap: var(--sp-3);
    }

    /* ── Responsive ───────────────────────────────── */
    @media (max-width: 1024px) {
      .footer-new-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
    }
    @media (max-width: 768px) {
      .services-hero-inner { grid-template-columns: 1fr; }
      .services-hero-image { display: none; }
      .service-cards-grid { grid-template-columns: 1fr; }
      .footer-new-inner { grid-template-columns: 1fr; }
      .footer-new-bottom-inner { flex-direction: column; text-align: center; }
    }

/* ── Page Hero ───────────────────────────────── */
    .page-hero {
      background: linear-gradient(135deg, rgba(15, 61, 92, 0.40) 0%, rgba(26, 58, 46, 0.50) 100%), url('photos/pic_8.jpeg') left top/cover no-repeat;
      padding-block: calc(9rem + 90px) 5rem;
      position: relative;
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero-heading {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 600;
      line-height: 1.1;
      color: white;
      margin-bottom: var(--sp-5);
    }
    .page-hero-heading em { font-style: italic; color: var(--c-peach); }
    .page-hero-sub {
      font-size: clamp(1rem, 2vw, 1.125rem);
      color: rgba(255,255,255,0.72);
      max-width: 60ch;
      line-height: 1.75;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      margin-bottom: var(--sp-5);
      font-size: 0.8125rem;
      color: rgba(255,255,255,0.5);
    }
    .breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--t-fast); }
    .breadcrumb a:hover { color: white; }
    .breadcrumb-sep { color: rgba(255,255,255,0.3); }

    /* ── Intro Section ───────────────────────────── */
    .service-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-16);
      align-items: center;
    }
    .service-intro-image {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, var(--c-blue-pale), var(--c-blue-mid));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: var(--sp-3);
      color: var(--c-blue);
    }
    .service-intro-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    .img-placeholder-text {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--c-text-soft);
    }

    /* ── Feature List ────────────────────────────── */
    .feature-list {
      display: flex;
      flex-direction: column;
      gap: var(--sp-5);
      margin-block: var(--sp-8);
    }
    .feature-item {
      display: flex;
      gap: var(--sp-4);
      align-items: flex-start;
    }
    .feature-check {
      width: 28px; height: 28px;
      background: var(--c-green-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--c-green);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .feature-text { font-size: 0.9375rem; color: var(--c-text-mid); line-height: 1.65; }
    .feature-text strong { display: block; color: var(--c-text); font-weight: 600; margin-bottom: 2px; }

    /* ── Who It's For Cards ──────────────────────── */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-5);
    }
    .who-card {
      background: var(--c-white);
      border-radius: var(--radius-lg);
      padding: var(--sp-7) var(--sp-6);
      border: 1.5px solid var(--c-border-soft);
      box-shadow: var(--shadow-sm);
      transition: all var(--t-mid) var(--ease);
    }
    .who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-blue-mid); }
    .who-card-icon {
      width: 48px; height: 48px;
      background: var(--c-blue-pale);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      color: var(--c-blue);
      margin-bottom: var(--sp-4);
    }
    .who-card-title {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--c-text);
      margin-bottom: var(--sp-2);
    }
    .who-card-desc { font-size: 0.9375rem; color: var(--c-text-mid); line-height: 1.65; }

    /* ── Process Steps ───────────────────────────── */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-6);
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 14px);
      right: calc(12.5% + 14px);
      height: 2px;
      background: linear-gradient(to right, var(--c-blue-mid), var(--c-green));
      border-radius: 2px;
    }
    .process-step { text-align: center; position: relative; }
    .process-step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--c-blue);
      color: white;
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto var(--sp-5);
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 12px rgba(27,94,139,0.3);
    }
    /* .process-step:last-child .process-step-num { background: var(--c-green); box-shadow: 0 4px 12px rgba(46,125,82,0.3); } */
    .process-step-title {
      font-family: var(--font-display);
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--c-text);
      margin-bottom: var(--sp-2);
    }
    .process-step-desc { font-size: 0.875rem; color: var(--c-text-mid); line-height: 1.65; }

    /* ── CTA Banner ──────────────────────────────── */
    .cta-section {
      background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-green) 100%);
      padding-block: var(--sp-16);
      text-align: center;
    }
    .cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 600;
      color: white;
      margin-bottom: var(--sp-5);
    }
    .cta-section p {
      font-size: 1.0625rem;
      color: rgba(255,255,255,0.75);
      max-width: 52ch;
      margin: 0 auto var(--sp-8);
      line-height: 1.7;
    }

    /* ── Footer ──────────────────────────────────── */
    .footer-new { background: var(--c-text); color: rgba(255,255,255,0.65); }
    .footer-new-inner {
      display: grid;
      grid-template-columns: 1.8fr 1.2fr 1fr 1fr;
      gap: var(--sp-10);
      padding-block: var(--sp-16);
    }
    .footer-tagline { font-size: 0.9375rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-top: var(--sp-4); max-width: 26ch; }
    .footer-new-contact h3, .footer-new-links h3 {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      color: rgba(255,255,255,0.35); margin-bottom: var(--sp-5);
    }
    .footer-contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-4); }
    .footer-contact-item-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: rgba(255,255,255,0.06); border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); margin-top: 2px;
    }
    .footer-contact-item-text { font-size: 0.875rem; line-height: 1.55; color: rgba(255,255,255,0.55); }
    .footer-contact-item-text strong {
      display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2px;
    }
    .footer-new-links ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
    .footer-new-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
    .footer-new-links a:hover { color: white; }
    .footer-new-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-new-bottom-inner {
      display: flex; justify-content: space-between; align-items: center;
      padding-block: var(--sp-5); font-size: 0.8125rem; color: rgba(255,255,255,0.3);
      flex-wrap: wrap; gap: var(--sp-3);
    }

    /* ── Responsive ──────────────────────────────── */
    @media (max-width: 1024px) {
      .who-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-steps::before { display: none; }
      .footer-new-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
    }
    @media (max-width: 768px) {
      .service-intro { grid-template-columns: 1fr; }
      .service-intro-image { display: none; }
      .who-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .footer-new-inner { grid-template-columns: 1fr; }
      .footer-new-bottom-inner { flex-direction: column; text-align: center; }
    }

/* ── Service Card Redesign ────────────────────────── */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  align-items: start; /* cards size to their own content */
}

.service-pg-card {
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  background: var(--c-white);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.service-pg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-green);
}

.service-pg-card-thumb {
  height: 240px;
  aspect-ratio: unset;
  overflow: hidden;
  flex-shrink: 0;
}
.service-pg-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}
.service-pg-card:hover .service-pg-card-thumb img {
  transform: scale(1.04);
}
.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}

.service-pg-card-body {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6) var(--sp-6) var(--sp-6);
  gap: 0;
}

.service-pg-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: var(--sp-3);
}
.service-pg-card:nth-child(2) .service-pg-card-tag {
  color: var(--c-peach);
}

.service-pg-card-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: var(--sp-6);
  transition: color var(--t-fast) var(--ease);
}
.service-pg-card:hover .service-pg-card-title { color: var(--c-blue); }

/* hide description — not needed in card layout */
.service-pg-card-desc { display: none; }

.service-pg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border-soft);
  margin-top: 0;
}

@media (max-width: 768px) {
  .service-cards-grid { grid-template-columns: 1fr; }
  .service-pg-card-thumb { height: 200px; }
}

/* ── Other Services Section ───────────────────────── */
.other-services-grid {
  display: flex;
  justify-content: center;
}

.other-service-card {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  border: 1.5px solid var(--c-border-soft);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  max-width: 680px;
  width: 100%;
  transition: transform var(--t-mid) var(--ease),
              box-shadow var(--t-mid) var(--ease),
              border-color var(--t-mid) var(--ease);
}
.other-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-blue-mid);
}

.other-service-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-blue-pale);
  color: var(--c-blue);
}

.other-service-content {
  flex: 1;
}

.other-service-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
  transition: color var(--t-fast) var(--ease);
}
.other-service-card:hover .other-service-title { color: var(--c-blue); }

.other-service-desc {
  font-size: 0.9375rem;
  color: var(--c-text-mid);
  line-height: 1.6;
}

.other-service-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-blue-pale);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
}
.other-service-card:hover .other-service-arrow {
  background: var(--c-blue);
  color: white;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .other-service-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
  .other-service-arrow { display: none; }
}

/* ── Careers Page ─────────────────────────────────── */
.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.careers-values {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.careers-value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  border: 1.5px solid var(--c-border-soft);
  transition: all var(--t-mid) var(--ease);
}
.careers-value-item:hover {
  border-color: var(--c-blue-mid);
  box-shadow: var(--shadow-sm);
}

.careers-value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--c-blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
}

.careers-value-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-1);
}

.careers-value-desc {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.6;
}

.careers-form-wrap {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  border: 1.5px solid var(--c-border-soft);
  max-width: 820px;
  margin: 0 auto;
}

.careers-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-label-optional {
  font-weight: 400;
  color: var(--c-text-soft);
  font-size: 0.8125rem;
}

/* ── File Upload ──────────────────────────────────── */
.file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-zone {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-bg);
  border: 1.5px dashed var(--c-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  min-height: 72px;
}
.file-upload-zone:hover,
.file-upload-zone:focus {
  border-color: var(--c-blue);
  background: var(--c-blue-pale);
  outline: none;
}
.file-upload-zone.has-file {
  border-style: solid;
  border-color: var(--c-green);
  background: var(--c-green-pale);
}

.file-upload-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--c-blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  transition: background var(--t-fast) var(--ease);
}
.file-upload-zone.has-file .file-upload-icon {
  background: var(--c-green-pale);
  color: var(--c-green);
}

.file-upload-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.file-upload-cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-blue);
}
.file-upload-zone.has-file .file-upload-cta { color: var(--c-green); }

.file-upload-hint {
  font-size: 0.8125rem;
  color: var(--c-text-soft);
}

.file-upload-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-green);
  word-break: break-all;
}

@media (max-width: 1024px) {
  .careers-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .careers-form-wrap { padding: var(--sp-6); }
  .file-upload-zone { flex-direction: column; text-align: center; gap: var(--sp-3); }
}


/* ── team Hero ───────────────────────────────── */
    .team-hero {
      background: linear-gradient(135deg, rgba(15, 61, 92, 0.55) 0%, rgba(26, 58, 46, 0.50) 50%), url('photos/pic_7.jpeg') top/cover no-repeat;
      padding-block: calc(9rem + 70px) 5rem;
      position: relative;
      overflow: hidden;
    }

    .footer-contact-item-text strong {
  white-space: nowrap;
}


/* ── Font Resizer Widget ───────────────────────────── */
.font-resizer {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 999;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.font-resizer-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

.font-resizer-buttons {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.font-resizer-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border-soft);
  color: var(--c-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast) var(--ease);
  line-height: 1;
}

.font-resizer-btn:hover {
  background: var(--c-blue-pale);
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.font-resizer-btn:active {
  transform: scale(0.95);
}

.font-resizer-btn--reset {
  font-size: 0.875rem;
  color: var(--c-text-soft);
}

.font-resizer-btn--reset.active,
.font-resizer-btn--reset:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: white;
}

/* keep widget visible on mobile but smaller */
@media (max-width: 768px) {
  .font-resizer {
    bottom: var(--sp-4);
    right: var(--sp-4);
    padding: var(--sp-2) var(--sp-3);
  }
  .font-resizer-btn {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
}

/* ── Top Contact Bar ───────────────────────────────── */
.top-bar {
  background: var(--c-blue);
  padding-block: var(--sp-2);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 102; /* sits above the fixed nav */
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.top-bar-items {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
.top-bar-item:hover {
  color: white;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.top-bar-right {
  flex-shrink: 0;
}

.top-bar-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-blue);
  background: white;
  padding: var(--sp-1) var(--sp-4);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.top-bar-cta:hover {
  background: var(--c-blue-pale);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .top-bar-right { display: none; }
  .top-bar-items { gap: var(--sp-4); }
  .top-bar-item  { font-size: 0.8125rem; }

  /* Hide the label on mobile — phone and email speak for themselves */
  .top-bar-items p.top-bar-item { display: none; }
}

@media (max-width: 480px) {
  .top-bar-divider { display: none; }
  .top-bar-items {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--sp-3);
  }
  .top-bar-item  { font-size: 0.75rem; }
  .top-bar       { padding-block: var(--sp-1); }
}


/* ── Search Nav Icon ──────────────────────────────── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
}
.nav-search-btn:hover {
  background: var(--c-blue-pale) !important;
  color: var(--c-blue) !important;
}

@media (max-width: 768px) {
  .site-header {
    top: 40px;
  }

  .nav {
    height: 70px;
    padding-block: var(--sp-2);
  }

  .nav-logo-img {
    height: 64px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--c-border);
    box-shadow: var(--shadow-sm);
  }
}

.page-hero--mission {
      background: linear-gradient(135deg, rgba(15, 61, 92, 0.40) 0%, rgba(26, 58, 46, 0.50) 50%), url('photos/pic_4.jpeg') left top/cover no-repeat;
      padding-block: calc(9rem + 70px) 5rem;
      position: relative;
      overflow: hidden;
    }


.page-hero--contact {
      background: linear-gradient(135deg, rgba(15, 61, 92, 0.40) 0%, rgba(26, 58, 46, 0.50) 50%), url('photos/pic_1.jpeg')  top/cover no-repeat;
      padding-block: calc(9rem + 70px) 5rem;
      position: relative;
      overflow: hidden;
    }