/* ==========================================================================
   Soot Healthcare — Main Stylesheet
   Brand: #0F5532 (Soot Green) | #05325A (Soot Navy) | #649655 (Nature Green)
   No gradient colours. Clean, flat, professional design.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --green:        #0F5532;
  --green-dark:   #0a4027;
  --green-mid:    #1a6b40;
  --navy:         #05325A;
  --navy-dark:    #032445;
  --nature:       #649655;
  --nature-dark:  #527a44;
  --white:        #FFFFFF;

  /* Derived surface colours */
  --surface-light: #F4FAF7;   /* very light green tint */
  --surface-alt:   #EDF4F8;   /* very light blue tint */
  --surface-dark:  #0a3d1e;   /* deep green for dark sections */
  --border:        #D4E6DB;
  --border-light:  #E8F4EE;

  /* Text */
  --text-primary:   #05325A;
  --text-secondary: #3D5A6A;
  --text-muted:     #6B8595;
  --text-white:     #FFFFFF;

  /* Typography */
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Sizes */
  --nav-height: 72px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(5, 50, 90, 0.07);
  --shadow-md:  0 4px 16px rgba(5, 50, 90, 0.10);
  --shadow-lg:  0 8px 32px rgba(5, 50, 90, 0.14);
  --shadow-xl:  0 16px 48px rgba(5, 50, 90, 0.16);

  /* Transitions */
  --transition: 0.22s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent; /* Remove iOS tap flash */
}

/* Prevent layout-breaking text overflow on any screen width */
h1, h2, h3, h4, h5, h6, p, li, td, th, label, span, a {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Instant tap response on touch devices */
a, button, [role="button"] {
  touch-action: manipulation;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

address {
  font-style: normal;
}

/* --------------------------------------------------------------------------
   3. ACCESSIBILITY
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--green);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-md);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--light {
  background: var(--surface-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--border-light);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-tag--white {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: var(--space-md);
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* --------------------------------------------------------------------------
   5. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

.text-green { color: var(--green); }
.text-navy  { color: var(--navy); }
.text-nature { color: var(--nature); }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 15px 28px;      /* raised from 13px → 15px: achieves ≥44px tap target */
  min-height: 44px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline--white {
  color: var(--white);
  border-color: var(--white);
}

.btn-outline--white:hover,
.btn-outline--white:focus-visible {
  background: var(--white);
  color: var(--green);
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1rem;
}

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

/* --------------------------------------------------------------------------
   7. NAVIGATION
   -------------------------------------------------------------------------- */

/* ── Header shell ─────────────────────────────────────────────────────────
   position:fixed + translateZ(0) together guarantee the bar is on its own
   GPU compositing layer. This prevents ANY scroll-related drift on iOS
   Safari, Android WebView, and all Chromium-based mobile browsers.
   The mobile-menu and overlay are siblings (not children) of this element
   so their own position:fixed always references the true viewport.        */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  transform: translateZ(0);              /* GPU layer — header never drifts */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ── Visible bar ──────────────────────────────────────────────────────────*/
.navbar {
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(5, 50, 90, 0.09);
}

/* ── Inner flex row ───────────────────────────────────────────────────────*/
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  gap: var(--space-xl);
}

/* ── Logo ─────────────────────────────────────────────────────────────────*/
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
  padding: 8px 0;
}

.nav-logo-img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Footer logo (separate component) ────────────────────────────────────*/
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--space-md);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  background: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-md);
}

/* ── Desktop nav links ────────────────────────────────────────────────────*/
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 11px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--green); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* ── Policies dropdown (desktop only) ────────────────────────────────────*/
.nav-dropdown { position: relative; }

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-icon {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-icon,
.nav-dropdown.open .dropdown-icon { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition), padding-left var(--transition);
}

.dropdown-item:hover {
  color: var(--green);
  background: var(--surface-light);
  padding-left: 24px;
}

/* ── CTA button (desktop) ─────────────────────────────────────────────────*/
.nav-cta {
  flex-shrink: 0;
  padding: 11px 20px;
  min-height: 44px;
  font-size: 0.875rem;
}

/* ── Hamburger ────────────────────────────────────────────────────────────
   Hidden on desktop. On mobile it must NEVER shrink (flex-shrink:0) and
   must always be at least 44×44px for comfortable tapping.               */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover,
.hamburger:focus-visible { background: var(--surface-light); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
}

/* Animated → X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile slide-in drawer ───────────────────────────────────────────────
   Positioned relative to the true viewport (not site-header) because the
   drawer is a sibling of the header, not a child.                        */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100vh;
  height: 100dvh;               /* respects collapsing browser chrome     */
  background: var(--white);
  box-shadow: -4px 0 32px rgba(5, 50, 90, 0.18);
  z-index: 950;
  overflow-y: auto;
  overscroll-behavior: contain; /* keeps scroll inside the drawer         */
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu:not([hidden]) { transform: translateX(0); }

/* Keep the element in the DOM (animated out) but visually hidden */
.mobile-menu[hidden] {
  display: block !important;
  transform: translateX(100%);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--space-xl);
  /* Respect iOS top notch / dynamic island */
  padding-top: max(var(--space-xl), env(safe-area-inset-top, var(--space-xl)));
  /* Respect iOS home indicator */
  padding-bottom: max(var(--space-2xl), env(safe-area-inset-bottom, var(--space-2xl)));
}

/* Close × — always a comfortable tap target */
.mobile-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: flex-end;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.mobile-close:hover,
.mobile-close:focus-visible {
  color: var(--navy);
  background: var(--surface-light);
}

/* Link list */
.mobile-links { display: flex; flex-direction: column; }

.mobile-link {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-link:hover,
.mobile-link.active { color: var(--green); }
.mobile-link.active { padding-left: 8px; }

.mobile-sub-heading {
  padding: 18px 0 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mobile-link.mobile-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 12px;
}

/* CTA pinned to bottom of drawer */
.mobile-cta {
  margin-top: auto;
  padding-top: var(--space-xl);
  width: 100%;
  justify-content: center;
}

/* ── Overlay (dims + blocks background) ──────────────────────────────────*/
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 50, 90, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 940;
}

.mobile-overlay[hidden] { display: none; }

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  background: var(--surface-light);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco--1 {
  width: 500px;
  height: 500px;
  background: var(--green);
  opacity: 0.03;
  top: -200px;
  right: -100px;
}

.hero-deco--2 {
  width: 300px;
  height: 300px;
  background: var(--nature);
  opacity: 0.04;
  bottom: -100px;
  left: 5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border);
}

.hero-heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero visual container */
.hero-visual {
  position: relative;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

.float-card--tl { top: 24px; right: -24px; }
.float-card--br { bottom: 80px; left: -24px; }

/* --------------------------------------------------------------------------
   9. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--navy);
  padding: var(--space-lg) 0;
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item i { color: var(--nature); font-size: 1rem; }

/* --------------------------------------------------------------------------
   10. SERVICES GRID
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.service-cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--green);
}

.service-cat-card.cat-navy { border-top-color: var(--navy); }
.service-cat-card.cat-nature { border-top-color: var(--nature); }

.service-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-cat-icon {
  width: 52px;
  height: 52px;
  background: var(--surface-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.25rem;
}

.cat-navy .service-cat-icon { color: var(--navy); background: var(--surface-alt); }
.cat-nature .service-cat-icon { color: var(--nature-dark); }

.service-cat-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}

.service-cat-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.service-cat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-cat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.service-cat-list i { color: var(--green); font-size: 0.6rem; flex-shrink: 0; }
.cat-navy .service-cat-list i { color: var(--navy); }
.cat-nature .service-cat-list i { color: var(--nature); }

.service-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: var(--space-sm);
  transition: gap var(--transition), color var(--transition);
}

.cat-navy .service-cat-link { color: var(--navy); }

.service-cat-link:hover { gap: 10px; }

/* --------------------------------------------------------------------------
   11. PROMISE SECTION
   -------------------------------------------------------------------------- */
.promise-section {
  background: var(--navy);
  padding: var(--space-3xl) 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
}

.promise-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.promise-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  border-left: 3px solid var(--nature);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.promise-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.promise-value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.pv-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nature);
  font-size: 1rem;
}

.promise-value-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 3px;
}

.promise-value-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. WHY GRID
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid var(--green);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--surface-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. MISSION STRIP
   -------------------------------------------------------------------------- */
.mission-strip {
  background: var(--surface-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2xl) 0;
}

.mission-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  justify-content: space-between;
}

.mission-strip-text { flex: 1; min-width: 300px; }

.mission-strip-text h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.mission-strip-text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.mission-strip-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. VALUES GRID (home preview & full)
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.06;
  line-height: 1;
}

.value-icon {
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: var(--space-md);
}

.value-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Full values grid (About page) */
.values-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.value-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-full-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.vfc-num {
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--green);
  padding: var(--space-lg) 10px;
  flex-shrink: 0;
}

.vfc-body {
  padding: var(--space-xl);
  flex: 1;
}

.vfc-icon {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: var(--space-md);
}

.vfc-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.vfc-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   15. CONTACT CTA STRIP (homepage)
   -------------------------------------------------------------------------- */
.contact-cta {
  background: var(--green);
  padding: var(--space-3xl) 0;
}

.contact-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
  text-align: center;
}

.cta-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.cta-contact-item:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.cta-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cta-contact-icon--wa { color: #25D366; }

.cta-contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.cta-contact-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.contact-cta .btn-primary {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.contact-cta .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* --------------------------------------------------------------------------
   16. PAGE HEADER
   -------------------------------------------------------------------------- */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.page-header-content {
  max-width: 680px;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255,255,255,0.3);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb [aria-current="page"] { color: rgba(255,255,255,0.85); }

/* --------------------------------------------------------------------------
   17. MVV SECTION (About)
   -------------------------------------------------------------------------- */
.mvv-section {
  background: var(--green);
  padding: var(--space-3xl) 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.mvv-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: background var(--transition), transform var(--transition);
}

.mvv-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.mvv-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.mvv-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.mvv-card p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. ABOUT INTRO GRID
   -------------------------------------------------------------------------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-intro-text { display: flex; flex-direction: column; gap: var(--space-md); }

.about-intro-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy);
  line-height: 1.25;
}

.about-intro-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-panel-box {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-panel-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-panel-item i {
  color: var(--green);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.about-panel-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.about-panel-item span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.about-panel-divider {
  height: 1px;
  background: var(--border);
}

.about-panel-motto {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.5;
  padding-left: var(--space-md);
  border-left: 3px solid var(--green);
}

/* --------------------------------------------------------------------------
   19. PROMISE (About page full)
   -------------------------------------------------------------------------- */
.promise-full-section {
  background: var(--surface-light);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0;
}

.promise-full-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.promise-icon-large {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
}

.promise-full-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy);
}

.promise-full-quote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  border-left: none;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--green);
}

.promise-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.pillar i { color: var(--green); }

/* --------------------------------------------------------------------------
   20. SERVICES PAGE
   -------------------------------------------------------------------------- */
.services-tab-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.services-tabs {
  display: flex;
  overflow-x: auto;
  gap: 4px;
  padding: 10px 0;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;       /* smooth snap-to-tab on swipe */
  -webkit-overflow-scrolling: touch;
}

.services-tabs::-webkit-scrollbar { display: none; }

.services-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 12px 20px;    /* raised from 9px 18px → achieves ≥44px tap target */
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.services-tab:hover,
.services-tab.active {
  color: var(--green);
  border-color: var(--border);
  background: var(--surface-light);
}

.services-category {
  padding: var(--space-3xl) 0;
}

.services-category--alt {
  background: var(--surface-light);
}

.cat-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}

.cat-header-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.cat-navy .cat-header-icon { background: var(--navy); }
.cat-nature .cat-header-icon { background: var(--nature-dark); }

.cat-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.cat-header-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.cat-header-text p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sdc-icon {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  font-size: 1.75rem;
  color: var(--green);
}

.sdc-icon.cat-navy { color: var(--navy); }
.sdc-icon.cat-nature { color: var(--nature-dark); }

.sdc-body {
  padding: 0 var(--space-xl) var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sdc-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.sdc-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.sdc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-top: var(--space-sm);
  transition: gap var(--transition);
}

.sdc-link:hover { gap: 10px; }

.services-cta-strip {
  background: var(--navy);
  padding: var(--space-2xl) 0;
}

.services-cta-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.services-cta-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nature);
  font-size: 1.5rem;
}

.services-cta-text { flex: 1; }

.services-cta-text h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.services-cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.services-cta-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.services-cta-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.services-cta-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* --------------------------------------------------------------------------
   21. TEAM PAGE
   -------------------------------------------------------------------------- */
.team-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.team-intro-text { display: flex; flex-direction: column; gap: var(--space-md); }

.team-intro-text h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy);
}

.team-intro-text p { font-size: 1rem; color: var(--text-secondary); }

.team-intro-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.tiv-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.tiv-item i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
}

.tiv-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.tiv-item span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card-photo {
  height: 200px;
  background: var(--surface-light);
  overflow: hidden;
  position: relative;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 4rem;
  background: var(--surface-alt);
}

.team-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.team-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.team-card-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
}

.team-card-dept {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.team-card-bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.team-update-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
}

.notice-icon {
  color: var(--navy);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.team-update-notice strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-update-notice p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.team-update-notice a {
  color: var(--green);
  font-weight: 600;
}

.join-section {
  background: var(--green);
  padding: var(--space-3xl) 0;
}

.join-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.join-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
}

.join-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--white);
}

.join-inner p {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}

.join-inner .btn-primary {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.join-inner .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* --------------------------------------------------------------------------
   22. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.contact-info-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.contact-cards-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.contact-card--static { cursor: default; }
.contact-card--static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--surface-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
}

.contact-card-icon--wa { color: #25D366; background: #f0faf4; }

.contact-card-body {
  display: flex;
  flex-direction: column;
}

.contact-card-body strong {
  font-size: 0.875rem;
  color: var(--navy);
}

.contact-card-body span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card-body small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-placeholder {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.map-placeholder-inner i {
  font-size: 2.5rem;
  color: var(--navy);
  opacity: 0.3;
}

.map-placeholder-inner strong { color: var(--navy); font-size: 0.9375rem; }
.map-placeholder-inner p { font-size: 0.8rem; color: var(--text-muted); }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.map-link:hover {
  background: var(--green);
  color: var(--white);
}

.contact-form-wrap { position: sticky; top: calc(var(--nav-height) + 24px); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
}

.form-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.book-strip {
  background: var(--surface-light);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0;
}

.book-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.book-strip-text {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.book-strip-text i {
  font-size: 1.75rem;
  color: var(--green);
}

.book-strip-text h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.book-strip-text p { font-size: 0.9rem; color: var(--text-secondary); }

/* --------------------------------------------------------------------------
   23. APPOINTMENT PAGE
   -------------------------------------------------------------------------- */
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: start;
}

.appt-info {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.appt-info h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: var(--space-xl);
}

.appt-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.appt-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.appt-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appt-step strong { display: block; color: var(--navy); margin-bottom: 3px; }
.appt-step p { font-size: 0.875rem; color: var(--text-secondary); }

.appt-contacts {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.appt-contacts-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.appt-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}

.appt-contact-link:hover {
  border-color: var(--green);
  color: var(--green);
}

.appt-contact-link--wa { color: #25D366; }
.appt-contact-link--wa:hover { border-color: #25D366; color: #25D366; }

.appt-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
}

/* --------------------------------------------------------------------------
   24. FORMS
   -------------------------------------------------------------------------- */
.site-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: flex;
  gap: var(--space-md);
}

.form-row--2 > * { flex: 1; min-width: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.required { color: var(--green); margin-left: 2px; }

.form-input {
  padding: 13px 14px;    /* raised from 11px → 13px: achieves ≥44px target */
  min-height: 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;       /* 16px minimum: prevents iOS auto-zoom on focus */
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 85, 50, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2305325A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-sm);
}

.form-note a { color: var(--green); font-weight: 600; }

/* --------------------------------------------------------------------------
   25. ALERTS
   -------------------------------------------------------------------------- */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.alert i { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }

.alert strong { display: block; margin-bottom: 4px; }

.alert p { font-size: 0.9rem; margin: 0; }

.alert-success {
  background: #f0faf4;
  border: 1px solid #a8d5ba;
  color: #1a6b40;
}

.alert-success strong { color: #0F5532; }
.alert-success p { color: #2d7a52; }

.alert-error {
  background: #fff5f5;
  border: 1px solid #f5b8b8;
  color: #c0392b;
}

.alert-error strong { color: #922b21; }
.alert-error p { color: #c0392b; }

/* --------------------------------------------------------------------------
   26. POLICY PAGES
   -------------------------------------------------------------------------- */
.policy-section .container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--space-xl);
  list-style: decimal;
  padding-left: var(--space-md);
}

.toc-list li { list-style: decimal; }

.toc-list a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding: 4px 0;
  display: block;
}

.toc-list a:hover { color: var(--green); }

.toc-other-policies {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-other-policies strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.toc-other-policies a {
  font-size: 0.875rem;
  color: var(--green);
  font-weight: 500;
}

.policy-content { padding: var(--space-xl) 0; }

.policy-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.policy-meta span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.policy-notice {
  background: var(--surface-alt);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem !important;
  color: var(--navy) !important;
  font-style: italic;
}

.policy-placeholder-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: #fffceb;
  border: 1px solid #f0d070;
  border-left: 4px solid #d4a820;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.policy-placeholder-notice i {
  color: #d4a820;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.policy-placeholder-notice strong {
  display: block;
  color: #8b6c10;
  margin-bottom: 4px;
}

.policy-placeholder-notice p {
  font-size: 0.9rem;
  color: #7a6020;
}

.policy-content section {
  margin-bottom: var(--space-2xl);
}

.policy-content h2 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--border);
}

.policy-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.policy-content ul, .policy-content ol {
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-content ul li { list-style: disc; }
.policy-content ol li { list-style: decimal; }

.policy-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.policy-content a { color: var(--green); font-weight: 500; }

.policy-address {
  background: var(--surface-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  line-height: 2;
  font-size: 0.9375rem;
}

.policy-address a { color: var(--green); }

.promise-policy-box {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.promise-policy-box i {
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
}

.promise-policy-box blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.75;
  border-left: none;
  padding: 0;
  font-style: italic;
}

.promise-policy-box p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* --------------------------------------------------------------------------
   27. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
}

.footer-top {
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin: var(--space-md) 0;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;                /* gap replaced by padding on each link for larger tap targets */
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 40px;      /* comfortable touch target in the footer context */
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-list i {
  color: var(--nature);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-policy-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-policy-links a:hover { color: rgba(255,255,255,0.7); }

/* --------------------------------------------------------------------------
   28. FLOATING ACTION BUTTONS
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
  z-index: 800;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.fab-whatsapp {
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  font-size: 1.5rem;
}

.fab-call {
  background: var(--navy);
  color: var(--white);
}


/* --------------------------------------------------------------------------
   29. REAL IMAGE COMPONENTS
   -------------------------------------------------------------------------- */

/* --- Hero image frame (replaces green panel) --- */
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-xl);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img-frame:hover .hero-photo {
  transform: scale(1.03);
}

/* Flat translucent overlay at the bottom — NO gradient */
.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 50, 90, 0.80);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
}

.hero-photo-caption i {
  color: var(--nature);
  flex-shrink: 0;
  font-size: 1.1rem;
  font-style: normal;
}

/* --- Service category card images (home page) --- */
/* Cards now use overflow:hidden + a body wrapper */
.service-cat-card {
  overflow: hidden;
  padding: 0; /* image bleeds to edges; body has its own padding */
}

.service-cat-img-wrap {
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-cat-card:hover .service-cat-img {
  transform: scale(1.06);
}

.service-cat-body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

/* --- Service detail card images (services page) --- */
.sdc-img-wrap {
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.sdc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-detail-card:hover .sdc-img {
  transform: scale(1.05);
}

/* --- About intro image --- */
.about-intro-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

.about-intro-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-intro-img-wrap:hover .about-intro-img {
  transform: scale(1.04);
}

/* --- Team gallery --- */
.team-gallery-section {
  background: var(--surface-light);
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.team-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-md);
}

.team-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.team-gallery-item:hover img {
  transform: scale(1.06);
}

.team-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 50, 90, 0.75);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px var(--space-lg);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   30. ANIMATIONS
   -------------------------------------------------------------------------- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(24px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger animations for grid children */
.services-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

.why-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.why-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.why-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

.values-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.values-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.values-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   30. MEDIA QUERIES — RESPONSIVE
   -------------------------------------------------------------------------- */

/* Large tablet (1024px) */
@media (max-width: 1024px) {
  :root { --space-3xl: 72px; --space-2xl: 48px; }
  .container { padding: 0 var(--space-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .hero-grid { gap: var(--space-xl); }
  .float-card--tl { top: 16px; right: -12px; }
  .float-card--br { bottom: 60px; left: -12px; }
}

/* ─── Tablet / Large phone (≤768px) ─────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-3xl: 56px;
    --space-2xl: 40px;
    /* Reduce nav height on mobile — all calc(var(--nav-height)+…) expressions
       in hero and page-header automatically adjust because they use this token */
    --nav-height: 60px;
  }

  /* ── Navigation ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Tight padding & gap so logo + hamburger always fit on a 320px phone:
     16px + 155px + 12px + 44px + 16px = 243px  (< 320px)  safe margin: 77px */
  .nav-container {
    padding: 0 16px;
    gap: 12px;
  }

  /* Logo: explicit cap — never crowds the hamburger */
  .nav-logo { padding: 6px 0; }
  .nav-logo-img { max-width: 155px; }

  /* ── Hero: stack to 1-col but KEEP the image — move it above text ── */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .hero-visual {
    display: block;          /* was "none" — now always visible */
    order: -1;               /* image appears ABOVE the text content */
  }
  .hero { padding-top: calc(var(--nav-height) + 32px); }
  .hero-img-frame { height: 240px; border-radius: var(--radius-md); }
  /* Float-cards overlap awkwardly on small screens — hide them */
  .float-card { display: none; }
  /* Show caption at a legible size */
  .hero-photo-caption { font-size: 0.875rem; padding: 12px var(--space-lg); }

  /* ── Service category cards: 2-per-row saves vertical scroll ── */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cat-img-wrap { height: 130px; }
  .service-cat-body { padding: var(--space-md); gap: var(--space-sm); }
  .service-cat-name { font-size: 0.95rem; }
  .service-cat-desc { font-size: 0.8rem; }
  .service-cat-list { font-size: 0.8rem; }

  /* ── Services detail grid: 2-per-row ── */
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .sdc-img-wrap { height: 150px; }

  /* ── Other content grids ── */
  .promise-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }       /* keep 2-col */
  .about-intro-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: repeat(2, 1fr); }       /* 2-col (was 1) */
  .values-full-grid { grid-template-columns: repeat(2, 1fr); } /* 2-col (was 1) */
  .team-intro-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }      /* keep 2-col */
  .team-gallery { grid-template-columns: repeat(2, 1fr); }   /* 2-col (was 1) */
  .team-gallery-item { height: 200px; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { position: static; }
  .appointment-grid { grid-template-columns: 1fr; }
  .appt-info { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; }

  /* ── About intro image ── */
  .about-intro-img-wrap { height: 200px; }

  /* ── Mission strip ── */
  .mission-strip-inner { flex-direction: column; align-items: flex-start; }
  .mission-strip-actions { flex-wrap: wrap; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
  .footer-brand { grid-column: 1 / -1; }  /* brand spans full width */
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  /* ── Services category header ── */
  .cat-header { flex-direction: column; }

  /* ── Trust bar ── */
  .trust-list { gap: var(--space-md); flex-wrap: wrap; }
  .trust-item { font-size: 0.8rem; }

  /* ── Floating action buttons: safe area + comfortable edge offset ── */
  .floating-actions {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: max(16px, env(safe-area-inset-right, 16px));
  }
}

/* ─── Phone (≤480px) ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --space-3xl: 48px; --space-2xl: 32px; }

  .container { padding: 0 var(--space-md); }

  /* Hero */
  .hero-stats { gap: var(--space-lg); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }

  /* ── Grids that CAN stay 2-col on phones (compact cards) ── */
  /* why-grid: stays at repeat(2,1fr) from 768px rule ✓          */
  /* team-grid: stays at repeat(2,1fr) from 768px rule ✓         */
  /* mvv-grid: stays at repeat(2,1fr) from 768px rule ✓          */

  /* Values grid uses auto-fit/minmax(240px) which collapses;
     force it back to 2-col explicitly */
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-full-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Grids that need 1-col (image-heavy or long descriptions) ── */
  .services-grid { grid-template-columns: 1fr; }        /* category cards: 1-col */
  .services-detail-grid { grid-template-columns: 1fr; } /* detail cards: 1-col   */
  .team-gallery { grid-template-columns: 1fr; }         /* gallery: 1-col        */
  .team-gallery-item { height: 200px; }

  /* ── Image heights ── */
  .hero-img-frame { height: 200px; }
  .service-cat-img-wrap { height: 130px; }
  .sdc-img-wrap { height: 160px; }
  .about-intro-img-wrap { height: 180px; }

  /* ── Forms ── */
  .form-row--2 { flex-direction: column; }
  .appt-form-box { padding: var(--space-lg); }
  .contact-form-box { padding: var(--space-lg); }

  /* ── CTAs ── */
  .cta-contacts { flex-direction: column; width: 100%; }
  .cta-contact-item { justify-content: center; }
  .services-cta-inner { flex-direction: column; align-items: flex-start; }
  .services-cta-actions { width: 100%; }
  .services-cta-actions .btn-primary,
  .services-cta-actions .btn-outline { width: 100%; justify-content: center; }
  .book-strip-inner { flex-direction: column; }
  .promise-pillars { gap: var(--space-sm); }
  .mission-strip-actions { width: 100%; }
  .mission-strip-actions .btn-outline,
  .mission-strip-actions .btn-primary { flex: 1; justify-content: center; }

  /* ── Footer: single column on phones ── */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ─── Very small phone (≤360px) ─────────────────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }

  /* Stats */
  .hero-stats { flex-direction: column; gap: var(--space-md); border: none; }

  /* Trust bar */
  .trust-list { flex-direction: column; align-items: flex-start; }

  /* All grids → 1-col at very small widths
     Exception: team-grid (photo thumbnails) stays 2-col — fine at 156px each */
  .values-grid      { grid-template-columns: 1fr; }
  .values-full-grid { grid-template-columns: 1fr; }
  .mvv-grid         { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .team-gallery     { grid-template-columns: 1fr; }

  /* Reduce card body padding to fit content at 328px viewport */
  .service-cat-body { padding: var(--space-sm) var(--space-md); }

  /* Compact hero image */
  .hero-img-frame { height: 175px; }
  .about-intro-img-wrap { height: 160px; }
}
