/* ==========================================================================
   GulfCart Design System and Site Styles
   ========================================================================== */

:root {
  /* Brand colors, sampled from the GulfCart logo */
  --green-900: #123420;
  --green-800: #16512b;
  --green-700: #1c6b36;
  --green-600: #248242;
  --green-500: #2f9950;
  --green-400: #4bb066;
  --green-100: #e7f5eb;
  --green-50: #f4faf5;

  --gold-600: #b98a1f;
  --gold-500: #dcac30;
  --gold-400: #e8c05a;
  --gold-100: #fbf1d7;
  --gold-50: #fdf8ec;

  --ink-900: #14201a;
  --ink-700: #3c473f;
  --ink-500: #667069;
  --ink-300: #a4aca7;
  --ink-200: #d5dbd6;
  --ink-100: #eef1ee;
  --white: #ffffff;

  --font-heading: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(18, 52, 32, 0.06), 0 1px 1px rgba(18, 52, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(18, 52, 32, 0.08);
  --shadow-lg: 0 20px 48px rgba(18, 52, 32, 0.14);

  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-900);
}
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  margin-top: 14px;
}
.section-head p {
  color: var(--ink-500);
  font-size: 17px;
  margin-top: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 107, 54, 0.28);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); }
.btn-accent {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 10px 24px rgba(220, 172, 48, 0.3);
}
.btn-accent:hover { background: var(--gold-400); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.btn-ghost {
  background: var(--white);
  color: var(--green-800);
  border: 1.5px solid var(--ink-200);
}
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--ink-100);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  color: var(--green-900);
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
}
.nav-links a { position: relative; padding: 6px 0; transition: color 0.15s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-700); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  border-radius: var(--radius-full);
}
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--green-900);
}
.nav-toggle:hover { background: var(--ink-100); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }
  .nav-links a { width: 100%; padding: 12px 0; }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn span.long { display: none; }
}
@media (max-width: 560px) {
  .nav-actions .btn-ghost { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 72px 0 90px;
  background:
    radial-gradient(560px 320px at 88% -10%, var(--gold-100), transparent 60%),
    radial-gradient(700px 420px at -10% 100%, var(--green-50), transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  letter-spacing: -0.01em;
}
.hero-copy h1 .accent { color: var(--green-700); }
.hero-copy p.lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--ink-500);
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-heading); font-size: 24px; color: var(--green-800); }
.hero-trust span { font-size: 13px; color: var(--ink-500); }

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  right: -90px; top: -90px;
  background: radial-gradient(circle, rgba(220, 172, 48, 0.35), transparent 70%);
  border-radius: 50%;
}
.hero-card-logo {
  align-self: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.hero-card-logo img { height: 64px; width: auto; }
.hero-card-eta {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  color: var(--white);
  backdrop-filter: blur(6px);
}
.hero-card-eta .eta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}
.hero-card-eta strong {
  font-family: var(--font-heading);
  font-size: 26px;
  display: block;
}
.eta-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); display: inline-block; margin-right: 6px; }
.hero-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
}
.hero-badge-float.b1 { top: 14%; right: -14px; }
.hero-badge-float.b2 { bottom: -18px; left: 24px; }
.hero-badge-float svg { flex-shrink: 0; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-copy p.lead { max-width: none; }
  .hero-badge-float { display: none; }
}

/* ==========================================================================
   Marquee / Trust strip
   ========================================================================== */
.trust-strip {
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  padding: 22px 0;
  background: var(--green-50);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--green-800);
  font-weight: 600;
  font-size: 14px;
}
.trust-strip .item { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--gold-600);
  background: var(--gold-100);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { color: var(--ink-500); font-size: 14.5px; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Categories
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.category-card .icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}
.category-card span { font-size: 13.5px; font-weight: 600; color: var(--ink-700); }

@media (max-width: 980px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 420px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Coverage / Cities
   ========================================================================== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.city-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.city-card-top {
  padding: 30px 26px 24px;
  background: linear-gradient(150deg, var(--green-700), var(--green-800));
  color: var(--white);
}
.city-card-top .city-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.city-card-top h3 { color: var(--white); font-size: 22px; }
.city-card-top p { color: rgba(255, 255, 255, 0.78); font-size: 13.5px; margin-top: 4px; }
.city-card-body { padding: 22px 26px 26px; }
.city-stats { display: flex; gap: 22px; margin-bottom: 18px; }
.city-stats div strong { display: block; font-family: var(--font-heading); font-size: 19px; color: var(--green-800); }
.city-stats div span { font-size: 12.5px; color: var(--ink-500); }
.city-areas { display: flex; flex-wrap: wrap; gap: 8px; }
.city-areas span {
  font-size: 12.5px;
  background: var(--ink-100);
  color: var(--ink-700);
  padding: 5px 11px;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) { .city-grid { grid-template-columns: 1fr; } }

/* ---------- Availability checker ---------- */
.checker {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.field select, .field input {
  padding: 13px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color 0.15s ease;
}
.field select:focus, .field input:focus { outline: none; border-color: var(--green-600); }
.checker-result {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  display: none;
  align-items: center;
  gap: 10px;
}
.checker-result.show { display: flex; }
.checker-result.ok { background: var(--green-100); color: var(--green-800); }
.checker-result.no { background: var(--gold-50); color: var(--gold-600); }

@media (max-width: 720px) {
  .checker { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card { padding: 8px 4px; }
.feature-card .icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); font-size: 14.5px; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card .stars { color: var(--gold-500); display: flex; gap: 2px; }
.testimonial-card p.quote { color: var(--ink-700); font-size: 15px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-person div strong { display: block; font-size: 14px; color: var(--green-900); }
.testimonial-person div span { font-size: 12.5px; color: var(--ink-500); }

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA / Download banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  right: -120px; bottom: -160px;
  background: radial-gradient(circle, rgba(220, 172, 48, 0.28), transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); }
.cta-banner p { color: rgba(255, 255, 255, 0.78); margin-top: 10px; max-width: 420px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.store-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  color: var(--white);
}
.store-pill span.label { font-size: 10px; color: rgba(255, 255, 255, 0.65); display: block; }
.store-pill strong { font-size: 14px; font-family: var(--font-heading); }

@media (max-width: 860px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-banner p { max-width: none; }
  .cta-actions { justify-content: center; }
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header {
  padding: 60px 0 56px;
  background:
    radial-gradient(600px 300px at 90% 0%, var(--gold-50), transparent 60%),
    var(--green-50);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 { font-size: clamp(32px, 4.4vw, 46px); }
.page-header p { color: var(--ink-500); font-size: 17px; margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--green-700); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-row div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--green-800);
}
.stats-row div span { font-size: 13.5px; color: var(--ink-500); }

@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* ==========================================================================
   Generic content blocks (About, Contact)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img, .split .art { width: 100%; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 24px;
}
.value-card .icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-100);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--ink-500); }

.timeline { display: flex; flex-direction: column; gap: 28px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.timeline-item .year { font-family: var(--font-heading); font-weight: 700; color: var(--gold-600); font-size: 18px; }
.timeline-item h4 { font-size: 16px; margin-bottom: 4px; }
.timeline-item p { color: var(--ink-500); font-size: 14px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .value-grid { grid-template-columns: 1fr; }
}

/* ---------- Art shapes (no stock imagery) ---------- */
.art-card {
  background: linear-gradient(160deg, var(--green-100), var(--white));
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 16px;
}
.art-card .art-row { display: flex; gap: 16px; }
.art-tile {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.art-tile .icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: flex; align-items: center; justify-content: center; }
.art-tile.tall { flex: 1.4; }
.art-tile strong { font-family: var(--font-heading); font-size: 15px; color: var(--green-900); }
.art-tile span { font-size: 12.5px; color: var(--ink-500); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  height: fit-content;
}
.contact-info-card h3 { color: var(--white); font-size: 19px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); }
.social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--gold-500); color: var(--green-900); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .field.full { grid-column: 1 / -1; }
.contact-form textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
}
.contact-form textarea:focus { outline: none; border-color: var(--green-600); }
.form-note { font-size: 12.5px; color: var(--ink-500); margin-top: 14px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 14px;
}
.form-success.show { display: flex; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ (accordion)
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--green-900);
  text-align: left;
}
.faq-question .plus { transition: transform 0.2s ease; color: var(--green-700); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer p { padding: 0 24px 20px; color: var(--ink-500); font-size: 14.5px; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand { color: var(--white); }
.footer-brand p { font-size: 13.5px; margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold-500); color: var(--green-900); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
section.py { padding: 96px 0; }
section.py-sm { padding: 64px 0; }
.bg-tint { background: var(--green-50); }
.hidden { display: none !important; }

@media (max-width: 700px) {
  section.py { padding: 64px 0; }
  section.py-sm { padding: 48px 0; }
}

/* Scroll reveal (only hidden once JS confirms it can reveal them again) */
.js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal .reveal.in { opacity: 1; transform: translateY(0); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: var(--white);
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
