/* ============================================================
   YatGo Transport & Logistics — Global Stylesheet
   
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

/* ── CSS Variables ── */
:root {
  --navy: #1b2a4a;
  --navy-deep: #111e35;
  --navy-mid: #1e3156;
  --navy-light: #111e35;
  --navy-pale: #eef1f7;
  --green: #2e7d32;
  --green-light: #388e3c;
  --green-dark: #1b5e20;
  --green-pale: #e8f5e9;
  --green-mid: #c8e6c9;
  --green-bright: #4caf50;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --grey-light: #edf0f5;
  --grey-mid: #b0bac8;
  --grey-text: #6b7a96;
  --text-dark: #1a2238;
  --text-body: #3d4a5c;

  --font-display: "Outfit", sans-serif;
  --font-condensed: "Outfit", sans-serif;
  --font-body: "Outfit", sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.08);
  --shadow-md: 0 6px 24px rgba(27, 42, 74, 0.12);
  --shadow-lg: 0 16px 48px rgba(27, 42, 74, 0.18);
  --shadow-xl: 0 24px 72px rgba(27, 42, 74, 0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1400px;
  --container-wide: 1600px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.hero-slide-section,
.hero-slide-section *,
.booking-card-v2,
.booking-card-v2 * {
  font-family: "Outfit", sans-serif;
}

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --hero-pad-x: 64px;
  --hero-gap: 72px;
  --hero-pt: 148px;
  --hero-pb: 108px;
  --card-radius: 20px;
  --card-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5), 0 6px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

/* ── CONTAINER-WIDE  1600px ──────────────────────────────────── */
.container-wide {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--hero-pad-x);
}
/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-condensed);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.005em;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
h4 {
  font-size: 1.15rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
}

.display-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  position: relative;
}

.section-pad {
  padding: 96px 0;
}
.section-pad-sm {
  padding: 64px 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(31, 122, 58, 0.35);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 122, 58, 0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27, 42, 74, 0.25);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header .display-label {
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--grey-text);
  font-weight: 400;
}

/* ── Divider ── */
.divider-line {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-line.left {
  margin-left: 0;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION  
══════════════════════════════════════════════════════════════ */

/* ── Shell ──────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* subtle gradient so transparent links are legible over any hero */
  background: linear-gradient(
    180deg,
    rgba(10, 18, 36, 0.72) 0%,
    transparent 100%
  );
  transition:
    background 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Scrolled: white bar, navy text ────────────────────────── */
.site-nav.scrolled {
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(27, 42, 74, 0.08),
    0 4px 24px rgba(27, 42, 74, 0.09);
}

/* ── Inner row ─────────────────────────────────────────────── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* ── Logo ──────────────────────────────────────────────────── */
.logo {
  flex-shrink: 0;
  line-height: 0;
}
.logo a {
  display: inline-block;
}
.logo img {
  height: 50px;
  display: block;
  transition: filter 0.3s ease;
}

/* ── Desktop nav links ─────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

/* Active link */
.nav-links a.active {
  color: var(--green-bright);
  background: rgba(255, 255, 255, 0.12);
}

/* ── When scrolled ─────────────────── */
.site-nav.scrolled .nav-links a {
  color: var(--navy);
}
.site-nav.scrolled .nav-links a:hover {
  color: var(--navy);
  background: var(--grey-light);
}
.site-nav.scrolled .nav-links a.active {
  color: var(--green);
}
.site-nav.scrolled .nav-links a.active::after {
  background: var(--green);
}

/* ── Desktop CTA buttons ───────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Sign In becomes outlined when scrolled so it reads on white */
.site-nav.scrolled .nav-actions .btn-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(27, 42, 74, 0.35);
  box-shadow: none;
}
.site-nav.scrolled .nav-actions .btn-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Hamburger button  (hidden on desktop) ─────────────────── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  transition: background 0.22s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}
.site-nav.scrolled .nav-toggle:hover {
  background: var(--grey-light);
}

/* The three bars */
.nav-toggle .bar {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.22s ease,
    top 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.22s ease;
}
.nav-toggle .bar:nth-child(1) {
  top: 13px;
}
.nav-toggle .bar:nth-child(2) {
  top: 20px;
}
.nav-toggle .bar:nth-child(3) {
  top: 27px;
}

/* Scrolled → bars turn navy */
.site-nav.scrolled .nav-toggle .bar {
  background: var(--navy);
}

/* Open → X  */
.mobile-nav-open .nav-toggle .bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}
.mobile-nav-open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-nav-open .nav-toggle .bar:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* ── Desktop responsive tightening  1025 → 901 px ──────────── */
@media (max-width: 1200px) {
  .nav-links a {
    font-size: 0.83rem;
    padding: 8px 10px;
  }
}
@media (max-width: 1024px) {
  .nav-inner {
    gap: 10px;
  }
  .nav-links a {
    font-size: 0.79rem;
    padding: 7px 8px;
  }
  .nav-actions .btn-sm {
    padding: 9px 16px;
    font-size: 0.79rem;
  }
}

/* ── Hamburger breakpoint  ≤ 900 px ────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE DRAWER
   White panel that slides down below the nav bar.
   Order: nav links first → divider → CTA buttons.
══════════════════════════════════════════════════════════════ */

/* Blurred backdrop dim */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px; /* below the nav bar */
  background: rgba(10, 18, 40, 0.48);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer; /* clicking dim closes drawer */
}
.mobile-nav-open .nav-backdrop {
  display: block;
  opacity: 1;
}

/* Drawer panel */
.nav-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  /* Slide up when closed */
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.34s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
  /* Clip top corners of drawer */
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 40px rgba(10, 18, 40, 0.18);
  overflow: hidden;
}
.mobile-nav-open .nav-drawer {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Link list inside drawer */
.nav-drawer-links {
  list-style: none;
  padding: 8px 16px 4px;
  margin: 0;
}
.nav-drawer-links li {
  border-bottom: 1px solid var(--grey-light);
}
.nav-drawer-links li:last-child {
  border-bottom: none;
}

.nav-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.nav-drawer-links a:hover {
  color: var(--green);
  padding-left: 14px;
}
.nav-drawer-links a.active {
  color: var(--green);
}
/* Green dot on active */
.nav-drawer-links a.active::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
/* Chevron on inactive */
.nav-drawer-links a:not(.active)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--grey-mid);
  border-right: 2px solid var(--grey-mid);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}

/* Action buttons row */
.nav-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--off-white);
  border-top: 1px solid var(--grey-light);
}
.nav-drawer-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 0.95rem;
}
/* Sign In outlined inside drawer */
.nav-drawer-actions .btn-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(27, 42, 74, 0.3);
  box-shadow: none;
}
.nav-drawer-actions .btn-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Very small phones ─────────────────────────────────────── */
@media (max-width: 480px) {
  .nav-drawer-links {
    padding: 6px 12px 2px;
  }
  .nav-drawer-links a {
    padding: 13px 6px;
    font-size: 0.95rem;
  }
  .nav-drawer-actions {
    padding: 14px 12px;
  }
}

/* ── SECTION SHELL ───────────────────────────────────────────── */
.hero-slide-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

/* ── SLIDE BACKGROUNDS ───────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0s;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1),
    transform 7s cubic-bezier(0, 0, 0.35, 1);
}
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 0.95s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.95s ease;
  z-index: 1;
}

/* ── OVERLAY LAYERS ──────────────────────────────────────────── */
.hero-overlay-base {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, 0.48);
  z-index: 2;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 15, 28, 0.9) 0%,
    rgba(8, 15, 28, 0.72) 38%,
    rgba(8, 15, 28, 0.28) 64%,
    transparent 100%
  );
  z-index: 3;
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 52%,
    rgba(8, 15, 28, 0.65) 100%
  );
  z-index: 3;
}

/* ── TWO-COLUMN LAYOUT ───────────────────────────────────────── */

.hero-layout {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--hero-gap);
  align-items: center;
  width: 100%;
  padding-top: var(--hero-pt);
  padding-bottom: var(--hero-pb);
}

/* ── LEFT — COPY COLUMN ──────────────────────────────────────── */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 22px;
  padding: 8px 18px 8px 13px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.28);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
  animation: eyebrowPulse 2.2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

/* Headline */
.hero-h1 {
  font-size: clamp(3.2rem, 5vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.hero-hl {
  color: var(--green-bright);
  font-style: normal;
}
.hero-em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  font-size: 0.82em;
  letter-spacing: 0.005em;
}

/* Body */
.hero-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.82;
  max-width: 540px;
  margin-bottom: 40px;
}

/* CTA buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-slide-section .btn {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Trust pills */
.hero-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
  cursor: default;
}
.hero-trust-pill svg {
  flex-shrink: 0;
  stroke: var(--green-bright);
}
.hero-trust-pill:hover {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

/* ── RIGHT — BOOKING CARD ────────────────────────────────────── */
.hero-form-col {
  width: 100%;
}

.booking-card-v2 {
  background: rgba(255, 255, 255, 0.975);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.card-accent-bar {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--green) 55%,
    var(--green-bright) 100%
  );
}

.card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px 6px;
}
.card-head-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-head-icon svg {
  stroke: var(--white);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 2px;
  line-height: 1.2;
}
.card-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--grey-text);
  margin: 0;
}

.quote-form {
  padding: 16px 28px 0;
}

.qf-group {
  margin-bottom: 12px;
}

.qf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 5px;
}
.qf-label svg {
  stroke: var(--green);
  flex-shrink: 0;
}

.qf-input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--grey-light);
  border-radius: 7px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.qf-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.11);
  background: #fff;
}
.qf-input::placeholder {
  color: var(--grey-mid);
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.qf-select-wrap {
  position: relative;
}
.qf-select-wrap .qf-input {
  cursor: pointer;
  padding-right: 34px;
}
.qf-chevron {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: var(--grey-text);
}

.card-error {
  margin: 8px 28px 0;
  padding: 10px 14px;
  background: #fff0ee;
  border: 1px solid #ffcdd2;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #c62828;
}

.quote-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.card-footer-note {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 28px 18px;
  font-size: 0.73rem;
  font-weight: 400;
  color: var(--grey-text);
  border-top: 1px solid var(--grey-light);
  margin-top: 12px;
  line-height: 1.4;
}
.card-footer-note svg {
  stroke: var(--green);
  flex-shrink: 0;
}

.quote-success {
  text-align: center;
  padding: 36px 28px 28px;
}
.quote-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}
.quote-success h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.quote-success p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── SLIDE CAPTION  bottom-left ──────────────────────────────── */
.hero-slide-caption {
  position: absolute;
  bottom: 56px;
  left: var(--hero-pad-x);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  max-width: 45%;
}
.caption-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  flex-shrink: 0;
}
.caption-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.55);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── SLIDE CONTROLS  bottom-right ────────────────────────────── */
.hero-slide-controls {
  position: absolute;
  bottom: 48px;
  right: var(--hero-pad-x);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-slide-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slide-dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    width 0.3s ease;
}
.slide-dot.active {
  background: var(--green-bright);
  width: 42px;
}
.slide-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.55);
}
.hero-slide-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}
#slideCurrentNum {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.slide-counter-sep {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}
.slide-counter-total {
  font-size: 0.85rem;
}

/* ── PROGRESS BAR ────────────────────────────────────────────── */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 20;
}
.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--navy-light), var(--green-bright));
  border-radius: 0 2px 2px 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════ */

@media (max-width: 1400px) {
  :root {
    --hero-pad-x: 52px;
    --hero-gap: 60px;
  }
  .hero-h1 {
    font-size: clamp(3rem, 4.5vw, 5.4rem);
  }
}

@media (max-width: 1200px) {
  :root {
    --hero-pad-x: 44px;
    --hero-gap: 48px;
    --hero-pt: 130px;
    --hero-pb: 96px;
  }
  .hero-layout {
    grid-template-columns: 1fr 440px;
  }
  .hero-h1 {
    font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  }
  .hero-body {
    font-size: 1rem;
  }
}

/* 1024px — laptop */
@media (max-width: 1024px) {
  :root {
    --hero-pad-x: 36px;
    --hero-gap: 40px;
    --hero-pt: 120px;
    --hero-pb: 88px;
  }
  .hero-layout {
    grid-template-columns: 1fr 400px;
  }
  .hero-h1 {
    font-size: clamp(2.6rem, 4vw, 4.2rem);
  }
  .hero-body {
    font-size: 0.97rem;
    max-width: 420px;
  }
}

/* 900px — begin stacking */
@media (max-width: 900px) {
  :root {
    --hero-pad-x: 32px;
    --hero-gap: 40px;
    --hero-pt: 110px;
    --hero-pb: 100px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-form-col {
    max-width: 560px;
  }
  .hero-body {
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(2.8rem, 5.5vw, 4rem);
  }
  /* Flatten the left-gradient for stacked layout */
  .hero-overlay-left {
    background: linear-gradient(
      180deg,
      rgba(8, 15, 28, 0.82) 0%,
      rgba(8, 15, 28, 0.6) 60%,
      rgba(8, 15, 28, 0.4) 100%
    );
  }
}

/* 768px — tablet / large phone */
@media (max-width: 768px) {
  :root {
    --hero-pad-x: 24px;
    --hero-pt: 100px;
    --hero-pb: 90px;
  }
  .hero-h1 {
    font-size: clamp(2.4rem, 6.5vw, 3.4rem);
  }
  .hero-body {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .hero-btns {
    margin-bottom: 32px;
  }
  .hero-btns .btn {
    justify-content: center;
  }
  .hero-form-col {
    max-width: 100%;
  }
  .hero-slide-caption {
    bottom: 56px;
    left: var(--hero-pad-x);
  }
  .hero-slide-controls {
    bottom: 48px;
    right: var(--hero-pad-x);
    gap: 14px;
  }
}

/* 640px — mobile */
@media (max-width: 640px) {
  :root {
    --hero-pad-x: 20px;
    --hero-pt: 96px;
    --hero-pb: 80px;
  }
  .hero-h1 {
    font-size: clamp(2.2rem, 7.5vw, 3rem);
    letter-spacing: -0.02em;
  }
  .hero-eyebrow {
    font-size: 0.66rem;
  }
  .hero-body {
    font-size: 0.92rem;
    line-height: 1.72;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-row {
    gap: 8px;
  }
  .hero-trust-pill {
    font-size: 0.68rem;
    padding: 6px 11px;
  }
  .qf-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-slide-caption {
    display: none;
  }
  .hero-slide-controls {
    bottom: 40px;
    right: var(--hero-pad-x);
    gap: 10px;
  }
}

/* 480px — small phone */
@media (max-width: 480px) {
  :root {
    --hero-pad-x: 16px;
    --hero-pt: 88px;
    --hero-pb: 72px;
  }
  .hero-h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-slide-counter {
    display: none;
  }
  .card-head {
    padding: 18px 20px 4px;
  }
  .quote-form {
    padding: 14px 20px 0;
  }
  .card-footer-note {
    padding: 12px 20px 16px;
  }
  .card-error {
    margin: 8px 20px 0;
  }
}

/* 360px — very small phone */
@media (max-width: 360px) {
  :root {
    --hero-pad-x: 14px;
    --hero-pt: 84px;
  }
  .hero-h1 {
    font-size: 1.95rem;
  }
  .hero-body {
    font-size: 0.88rem;
  }
  .hero-trust-pill {
    font-size: 0.64rem;
    padding: 5px 9px;
    gap: 5px;
  }
  .booking-card-v2 {
    border-radius: 14px;
  }
}

/* ── SHORT VIEWPORT  height ≤ 680px, width ≥ 769px ──────────── */
@media (max-height: 680px) and (min-width: 769px) {
  :root {
    --hero-pt: 92px;
    --hero-pb: 80px;
  }
  .hero-layout {
    gap: 36px;
  }
  .hero-h1 {
    font-size: 2.8rem;
    margin-bottom: 14px;
  }
  .hero-eyebrow {
    margin-bottom: 14px;
    padding: 6px 14px 6px 10px;
  }
  .hero-body {
    font-size: 0.92rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .hero-btns {
    margin-bottom: 22px;
  }

  /* Compact card */
  .card-head {
    padding: 14px 24px 4px;
  }
  .card-head-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }
  .quote-form {
    padding: 10px 24px 0;
  }
  .qf-group {
    margin-bottom: 8px;
  }
  .qf-input {
    padding: 8px 12px;
    font-size: 0.84rem;
  }
  .qf-label {
    font-size: 0.64rem;
    margin-bottom: 4px;
  }
  .card-footer-note {
    padding: 10px 24px 14px;
    margin-top: 8px;
  }
  .quote-form .btn {
    padding: 12px;
    font-size: 0.9rem;
  }

  .hero-slide-caption {
    bottom: 28px;
  }
  .hero-slide-controls {
    bottom: 22px;
  }
}

/* ── LANDSCAPE PHONE  height ≤ 520px, width ≤ 900px ─────────── */
@media (max-height: 520px) and (max-width: 900px) {
  :root {
    --hero-pt: 80px;
    --hero-pb: 60px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-h1 {
    font-size: 1.9rem;
    margin-bottom: 10px;
  }
  .hero-body {
    display: none;
  }
  .hero-btns {
    margin-bottom: 18px;
    flex-direction: row;
  }
  .hero-btns .btn {
    width: auto;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .hero-trust-row {
    display: none;
  }
  .hero-form-col {
    max-width: 480px;
  }
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--navy);
  padding: 28px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}
.trust-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--green);
}
.trust-item-label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  line-height: 1.2;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step-card {
  background: var(--white);
  padding: 40px 28px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  background: var(--navy);
}
.step-card:hover .step-number {
  color: rgba(255, 255, 255, 0.08);
}
.step-card:hover .step-icon-wrap {
  background: var(--green);
  border-color: var(--green);
}
.step-card:hover .step-icon-wrap svg {
  fill: var(--white);
}
.step-card:hover h4,
.step-card:hover p {
  color: var(--white);
}
.step-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}
.step-card:hover .step-connector {
  background: var(--green);
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--grey-light);
  position: absolute;
  top: 16px;
  right: 20px;
  transition: var(--transition);
}
.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 2px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.step-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--navy);
  transition: var(--transition);
}
.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition);
}
.step-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.6;
  transition: var(--transition);
}

/* ── SERVICES ── */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--green);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--green);
  transition: var(--transition);
}
.service-card:hover .service-icon svg {
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card .service-link {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card:hover .service-link {
  gap: 10px;
}

/* ── WHY CHOOSE YATGO ── */
.why-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 50%,
      rgba(46, 125, 50, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 60% at 10% 80%,
      rgba(232, 88, 26, 0.08) 0%,
      transparent 60%
    );
}
.why-section .section-header h2,
.why-section .section-header .display-label {
  color: var(--white);
}
.why-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.benefit-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 16px;
}
.benefit-card h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--green);
  opacity: 0.2;
  position: absolute;
  top: 24px;
  left: 24px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars span {
  color: #f59e0b;
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.author-role {
  font-size: 0.8rem;
  color: var(--grey-text);
}

/* ── INDUSTRIES ── */
.industries-section {
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.industry-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #111e35 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  height: 50px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-tagline {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.footer-col h5 {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.85;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
  margin: 0;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--green);
  color: var(--green-pale);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  flex: 1;
  text-align: center;
}

.footer-credit a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
  color: var(--green);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
  }

  .footer-bottom p,
  .footer-credit {
    text-align: left;
    margin: 0;
  }

  .footer-bottom-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow:
      0 6px 36px rgba(37, 211, 102, 0.65),
      0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}

/* ── ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip-inner {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --container: 100%;
  }
  .container {
    padding: 0 16px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
/* ── LEGAL DOCS ── */
.legal-docs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
}
.legal-docs-tabs a {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(0, 0, 0, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.legal-docs-tabs a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}
.legal-docs-tabs a.active {
  background: var(--green);
  color: var(--white);
}

.legal-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 42px;
}
.legal-meta-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.legal-meta-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.legal-meta-card strong {
  display: block;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
}
.legal-content .doc-label {
  display: inline-block;
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--green);
  margin-bottom: 18px;
}
.legal-content h2 {
  margin-top: 0;
  margin-bottom: 22px;
}
.legal-content h3 {
  margin-top: 38px;
  margin-bottom: 18px;
  color: var(--navy);
}
.legal-content h4 {
  margin-top: 28px;
  margin-bottom: 14px;
  color: var(--navy);
}
.legal-content p {
  margin-bottom: 20px;
  color: var(--text-body);
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 24px 1.4rem;
  padding-left: 0;
  color: var(--text-body);
}
.legal-content li {
  margin-bottom: 10px;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
}
.legal-content ol {
  list-style: decimal;
}
.legal-content .legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
}
.legal-content .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}
.legal-content .legal-table th,
.legal-content .legal-table td {
  padding: 14px 16px;
  border: 1px solid rgba(27, 42, 74, 0.08);
  vertical-align: top;
}
.legal-content .legal-table th {
  background: rgba(46, 125, 50, 0.08);
  color: var(--navy);
  text-align: left;
  font-weight: 700;
}
.legal-content .legal-note {
  padding: 22px 24px;
  border-radius: 14px;
  border-left: 4px solid var(--green);
  background: rgba(46, 125, 50, 0.08);
  margin: 28px 0;
  color: var(--text-dark);
}
.legal-content .legal-signature-block {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(27, 42, 74, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
}
.legal-content .legal-signature-block p {
  margin-bottom: 16px;
}
.key-statement {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  margin: 28px 0 34px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.1),
    rgba(27, 42, 74, 0.06)
  );
  border: 1px solid rgba(46, 125, 50, 0.18);
  box-shadow: 0 14px 34px rgba(27, 42, 74, 0.08);
  position: relative;
  overflow: hidden;
}

.key-statement::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--green);
}

.key-statement-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(46, 125, 50, 0.25);
  margin-top: 2px;
}

.key-statement-body {
  flex: 1;
  min-width: 0;
}

.key-statement-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.key-statement p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.8;
}

.key-statement p strong {
  color: var(--navy);
}

@media (max-width: 640px) {
  .key-statement {
    padding: 18px 18px 18px 16px;
    gap: 14px;
    border-radius: 16px;
  }

  .key-statement-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .key-statement p {
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .legal-docs-tabs {
    justify-content: stretch;
  }
  .legal-docs-tabs a {
    flex: 1 1 auto;
    text-align: center;
  }
}
/* ── PAGES HERO (non-slideshow) ── */
.page-hero {
  background: var(--navy-deep);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(46, 125, 50, 0.14) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 70% at 10% 80%,
      rgba(46, 125, 50, 0.07) 0%,
      transparent 60%
    ),
    linear-gradient(140deg, #0d1929 0%, #1b2a4a 55%, #111e35 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-inner .display-label {
  color: var(--green-bright);
  display: block;
  margin-bottom: 14px;
}
.page-hero-inner h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-hero-inner h1 .hl {
  color: var(--green-bright);
}
.page-hero-inner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 36px;
}

/* ── ABOUT PAGE ── */
/* ── ABOUT INTRO SPLIT ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-text .display-label {
  display: block;
  margin-bottom: 12px;
}
.about-intro-text h2 {
  margin-bottom: 20px;
}
.about-intro-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 18px;
}
.about-intro-text p:last-of-type {
  color: var(--grey-text);
}
.about-intro-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Dark stats card */
.about-stats-card {
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.about-stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 75% 25%,
    rgba(46, 125, 50, 0.18) 0%,
    transparent 65%
  );
}
.about-stats-inner {
  position: relative;
  z-index: 1;
}
.about-stats-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 28px;
}
.stats-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.kenya-badge {
  margin-top: 22px;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.kenya-badge-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.kenya-badge-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.kenya-badge-body {
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ── BRAND PROMISE BANNER ── */
.brand-promise {
  background: var(--navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.brand-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 90% 50%,
    rgba(46, 125, 50, 0.15) 0%,
    transparent 60%
  );
}
.brand-promise-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.brand-promise-inner .display-label {
  color: var(--green-bright);
  margin-bottom: 18px;
  display: block;
}
.brand-promise-quote {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}
.brand-promise-quote em {
  color: var(--green-bright);
  font-style: normal;
}

/* ── PROBLEM / SOLUTION ── */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
}
.ps-col {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.ps-header {
  padding: 28px 36px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ps-col.problem .ps-header {
  background: var(--navy);
}
.ps-col.solution .ps-header {
  background: var(--green);
}
.ps-header-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-header-icon svg {
  width: 22px;
  height: 22px;
}
.ps-col.problem .ps-header-icon svg {
  stroke: var(--white);
}
.ps-col.solution .ps-header-icon svg {
  stroke: var(--white);
}
.ps-header h3 {
  color: var(--white);
  font-size: 1.2rem;
}
.ps-body {
  padding: 28px 36px 36px;
}
.ps-col.problem .ps-body {
  background: var(--navy-pale);
  border: 1.5px solid rgba(27, 42, 74, 0.1);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.ps-col.solution .ps-body {
  background: var(--green-pale);
  border: 1.5px solid rgba(46, 125, 50, 0.18);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.55;
}
.ps-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ps-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ps-col.problem .ps-icon {
  background: rgba(27, 42, 74, 0.1);
}
.ps-col.problem .ps-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--navy);
}
.ps-col.solution .ps-icon {
  background: rgba(46, 125, 50, 0.15);
}
.ps-col.solution .ps-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--green);
}
.ps-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-vs-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

/* ── MISSION / VISION ── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.mv-card.mission {
  background: var(--navy-deep);
}
.mv-card.vision {
  background: var(--green-dark, #1b5e20);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.mv-card-inner {
  position: relative;
  z-index: 1;
}
.mv-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}
.mv-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.mv-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.mv-keyline {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-cell {
  background: var(--white);
  padding: 38px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0);
  transition: var(--transition);
}
.value-cell:hover {
  background: var(--off-white);
}
.value-cell:hover::after {
  transform: scaleX(1);
}
.value-cell-num {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--grey-light);
  line-height: 1;
  margin-bottom: 14px;
}
.value-cell-emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.value-cell h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.value-cell p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-cell:hover {
  background: var(--navy);
}
.stat-cell:hover .stat-cell-num,
.stat-cell:hover .stat-cell-desc {
  color: var(--white);
}
.stat-cell:hover .stat-cell-desc {
  color: rgba(255, 255, 255, 0.55);
}
.stat-cell-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  transition: var(--transition);
}
.stat-cell-desc {
  font-size: 0.82rem;
  color: var(--grey-text);
  line-height: 1.55;
  font-weight: 400;
  transition: var(--transition);
}

/* ── VETTING GRID ── */
.vetting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vet-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.vet-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.vet-emoji {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
}
.vet-card h4 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.vet-card p {
  font-size: 0.855rem;
  color: var(--grey-text);
  line-height: 1.68;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ps-grid {
    grid-template-columns: 1fr;
  }
  .ps-vs {
    display: none;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .vetting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .vetting-grid {
    grid-template-columns: 1fr;
  }
  .mv-card {
    padding: 36px 28px;
  }
  .ps-header,
  .ps-body {
    padding-left: 24px;
    padding-right: 24px;
  }
  .about-intro-btns {
    flex-direction: column;
  }
  .roadmap-btns {
    flex-direction: column;
  }
}

/* ── SERVICE PAGE── */
/* ── STICKY SERVICE TAB BAR ── */
.svc-tab-bar {
  background: var(--white);
  border-bottom: 2px solid var(--grey-light);
  position: sticky;
  top: 80px;
  z-index: 100;
}
.svc-tab-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-tab-inner::-webkit-scrollbar {
  display: none;
}
.svc-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-text);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  text-decoration: none;
}
.svc-tab svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-tab:hover {
  color: var(--navy);
}
.svc-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* ── SERVICES + SIDEBAR LAYOUT ── */
.svc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.svc-sidebar {
  position: sticky;
  top: 136px;
}
.svc-sidebar-inner {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.svc-sidebar-heading {
  padding: 18px 22px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-text);
  border-bottom: 1px solid var(--grey-light);
}
.svc-sidebar-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}
.svc-sidebar-link:last-child {
  border-bottom: none;
}
.svc-sidebar-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-sidebar-link:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 26px;
}
.svc-sidebar-cta {
  margin-top: 16px;
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.svc-sidebar-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 30%,
    rgba(46, 125, 50, 0.2) 0%,
    transparent 65%
  );
}
.svc-sidebar-cta-inner {
  position: relative;
  z-index: 1;
}
.svc-sidebar-cta h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.svc-sidebar-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── SERVICE CARDS ── */
.svc-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.svc-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.svc-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--grey-light);
}
.svc-card-icon {
  width: 68px;
  height: 68px;
  background: var(--green-pale);
  border: 2px solid var(--green-mid);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.svc-card:hover .svc-card-icon {
  background: var(--green);
  border-color: var(--green);
}
.svc-card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.svc-card:hover .svc-card-icon svg {
  stroke: var(--white);
}
.svc-card-for {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.svc-card-heading h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.svc-card-heading p {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.75;
}

.svc-card-body {
  padding: 26px 36px 34px;
}

.svc-vehicles-label,
.svc-benefits-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 10px;
}
.svc-vehicles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.vehicle-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: var(--navy-pale);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: 20px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.vehicle-tag svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}
.benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--green);
}

.svc-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── INCLUSIONS GRID ── */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.inclusion-cell {
  background: rgba(255, 255, 255, 0.025);
  padding: 36px 28px;
  transition: var(--transition);
}
.inclusion-cell:hover {
  background: rgba(255, 255, 255, 0.06);
}
.inclusion-emoji {
  font-size: 1.9rem;
  margin-bottom: 14px;
  display: block;
}
.inclusion-cell h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.inclusion-cell p {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .svc-layout {
    grid-template-columns: 1fr;
  }
  .svc-sidebar {
    position: static;
  }
  .svc-tab-bar {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  .svc-card-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .svc-card-top,
  .svc-card-body {
    padding-left: 24px;
    padding-right: 24px;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  .svc-card-actions {
    flex-direction: column;
  }
}

/* ── HOW IT WORKS PAGE── */
/* ── STEP TIMELINE ── */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0 32px;
  position: relative;
}
/* Vertical connector line */
.step-row:not(:last-child) .step-node-col::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 88px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--green) 0%,
    rgba(46, 125, 50, 0.15) 100%
  );
  z-index: 0;
}

.step-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
  position: relative;
}
.step-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.18);
}

.step-body-col {
  padding-bottom: 44px;
}
.step-who {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.step-who-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.step-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-xl);
  padding: 32px 36px 28px;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}
.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.step-card > p {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.78;
  margin-bottom: 16px;
}

.step-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
}
.step-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── PROMISE CARDS ── */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.promise-cell {
  background: var(--white);
  padding: 36px 28px;
  transition: var(--transition);
  text-align: center;
}
.promise-cell:hover {
  background: var(--navy);
}
.promise-cell:hover h4,
.promise-cell:hover p {
  color: var(--white);
}
.promise-cell:hover p {
  color: rgba(255, 255, 255, 0.6);
}
.promise-cell:hover .promise-emoji-wrap {
  background: var(--green);
  border-color: var(--green);
}
.promise-emoji-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  transition: var(--transition);
}
.promise-cell h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.promise-cell p {
  font-size: 0.875rem;
  color: var(--grey-text);
  line-height: 1.7;
  transition: var(--transition);
}

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--green);
}
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.faq-btn:hover {
  color: var(--green);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--green);
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--navy);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
  stroke: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.78;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  .step-row {
    grid-template-columns: 64px 1fr;
    gap: 0 20px;
  }
  .step-row:not(:last-child) .step-node-col::after {
    left: 31px;
  }
  .step-node {
    width: 44px;
    height: 44px;
    font-size: 0.8rem;
  }
  .step-card {
    padding: 24px 22px 20px;
  }
  .promise-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .step-body-col {
    padding-bottom: 28px;
  }
  .faq-btn {
    font-size: 0.92rem;
  }
}

/* ── TRACK ORDER PAGE ── */
/* ── TRACK LAYOUT ── */
.track-layout {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 64px;
  align-items: flex-start;
}

/* ── TRACK CARD ── */
.track-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1.5px solid var(--grey-light);
}
.track-card-bar {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    var(--green) 55%,
    var(--green-bright) 100%
  );
}
.track-card-inner {
  padding: 36px 36px 32px;
}

.track-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.track-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.track-card-desc {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Form fields */
.tf-group {
  margin-bottom: 18px;
}
.tf-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.tf-label svg {
  stroke: var(--green);
  flex-shrink: 0;
}
.tf-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.tf-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.11);
  background: var(--white);
}
.tf-input::placeholder {
  color: var(--grey-mid);
}

.track-error {
  padding: 12px 16px;
  background: #fff0ee;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #c62828;
  margin-bottom: 18px;
}
.track-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  margin-top: 4px;
}

/* Alt contact row */
.track-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.track-alt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
  border: 1.5px solid transparent;
}
.track-alt-btn.wa {
  background: #25d366;
  color: var(--white);
}
.track-alt-btn.wa:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}
.track-alt-btn.call {
  background: var(--white);
  color: var(--navy);
  border-color: var(--grey-light);
}
.track-alt-btn.call:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}
.track-alt-btn svg {
  flex-shrink: 0;
}

.track-hours {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-top: 14px;
}

/* Phase 2 note */
.phase2-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--navy-pale);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--navy);
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.65;
}
.phase2-note strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

/* Success state */
.track-success {
  text-align: center;
  padding: 8px 0 12px;
}
.track-success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 18px;
}
.track-success h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.track-success p {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.72;
  max-width: 380px;
  margin: 0 auto 22px;
}
.track-success-ref {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mid);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark, #1b5e20);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

/* ── DELIVERY STAGES PANEL ── */
.stages-panel .display-label {
  display: block;
  margin-bottom: 10px;
}
.stages-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.stages-panel > p {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.72;
  margin-bottom: 28px;
}

.stage-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-light);
}
.stage-item:last-child {
  border-bottom: none;
}
.stage-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.stage-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 3px;
}
.stage-desc {
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.55;
}

/* ── HOW TO FIND REF ── */
.ref-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.ref-tip {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.ref-tip:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.ref-tip-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.ref-tip h4 {
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.ref-tip p {
  font-size: 0.84rem;
  color: var(--grey-text);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .track-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .track-card {
    max-width: 580px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  .ref-tips {
    grid-template-columns: 1fr;
  }
  .track-alt-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .track-card-inner {
    padding: 28px 24px 24px;
  }
  .ref-tips {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .ref-tips {
    grid-template-columns: 1fr;
  }
}

/* ── CONTACT PAGE ── */

/* ── QUICK CHANNELS STRIP ── */
.channels-strip {
  background: var(--navy);
  padding: 0;
}
.channels-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.channel-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background var(--transition);
}
.channel-cell:last-child {
  border-right: none;
}
.channel-cell:hover {
  background: rgba(255, 255, 255, 0.05);
}
.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.channel-cell:hover .channel-icon {
  background: var(--green);
}
.channel-icon svg {
  flex-shrink: 0;
}
.channel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 3px;
}
.channel-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.channel-cell.wa-cell {
  cursor: pointer;
}
.channel-cell.wa-cell .channel-value {
  color: #4ade80;
}

/* ── CONTACT LAYOUT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* ── INFO CARD (left) ── */
.contact-info-card {
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 80% 20%,
    rgba(46, 125, 50, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.contact-info-inner {
  position: relative;
  z-index: 1;
  padding: 40px 36px;
}

/* WA CTA — most prominent */
.wa-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  background: #25d366;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  margin-bottom: 28px;
}
.wa-primary-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--green-bright);
}
.contact-detail-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 3px;
}
.contact-detail-val {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}
.contact-detail-val a {
  color: rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}
.contact-detail-val a:hover {
  color: var(--green-bright);
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 24px 0;
}

.response-promise {
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.response-promise strong {
  display: block;
  color: var(--green-bright);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.response-promise p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0;
}

/* ── FORM CARD (right) ── */
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-xl);
  padding: 44px 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--grey-text);
  margin-bottom: 28px;
}

.cf-group {
  margin-bottom: 18px;
}
.cf-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.cf-label svg {
  stroke: var(--green);
  flex-shrink: 0;
}
.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.11);
  background: var(--white);
}
.cf-input::placeholder,
.cf-textarea::placeholder {
  color: var(--grey-mid);
}
.cf-textarea {
  resize: vertical;
  min-height: 130px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-select-wrap {
  position: relative;
}
.cf-select-wrap .cf-select {
  cursor: pointer;
  padding-right: 36px;
}
.cf-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  stroke: var(--grey-text);
}

.cf-error {
  padding: 12px 16px;
  background: #fff0ee;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #c62828;
  margin-bottom: 18px;
}
.cf-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  margin-top: 6px;
}
.cf-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-mid);
  margin-top: 14px;
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 20px 0 8px;
}
.contact-success-icon {
  width: 68px;
  height: 68px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 20px;
}
.contact-success h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.contact-success p {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.72;
  max-width: 400px;
  margin: 0 auto 28px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-card {
    max-width: 560px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  .channels-inner {
    grid-template-columns: 1fr 1fr;
  }
  .channel-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .channels-inner .channel-cell:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .channels-inner .channel-cell:last-child,
  .channels-inner .channel-cell:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .contact-form-card {
    padding: 32px 28px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .channels-inner {
    grid-template-columns: 1fr;
  }
  .channel-cell {
    border-right: none !important;
  }
  .contact-form-card {
    padding: 28px 22px;
  }
  .contact-info-inner {
    padding: 32px 28px;
  }
}
