/* ════════════════════════════════════════════
   marganita.org — v6 (Bright & Alive)
   קרם + נייבי + זהב + תמונות אמיתיות
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=Heebo:wght@300;400;500;600;700&display=swap');

:root {
  --bg:         #fefcf6;
  --bg-warm:    #f8f3e6;
  --white:      #ffffff;
  --navy:       #012d66;
  --navy-d:     #061a3a;
  --navy-l:     #1f4a8a;
  --gold:       #c9a961;
  --gold-l:     #e0c98a;
  --gold-bg:    #f5ecd5;
  --text:       #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #7a7a7a;
  --border:     #e8e2d0;
  --shadow-sm:  0 2px 8px rgba(10, 40, 86, 0.06);
  --shadow:     0 6px 24px rgba(10, 40, 86, 0.10);
  --shadow-lg:  0 16px 48px rgba(10, 40, 86, 0.15);
  --wa:         #25d366;
  --wa-h:       #1ebe57;
  --radius:     10px;
  --radius-sm:  6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s; }
button { cursor: pointer; font-family: inherit; border: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* ════════════════════════════════════════════
   NAV (sticky, white, gold underline)
   ════════════════════════════════════════════ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 56px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.nav-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .18em;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 2rem; }

/* Hamburger button (hidden on desktop) */
.nav-burger {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-burger:hover { border-color: var(--gold); background: var(--gold-bg); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.nav-burger span::before,
.nav-burger span::after {
  content: '';
  position: absolute;
  right: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 99;
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 1.5rem;
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active {
  color: var(--gold);
  background: var(--gold-bg);
}
.mobile-menu a:hover { background: var(--bg-warm); }
.nav-links a {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: all .2s;
}
.nav-cta:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}


/* ════════════════════════════════════════════
   HERO — full banner image (the owner's branded asset)
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: -3%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  animation: ken 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ken {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to   { transform: scale(1.11) translate3d(0,-1.4%,0); }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(1,45,102,.12) 0%, rgba(1,45,102,.01) 44%, rgba(1,45,102,.20) 100%);
}
.hero-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 96px 24px 32px;
  background: rgba(255,252,246,.52);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 28px;
  box-shadow: 0 26px 64px rgba(1,45,102,.22);
  padding: 40px 48px 42px;
  text-align: center;
  animation: rise 1s cubic-bezier(.2,.75,.2,1) both;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(201,169,97,.5);
  border-radius: 20px;
  pointer-events: none;
}
.hero-card > * { animation: rise .85s cubic-bezier(.2,.75,.2,1) both; }
.hero-card > *:nth-child(1){ animation-delay:.12s }
.hero-card > *:nth-child(2){ animation-delay:.20s }
.hero-card > *:nth-child(3){ animation-delay:.28s }
.hero-card > *:nth-child(4){ animation-delay:.34s }
.hero-card > *:nth-child(5){ animation-delay:.42s }
.hero-card > *:nth-child(6){ animation-delay:.50s }
.hero-card > *:nth-child(7){ animation-delay:.58s }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--navy);
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero-badge::before { content: '◆'; color: var(--gold); font-size: 8px; }

.hero h1 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 0.9rem;
  letter-spacing: -0.5px;
}
.hero h1 em {
  color: #9a751d;
  font-style: italic;
  font-weight: 800;
  display: inline;
}

.hero-sub {
  font-size: 16px;
  color: #3f4652;
  margin: 0 auto 1.6rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 470px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btns .btn { transition: transform .18s ease, box-shadow .18s ease; }
.hero-btns .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(1,45,102,.22); }
.hero-trust {
  margin-top: 20px;
  font-size: 13px;
  color: var(--navy);
  opacity: .82;
}
.hero-trust b { color: var(--gold); font-weight: 700; padding: 0 7px; }

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
/* WhatsApp inline SVG icon */
.wa-svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  vertical-align: -0.2em;
  display: inline-block;
}
.contact-icon .wa-svg { width: 1em; height: 1em; vertical-align: middle; color: var(--wa); }
.float-wa .wa-svg { width: 60%; height: 60%; vertical-align: middle; }

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.btn-wa:hover {
  background: var(--wa-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(1, 45, 102, 0.25);
}
.btn-navy:hover {
  background: var(--navy-d);
  border-color: var(--navy-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(1, 45, 102, 0.35);
}
/* Larger, more prominent contact CTA */
.btn-lg {
  font-size: 17px;
  font-weight: 700;
  padding: 17px 34px;
}
/* On dark backgrounds (navy CTA banner, photo hero) the navy email button
   would blend in — flip it to a high-contrast white button there. */
.cta-banner .btn-navy,
.apt-hero .btn-navy {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.cta-banner .btn-navy:hover,
.apt-hero .btn-navy:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
}

/* Hero contact emphasis */
.hero-contact-lead {
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.hero-btns-contact { gap: 14px; }
.hero-btn-secondary {
  margin-top: 16px;
  font-size: 14px;
  padding: 9px 20px;
}

/* ════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
}
.stat {
  flex: 1;
  min-width: 160px;
  max-width: 240px;
  text-align: center;
  padding: 2rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child { border-left: none; }
.stat-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════ */
.section { padding: 5rem 1.5rem; }
.section.warm { background: var(--bg-warm); }
.section.navy { background: var(--navy); color: var(--white); }
.section.navy .section-title { color: var(--white); }
.section.navy .section-sub { color: rgba(255, 255, 255, 0.8); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: .65rem;
  text-transform: uppercase;
  font-weight: 700;
}
.section-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════
   CITY CARDS — 3 with photos
   ════════════════════════════════════════════ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.city-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.city-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 86, 0.15) 0%, rgba(10, 40, 86, 0.5) 100%);
}
.city-img.jerusalem { background-image: url('assets/city-jerusalem.jpg'); }
.city-img.bs { background-image: url('assets/city-bs.jpg'); }
.city-img.beitar { background-image: url('assets/city-beitar.jpg'); }
.city-body { padding: 1.5rem 1.5rem 1.75rem; text-align: center; }

/* Logo on top of tagline section (overlaps banner above) */
.hero-tagline-logo {
  width: 94px;
  height: auto;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(1, 45, 102, 0.16));
}
.hero-wordmark {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.02;
  color: #012d66;
  text-align: center;
  margin: 0 auto;
}
.hero-wordmark span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: #c38b23;
  margin-top: 8px;
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 14px;
  opacity: .85;
}

/* Neighborhood tiles on city pages */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.neighborhood-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem;
  text-align: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  transition: all .2s;
}
.neighborhood-tile:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.neighborhood-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-light);
  font-size: 14.5px;
  font-style: italic;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.city-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .55rem;
}
.city-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}

/* ════════════════════════════════════════════
   DIFFERENTIATORS — 4 cards
   ════════════════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-top-color: var(--navy);
}
.diff-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .85rem;
  opacity: .85;
}
.diff-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.diff-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   STEPS — 3 with circle numbers
   ════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}
.step-card { text-align: center; padding: 1rem; }
.step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  transition: all .3s;
}
.step-card:hover .step-circle {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.06);
}
.step-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .55rem;
}
.step-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   SERVICES (extended page)
   ════════════════════════════════════════════ */
.service-block {
  background: var(--white);
  border-right: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.service-block-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-block-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
}

.future-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 1.5rem;
}
.future-card {
  background: var(--white);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.future-icon { font-size: 32px; margin-bottom: .65rem; }
.future-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.future-text {
  font-size: 13.5px;
  color: var(--text-light);
  font-style: italic;
}

/* ════════════════════════════════════════════
   CTA BANNER (navy block)
   ════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.cta-banner h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner h2 em { color: var(--gold-l); font-style: italic; }
.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   ABOUT — prose
   ════════════════════════════════════════════ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.95;
  color: var(--text-mid);
}
.prose p { margin-bottom: 1.5rem; }
.prose strong {
  color: var(--navy);
  font-weight: 700;
}
.prose-lead::first-letter {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 60px;
  float: right;
  line-height: 1;
  margin: 6px 0 0 14px;
  color: var(--gold);
  font-weight: 700;
}

/* Red lines */
.redlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}
.redline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.redline-card:hover { box-shadow: var(--shadow); }
.redline-icon { font-size: 24px; margin-bottom: .65rem; }
.redline-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
}
.redline-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Coverage table */
.coverage-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem auto;
  max-width: 920px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coverage-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 18px 22px;
  text-align: right;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
}
.coverage-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-mid);
}
.coverage-table tr:last-child td { border-bottom: none; }
.coverage-table tr:nth-child(even) td { background: var(--bg-warm); }
.coverage-table .city {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}

/* ════════════════════════════════════════════
   CONTACT CARDS + FORM
   ════════════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 3rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .25s;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-top-color: var(--navy);
}
.contact-card.primary {
  background: linear-gradient(135deg, var(--white), var(--gold-bg));
  border-top-color: var(--wa);
}
.contact-icon { font-size: 34px; margin-bottom: .85rem; }
.contact-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.contact-value {
  font-size: 17px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .35rem;
  word-break: break-word;
}
.contact-note {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: .4rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  max-width: 660px;
  margin: 0 auto;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  margin-bottom: .5rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.form-row.required label::after { content: ' *'; color: var(--gold); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--gold-bg);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-top: .5rem;
  transition: all .2s;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }

.form-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
}
.form-note strong { color: var(--navy); }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}
.footer-logo-img { height: 64px; width: auto; object-fit: contain; opacity: 0.98; }
.footer-logo-text {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 18px;
  color: var(--white);
}
.footer-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.1;
  margin-bottom: 1.25rem;
}
.footer-info a { color: var(--gold-l); font-weight: 500; }
.footer-info a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.5rem;
}

/* ════════════════════════════════════════════
   FLOATING WHATSAPP
   ════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99;
  background: var(--wa);
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform .2s;
  text-decoration: none;
  animation: wa-pulse 3s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7); }
}
.float-wa:hover { transform: scale(1.1); }

/* ════════════════════════════════════════════
   MOBILE
   ════════════════════════════════════════════ */
@media (max-width: 820px) {
  body { font-size: 15px; }
  .container { padding: 0 1.25rem; }
  .nav { padding: 0 1.25rem; height: 64px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .mobile-menu { top: 64px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
  .nav-logo-img { height: 44px; }
  .nav-logo-text { font-size: 17px; }
  .hero { min-height: 86vh; }
  .hero-card { padding: 30px 22px 34px; margin: 78px 16px 20px; }
  .hero-wordmark { font-size: 28px; }
  .hero-tagline-logo { width: 80px; }
  .hero h1 { font-size: clamp(26px, 6vw, 34px); }
  .section { padding: 3.5rem 1rem; }
  .section-header { margin-bottom: 2.5rem; }
  .stats-bar { flex-direction: column; }
  .stat {
    max-width: none;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat:last-child { border-bottom: none; }
  .contact-form { padding: 1.75rem 1.5rem; }
  .float-wa { width: 56px; height: 56px; font-size: 26px; bottom: 16px; left: 16px; }
  .coverage-table th, .coverage-table td { padding: 12px 14px; font-size: 14px; }
}

/* Overseas owners (EN/FR) band */
.overseas-langs {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.overseas-langs p {
  background: #fff;
  border: 1px solid var(--gold);
  border-inline-start: 4px solid var(--gold);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: #444;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
}
.overseas-langs p strong { color: var(--navy); }

.hp-field { display: none !important; }
