/* ============================================================
   MaakSchoon Zeeland — shared.css
   Eén bestand, geladen door alle pagina's
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; height: auto; }

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
/* Huisstijl gebaseerd op MaakSchoon Zeeland logo:              */
/* Navy = 'Schoon' tekst + golven | Groen = 'Maak' tekst        */
/* Lichtblauw = cirkel + decoratieve lijnen | Oranje = accenten */
:root {
  /* ── Primaire merkkleur: navy (uit logo 'Schoon' + golven) ── */
  --blue:        #08193F;   /* diep navy — hoofdkleur           */
  --blue-mid:    #0D2252;   /* iets lichter navy                */
  --blue-light:  #1A3A7A;   /* medium navy voor hover           */

  /* ── Groen (uit logo 'Maak' + stippen tagline) ──────────── */
  --green:       #4E9A28;   /* helder gras-groen                */
  --green-light: #5DB52E;   /* groen hover                      */
  --green-pale:  #EBF5E1;   /* lichtgroen achtergrond           */

  /* ── Lichtblauw (cirkel + Zeeuwse water-lijnen in logo) ── */
  --accent:      #719BD1;   /* Zeelands lichtblauw              */
  --accent-pale: #E8EFF9;   /* lichtblauwe achtergrond          */

  /* ── Coral/oranje (kralen in streekdracht) ─────────────── */
  --coral:       #E05D32;   /* warm oranje-rood accent          */
  --coral-pale:  #FDEEE8;   /* lichtoranje achtergrond          */

  /* ── Neutrals ────────────────────────────────────────────── */
  --white:     #FFFFFF;
  --off-white: #F6F8FC;     /* iets warmer dan voorheen         */
  --gray-100:  #E3E8F2;
  --gray-300:  #B4BDD0;
  --gray-500:  #6A788F;
  --gray-700:  #344162;
  --text:      #0D1B2A;     /* bijna-zwart met blauwe ondertoon */

  /* ── Typography ─────────────────────────────────────────── */
  /* Logo gebruikt bold sans-serif + gespatieerde kapitalen    */
  --font-display: 'Montserrat', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* ── Spacing ─────────────────────────────────────────────── */
  --section-py: 88px;
  --container:  1200px;

  /* ── Radius (iets ronder — warmere uitstraling) ──────────── */
  --r-xs: 5px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* ── Shadows (navy-tint ipv blauw) ─────────────────────── */
  --sh-xs: 0 1px 4px rgba(8,25,63,.07);
  --sh-sm: 0 2px 12px rgba(8,25,63,.09);
  --sh-md: 0 8px 28px rgba(8,25,63,.13);
  --sh-lg: 0 16px 56px rgba(8,25,63,.18);
}

/* ── BASE ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container  { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section    { padding: var(--section-py) 0; }
.section--alt  { background: var(--off-white); }
.section--blue { background: var(--blue); color: var(--white); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
/* Montserrat: bold sans-serif matching the logo wordmark style */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; letter-spacing: -.01em; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem);   font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem);   font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── SKIP LINK (accessibility) ──────────────────────────────── */
.skip-link {
  position: absolute; top: -44px; left: 16px; z-index: 9999;
  background: var(--blue); color: #fff;
  padding: 8px 16px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: .85rem; font-weight: 600; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── FOCUS VISIBLE ──────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* ── SELECTION ──────────────────────────────────────────────── */
::selection { background: var(--green-pale); color: var(--blue); }

/* ── EYEBROW LABEL ──────────────────────────────────────────── */
/* Dot style inspired by logo tagline: • DUURZAAM SCHOONMAKEN • */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.eyebrow::before {
  content: '●'; font-size: .45rem;
  color: var(--coral); flex-shrink: 0;
}
.eyebrow--c  { justify-content: center; }
.eyebrow--c::before { display: none; }
.eyebrow--lt { color: var(--accent); }
.eyebrow--lt::before { color: var(--accent); }

/* Section header */
.sh     { max-width: 680px; margin-bottom: 56px; }
.sh--c  { margin-left: auto; margin-right: auto; text-align: center; }
.sh p   { color: var(--gray-500); margin-top: 14px; font-size: .96rem; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .93rem; font-weight: 700;
  letter-spacing: .03em; cursor: pointer; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — brand green */
.btn-primary  { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(78,154,40,.28); }
.btn-primary:hover { background: var(--green-light); box-shadow: 0 8px 24px rgba(78,154,40,.38); }

/* Ghost white — for dark backgrounds */
.btn-ghost-w  { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-w:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.85); }

/* Ghost navy — for light backgrounds */
.btn-ghost-b  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost-b:hover { background: var(--blue); color: #fff; }

/* Ghost navy for mobile cta */
.btn-ghost-n  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost-n:hover { background: var(--blue); color: #fff; }

/* White — for colored backgrounds */
.btn-white { background: #fff; color: var(--blue); box-shadow: var(--sh-sm); }
.btn-white:hover { box-shadow: var(--sh-md); }

/* Coral — secondary accent CTA (from logo bead colors) */
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 4px 16px rgba(224,93,50,.28); }
.btn-coral:hover { background: #c94e27; box-shadow: 0 8px 24px rgba(224,93,50,.38); }

.btn-lg  { padding: 18px 38px; font-size: 1rem; }
.btn-arr::after { content: ' →'; transition: margin-left .2s; }
.btn-arr:hover::after { margin-left: 4px; }

/* ── HEADER / NAV ────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent); /* Zeelands lichtblauw accent */
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--sh-md); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 16px;
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 13px;
  color: var(--gray-700); text-decoration: none;
  font-size: .88rem; font-weight: 500; border-radius: var(--r-xs);
  transition: color .18s, background .18s;
}
.nav-links a:hover  { color: var(--blue); background: var(--off-white); }
.nav-links a.active { color: var(--green); font-weight: 700; background: var(--green-pale); }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--gray-700); text-decoration: none;
  font-size: .85rem; font-weight: 600;
  transition: color .2s;
}
.nav-phone:hover { color: var(--blue); }
.nav-phone-icon {
  width: 28px; height: 28px;
  background: var(--green-pale); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
  border-radius: var(--r-xs);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: .3s;
}

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; inset: 0;
  background: var(--blue); z-index: 200; /* deep navy from logo */
  padding: 28px 28px 40px;
}
.mobile-nav.is-open { display: flex; }

.mobile-nav-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 36px;
}
.mobile-nav-header img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.mobile-nav-close {
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 38px; height: 38px; border-radius: 8px;
  cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}

.mobile-nav-links { flex: 1; display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; color: rgba(255,255,255,.85);
  font-size: 1.2rem; font-family: var(--font-display); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-nav-links a::after { content: '→'; font-size: .9rem; opacity: .4; }

.mobile-nav-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav-tel {
  display: flex; align-items: center; gap: 10px;
  color: var(--accent); text-decoration: none;
  font-size: 1.1rem; font-weight: 600;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  /* ── ACHTERGRONDAFBEELDING ────────────────────────────────────────
     Elke pagina heeft zijn eigen afbeeldingspad (zie het style=""
     attribuut op de <section class="page-hero"> tag in de HTML).
     Zolang er geen afbeelding op dat pad staat, ziet u de
     gewone blauwe achtergrond — niets verandert.
     ────────────────────────────────────────────────────────────── */
  background-color: var(--blue);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
/* Overlay zodat tekst altijd leesbaar blijft over een foto */
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(8,25,63,.80) 0%,
    rgba(8,25,63,.60) 55%,
    rgba(8,25,63,.30) 100%
  );
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  /* Water wave gradient — inspired by Zeeland coastal motif in logo */
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(113,155,209,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(78,154,40,.08) 0%, transparent 60%);
}
/* Decorative wave line at bottom — echoes the logo's water waves */
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--green), var(--accent), transparent);
  opacity: .6;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .82rem; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb-sep { color: rgba(255,255,255,.25); font-size: .82rem; }
.breadcrumb-cur { color: rgba(255,255,255,.7); font-size: .82rem; }

.page-hero h1   { color: #fff; margin-bottom: 18px; }
.page-hero .lead { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.8; max-width: 600px; margin-bottom: 32px; }

/* ── PAGE LAYOUT (2-col: content + sidebar) ─────────────────── */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1025px) { .sidebar { position: sticky; top: 88px; } }

.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-md); padding: 28px 24px; box-shadow: var(--sh-xs);
}
.sidebar-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--blue); margin-bottom: 16px; }

.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-700); text-decoration: none;
  font-size: .88rem; font-weight: 500; padding: 8px 10px;
  border-radius: var(--r-xs); transition: color .18s, background .18s;
}
.sidebar-links a::before { content: '→'; font-size: .8rem; color: var(--green); opacity: .6; }
.sidebar-links a:hover, .sidebar-links a.active { color: var(--green); background: var(--green-pale); }
.sidebar-links a.active { font-weight: 700; }

.sidebar-cta {
  background: var(--blue); border-radius: var(--r-md);
  padding: 28px 24px; text-align: center;
}
.sidebar-cta h4 { font-family: var(--font-display); color: #fff; margin-bottom: 10px; }
.sidebar-cta p  { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.sidebar-cta .guarantee { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 10px; }
/* Coral dot accent matching logo tagline */
.sidebar-cta .guarantee::before { content: '●'; color: var(--coral); margin-right: 5px; font-size: .6rem; vertical-align: middle; }

/* ── PROSE (inner page content) ─────────────────────────────── */
.prose h2 { color: var(--blue); margin: 48px 0 16px; }
.prose h3 { color: var(--blue); margin: 32px 0 12px; }
.prose p  { color: var(--gray-700); margin-bottom: 1.1rem; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; }
.prose ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--gray-700);
}
.prose ul li::before {
  content: '✓'; width: 20px; height: 20px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 800; color: #fff;
  flex-shrink: 0; margin-top: 2px;
}

/* ── FEATURE GRID ────────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.feat-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--r-md); padding: 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.feat-icon {
  width: 42px; height: 42px; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.feat-card strong { display: block; color: var(--blue); font-size: .95rem; margin-bottom: 5px; font-weight: 600; }
.feat-card span   { font-size: .86rem; color: var(--gray-500); line-height: 1.55; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; margin: 32px 0; }
.step  { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gray-100); flex-shrink: 0; width: 48px; line-height: 1;
  padding-top: 4px; transition: color .2s;
}
.step:hover .step-num { color: var(--green); }
.step strong { display: block; color: var(--blue); font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.step p { font-size: .9rem; color: var(--gray-500); margin: 0; line-height: 1.6; }

/* ── LOCATION CARDS ──────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0; }
.loc-card {
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: var(--r-md); padding: 20px;
  text-decoration: none; color: inherit;
  display: flex; align-items: center; gap: 14px;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.loc-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--gray-300); }
.loc-card-icon { font-size: 1.4rem; flex-shrink: 0; }
.loc-card strong { display: block; color: var(--blue); font-weight: 600; margin-bottom: 3px; font-size: .95rem; }
.loc-card span   { font-size: .82rem; color: var(--gray-500); }
.loc-card-arrow  { margin-left: auto; color: var(--green); font-weight: 700; font-size: .9rem; transition: transform .2s; }
.loc-card:hover .loc-card-arrow { transform: translateX(4px); }

/* ── CTA BLOCK (inline) ──────────────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--r-lg); padding: 48px 40px;
  color: #fff; text-align: center; margin: 56px 0;
}
.cta-block h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-block p  { color: rgba(255,255,255,.68); margin-bottom: 28px; }
.cta-block-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:first-child { border-top: 1px solid var(--gray-100); }

.faq-trigger {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
  padding: 22px 4px; background: none; border: none;
  cursor: pointer; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; color: var(--blue);
  text-align: left; transition: color .2s;
}
.faq-trigger:hover { color: var(--green); }

.faq-icon {
  width: 26px; height: 26px; border: 2px solid var(--gray-300);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .78rem; color: var(--gray-500);
  transition: border-color .2s, background .2s, transform .3s;
}
.faq-item.is-open .faq-icon { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 4px 22px; font-size: .92rem; color: var(--gray-700); line-height: 1.75; }

/* ── CLOSING CTA SECTION ─────────────────────────────────────── */
.section-cta {
  background: linear-gradient(160deg, var(--off-white) 0%, #EBF4F0 100%);
  padding: 100px 0; text-align: center;
}
.section-cta h2 { color: var(--blue); margin-bottom: 14px; }
.section-cta p  { color: var(--gray-500); font-size: 1.05rem; max-width: 480px; margin: 0 auto 40px; }
.section-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.section-cta-note {
  margin-top: 20px; font-size: .8rem; color: var(--gray-500);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
/* Deep navy matches the darkest tones in the logo */
.site-footer { background: #04102A; color: rgba(255,255,255,.55); padding: 72px 0 36px; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 32px;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 16px; text-decoration: none; }
.footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); }

.footer-brand p { font-size: .87rem; line-height: 1.75; margin-bottom: 22px; }

.footer-col h4 {
  font-family: var(--font-display); font-size: .92rem;
  color: rgba(255,255,255,.9); margin-bottom: 18px; font-weight: 600;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; font-size: .86rem; }
.footer-contact-row a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-contact-row a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: .78rem; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 18px; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-wrap { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 48px 44px; box-shadow: var(--sh-sm); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--blue); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--gray-100); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .95rem; color: var(--text);
  background: var(--off-white); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 3px rgba(78,154,40,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit .btn { width: 100%; padding: 17px; font-size: 1rem; justify-content: center; }
.form-note { font-size: .8rem; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* Form validation */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #E24B4A; background: #FFF5F5; }
.form-error-msg { display: none; font-size: .78rem; color: #E24B4A; margin-top: 5px; font-weight: 500; }
.form-group.has-error .form-error-msg { display: block; }

/* Form loading */
.btn.is-loading { opacity: .7; pointer-events: none; }
.btn.is-loading::after {
  content: ''; display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

fieldset { border: none; margin-bottom: 32px; }
legend {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--blue); margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100); width: 100%;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── STICKY MOBILE CTA BAR ───────────────────────────────────── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); gap: 10px;
}
.mobile-cta-bar a { flex: 1; text-align: center; padding: 13px 8px; font-size: .85rem; }

/* ── WHATSAPP FLOAT BUTTON ───────────────────────────────────── */
.wa-button {
  position: fixed; bottom: 24px; right: 24px; z-index: 89;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .22s, box-shadow .22s;
  text-decoration: none;
}
.wa-button:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.wa-button svg   { width: 28px; height: 28px; fill: #fff; }

/* ── COOKIE BANNER ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 480px; z-index: 9000;
  background: var(--blue); color: rgba(255,255,255,.85);
  border-radius: var(--r-md); padding: 22px 26px;
  box-shadow: 0 16px 48px rgba(8,25,63,.4);
  border-left: 4px solid var(--coral);
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}
.cookie-banner.is-visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.cookie-banner-title { font-weight: 700; font-size: .95rem; color: #fff; letter-spacing: .02em; }
.cookie-banner-text  { font-size: .82rem; line-height: 1.6; margin: 0; }
.cookie-banner-actions { display: flex; gap: 10px; }
.cookie-btn-accept {
  flex: 1; padding: 9px 16px; background: var(--green); color: #fff;
  border: none; border-radius: 7px; font-size: .84rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body); transition: background .18s;
}
.cookie-btn-accept:hover { background: var(--green-light); }
.cookie-btn-decline {
  padding: 9px 16px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2); border-radius: 7px;
  font-size: .84rem; cursor: pointer; font-family: var(--font-body); transition: background .18s;
}
.cookie-btn-decline:hover { background: rgba(255,255,255,.2); }

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-nav, .mobile-cta-bar, .wa-button,
  .cookie-banner, #chatbot-widget { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .container { max-width: 100%; padding: 0 1cm; }
  a { color: #000; text-decoration: underline; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-phone, .nav-cta-desktop { display: none; }
  .nav-hamburger   { display: flex; }
  .mobile-cta-bar  { display: flex; }
  .wa-button       { bottom: 80px; }
  body { padding-bottom: 76px; }
  .feat-grid { grid-template-columns: 1fr; }
  .loc-grid  { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-block  { padding: 36px 24px; }
}

@media (max-width: 480px) {
  :root { --section-py: 52px; }
  .section-cta-btns { flex-direction: column; align-items: center; }
  .cta-block-btns   { flex-direction: column; align-items: center; }
}
