/* ═══════════════════════════════════════════════════════════
   HORNBILL HAULERS — MAIN STYLESHEET  v2.0
   Design system: Dark navy + Hornbill Green + Warm Off-white
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --green:        #1e8c3a;
  --green-dark:   #145c27;
  --green-light:  #eaf6ed;
  --green-mid:    #2db352;
  --red:          #d42b2b;
  --orange:       #e8521a;
  --navy:         #0d1f2d;
  --navy-mid:     #162840;
  --navy-light:   #1e3a52;
  --gold:         #c9a84c;

  /* Neutrals */
  --white:        #ffffff;
  --offwhite:     #f8f6f1;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --gray-900:     #111827;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.18);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

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

  /* Layout */
  --max-w:        1200px;
  --nav-h:        70px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.section-tag i { font-size: 0.8em; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.18;
  color: var(--navy); margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem; color: var(--gray-500);
  line-height: 1.7; max-width: 560px;
}

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--white); }

.text-center { text-align: center; }
.mt-5 { margin-top: 40px; }
.me-1 { margin-right: 5px; }
.me-2 { margin-right: 8px; }
.mt-3 { margin-top: 16px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r-sm);
  font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600;
  transition: all 0.18s ease; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }

.btn-dark {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-mid); }

.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }


/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(13, 31, 45, 0.96);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.25); }

.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo {
  height: 38px; width: 38px; border-radius: 50%;
  object-fit: cover; border: 1.5px solid rgba(30,140,58,0.5);
}
.nav-brand-text {
  font-family: var(--font-ui); font-weight: 700; font-size: 1rem;
  color: #fff; letter-spacing: -0.01em;
}
.brand-accent { color: var(--green-mid); }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin-left: auto;
}

.nav-link {
  display: block; padding: 8px 13px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.18s, background 0.18s; text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: #fff; background: rgba(255,255,255,0.08);
}
.nav-link.active { color: var(--green-mid); background: rgba(30,140,58,0.12); }

/* Dropdown */
.has-dropdown { position: relative; }

/* Invisible padding bridge — fills the gap between nav-link bottom
   and the dropdown top so the cursor stays in hover zone while travelling */
.has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: -16px; right: -16px; height: 14px;
}

.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md); padding: 8px;
  min-width: 210px; list-style: none;
  box-shadow: var(--shadow-xl);
  opacity: 0; visibility: hidden; pointer-events: none;
  /* appear fast, hide with small delay so cursor can travel down */
  transition: opacity 0.15s ease, transform 0.15s ease,
              visibility 0s linear 0.22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease,
              visibility 0s linear 0s;
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: rgba(30,140,58,0.15); color: var(--green-mid); }
.dropdown li a i { width: 16px; text-align: center; font-size: 0.85em; }

.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff;
  padding: 9px 18px; border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 600;
  transition: background 0.18s, transform 0.15s;
  text-decoration: none; margin-left: 8px;
}
.btn-nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-nav-cta i { font-size: 0.8em; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--r-sm);
  margin-left: auto; background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px; transition: all 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  /* stretch so right column matches the organic height of left content */
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--navy);
}

/* subtle grid overlay */
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(30,140,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,140,58,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 48px 0 32px 5vw;
  min-height: unset;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--r-full);
  background: rgba(30,140,58,0.15);
  border: 1px solid rgba(30,140,58,0.35);
  font-size: 0.75rem; font-weight: 600;
  color: var(--green-mid); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.08;
  color: #fff; margin-bottom: 22px;
}
.hl-green {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-mid) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hl-red { color: #ff6b6b; }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0;
}

.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.85rem; font-weight: 800;
  color: var(--green-mid); line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-top: 4px; letter-spacing: 0.03em;
}

/* Photo collage — right side */
.hero-photo-collage {
  position: relative; z-index: 1;
  padding: 24px 24px 0 0;
  display: flex; align-items: stretch; justify-content: center;
}

/* Single hero image — rounded rectangle, height = left content */
.hero-single-img {
  width: 90%;
  height: 80%;
  /* border-radius gives the rounded rect look */
  border-radius: var(--r-xl);
  overflow: hidden; position: relative;
  /* min-height so it never collapses smaller than a useful size */
  min-height: 360px;
}
.hero-single-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
  transition: transform 10s ease;
  display: block;
}
.hero-photo-collage:hover .hero-single-img img { transform: scale(1.04); }
.hero-single-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(13,31,45,0.35) 0%,
    rgba(13,31,45,0.08) 50%,
    transparent 100%
  );
}


/* ══════════════════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════════════════ */
.stats-band {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.stats-band-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; text-align: center;
}
.stats-band-grid > div {
  padding: 16px 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-band-grid > div:last-child { border-right: none; }

.stat-item-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--green-mid); line-height: 1;
}
.stat-item-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
  margin-top: 6px; letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-icon {
  position: absolute; bottom: 16px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 12px rgba(30,140,58,0.4);
}

.service-card-body {
  padding: 28px 24px 24px; flex: 1;
  display: flex; flex-direction: column;
}
.service-card-title {
  font-family: var(--font-ui); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; margin-top: 12px;
}
.service-card-desc {
  font-size: 0.875rem; color: var(--gray-500);
  line-height: 1.65; margin-bottom: 18px; flex: 1;
}
.service-features {
  list-style: none; margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 7px;
}
.service-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.83rem; color: var(--gray-600);
}
.service-features li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--green);
  transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }


/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative;
}

/* 3-step variant used on partner page */
.how-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.how-step {
  position: relative; text-align: center;
  padding: 0 8px;
}

.how-connector {
  position: absolute; top: 28px;
  left: calc(50% + 36px); right: calc(-50% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gray-200) 100%);
  z-index: 0;
}

.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  margin: 0 auto 12px; position: relative; z-index: 1;
  border: 3px solid var(--offwhite);
  box-shadow: 0 0 0 2px var(--green);
}

.how-step-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 16px;
}
.how-step-title {
  font-family: var(--font-ui); font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.how-step-desc {
  font-size: 0.83rem; color: var(--gray-500); line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,31,45,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.5rem; color: #fff; }


/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.testimonial-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-md);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.7;
  flex: 1; margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testimonial-service {
  font-size: 0.75rem; color: var(--green);
  margin-top: 2px; font-weight: 600;
}


/* ══════════════════════════════════════════════════════════
   PARTNER CTA SECTION
══════════════════════════════════════════════════════════ */
.partner-cta-section {
  background: var(--navy); padding: 96px 0;
}
.partner-cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.partner-cta-section .section-title { color: #fff; }
.partner-cta-section .section-sub { color: rgba(255,255,255,0.55); }

.partner-perks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 28px 0;
}
.partner-perk {
  display: flex; gap: 12px; align-items: flex-start;
}
.partner-perk-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(30,140,58,0.15);
  border: 1px solid rgba(30,140,58,0.3);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); font-size: 1rem;
}
.partner-perk-text strong {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: #fff; margin-bottom: 2px;
}
.partner-perk-text span { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.4; }


/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
.form-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: 36px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.form-card h3 {
  font-family: var(--font-ui); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.form-card > p {
  font-size: 0.875rem; color: var(--gray-500); margin-bottom: 24px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--gray-700);
}

.form-control {
  padding: 11px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-300); background: var(--white);
  font-family: var(--font-body); font-size: 0.875rem;
  color: var(--gray-800); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,140,58,0.12);
}
.form-control::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7 7l3 3 3-3' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 36px;
}

.alert-box {
  display: none; padding: 14px 16px; border-radius: var(--r-sm);
  font-size: 0.875rem; margin-bottom: 20px; align-items: flex-start; gap: 8px;
}
.alert-box.show { display: flex; }
.alert-box.success { background: var(--green-light); border: 1px solid rgba(30,140,58,0.3); color: var(--green-dark); }
.alert-box.error   { background: #fff5f5; border: 1px solid rgba(212,43,43,0.3); color: #b91c1c; }


/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy); padding: 100px 0 56px;
  margin-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,140,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,140,58,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1.12;
  margin-bottom: 10px;
}
.page-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--green-mid); transition: color 0.18s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .current { color: rgba(255,255,255,0.6); }


/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); font-size: 1rem;
}
.contact-info-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem; font-weight: 500; color: var(--navy);
}
.contact-info-value a { color: var(--navy); transition: color 0.18s; }
.contact-info-value a:hover { color: var(--green); }


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--gray-900); padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 56px;
}

.footer-logo { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.footer-tagline {
  font-size: 0.875rem; color: rgba(255,255,255,0.45);
  line-height: 1.65; margin-bottom: 20px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.875rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--green); color: #fff; border-color: var(--green); }

.footer-heading {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--green-mid); }

.footer-app-text { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.footer-app-badges { display: flex; flex-direction: column; gap: 10px; }
.app-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md); padding: 12px 16px;
  color: #fff; transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.app-badge:hover { background: var(--green); border-color: var(--green); }
.app-badge i { font-size: 1.4rem; }
.app-badge span { font-size: 0.82rem; font-weight: 600; line-height: 1.3; }
.app-badge span small { font-weight: 400; opacity: 0.65; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  transition: color 0.18s;
}
.footer-contact a:hover { color: var(--green-mid); }
.footer-contact a i { width: 14px; text-align: center; color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links {
  display: flex; gap: 20px; align-items: center;
}
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.18s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-bottom-links span { color: rgba(255,255,255,0.15); }


/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 88vh; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff; font-size: 1.4rem; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
  border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }


/* ══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo-collage { display: none; }
  .hero-content { padding: 48px 24px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid-3 { grid-template-columns: repeat(3, 1fr); }
  /* Hide connectors when grid is no longer 4-column — line would spill out */
  .how-connector { display: none; }
  .partner-cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* ── Navigation ── */
  .nav-menu {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(13,31,45,0.98);
    flex-direction: column; align-items: flex-start;
    padding: 24px; gap: 4px; overflow-y: auto;
    border-top: 1px solid rgba(255,255,255,0.07);
    z-index: 9998; /* below lightbox (9999) but above everything else */
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-menu .btn-nav-cta { margin-left: 0; margin-top: 8px; align-self: stretch; justify-content: center; }
  .has-dropdown::after { display: none; }
  .dropdown {
    position: static; transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    pointer-events: auto !important; background: rgba(255,255,255,0.04);
    margin: 4px 0; min-width: unset; top: unset;
    transition: none !important;
  }
  .has-dropdown { width: 100%; }
  .nav-link { width: 100%; }

  /* ── Hero ── */
  .hero { padding-top: var(--nav-h); min-height: auto; }
  .hero-content { padding: 40px 20px 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Stats band ── */
  .stats-band-grid { grid-template-columns: repeat(3, 1fr); }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }

  /* ── How it works / Steps ── */
  .how-grid { grid-template-columns: 1fr !important; }
  .how-grid-3 { grid-template-columns: 1fr !important; }

  /* ── Inline grid overrides — handled via named classes above ── */

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ── Combo section ── */
  .combo-grid { grid-template-columns: 1fr !important; padding: 32px 20px !important; gap: 24px !important; }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.tall { grid-row: span 1; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; }

  /* ── Forms ── */
  .partner-perks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Spacing ── */
  .section { padding: 56px 0; }
  .page-hero { padding: 72px 0 40px; }

  /* ── Combo section inner padding ── */
  [style*="padding:56px 48px"] { padding: 32px 20px !important; }
  [style*="padding: 56px 48px"] { padding: 32px 20px !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 48px 0; }
  .page-hero { padding: 64px 0 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, .fade-in, .col-img img, .service-card, .gallery-item img { transition: none !important; animation: none !important; }
  .fade-in { opacity: 1; transform: none; }
}