/* ═══════════════════════════════════════════════════════════════
   ASHIRWAD SERVICES — PREMIUM DESIGN SYSTEM
   Mobile-first • BEM naming • CSS Custom Properties
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --primary: #1A3C6E;
  --primary-light: #2557A7;
  --primary-dark: #0F2847;
  --accent: #FF6B00;
  --accent-light: #FF8C38;
  --accent-dark: #E55D00;
  --gold: #F4A623;
  --success: #22C55E;
  --whatsapp: #25D366;
  --danger: #EF4444;

  /* Text */
  --text-dark: #0F172A;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #FFFFFF;

  /* Backgrounds */
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-dark: #0F172A;
  --border: #E2E8F0;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-blue: 0 8px 30px rgba(26,60,110,0.20);
  --shadow-accent: 0 8px 25px rgba(255,107,0,0.30);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 4rem;
  --container-px: 1rem;
  --container-max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── 3. UTILITIES ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* Animated visibility for Intersection Observer */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 1.75rem;
  margin-bottom: .5rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: .95rem;
}
.section-header .section-badge {
  display: inline-block;
  background: rgba(26,60,110,.08);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@media(min-width:768px) {
  .section-header h2 { font-size: 2.25rem; }
}
@media(min-width:1024px) {
  .section-header h2 { font-size: 2.5rem; }
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  transition: all .3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,107,0,.35);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1EB954;
  border-color: #1EB954;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
}

/* ── 6. ANNOUNCEMENT BAR ─────────────────────────────────── */
.announcement-bar {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 500;
  position: relative;
  z-index: 10001;
  overflow: hidden;
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announcement-bar__dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}
.announcement-bar__text { text-align: center; }
.announcement-bar__text a { color: #fff; font-weight: 700; text-decoration: underline; }
.announcement-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s;
}
.announcement-bar__close:hover { background: rgba(255,255,255,.35); }
.announcement-bar.hidden { display: none; }

/* Mobile marquee */
@media(max-width:600px) {
  .announcement-bar__text {
    animation: marquee 15s linear infinite;
    white-space: nowrap;
  }
  @keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
}

/* ── 7. HEADER / NAVIGATION ──────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
/* Transparent state (homepage hero) */
.site-header--transparent {
  background: transparent;
}
/* Solid state (scrolled or inner pages) */
.site-header--solid,
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.header__logo img {
  height: 40px;
  width: auto;
}
/* Accent vertical divider between icon & text */
.header__logo-divider {
  width: 2.5px;
  height: 34px;
  margin: 0 10px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.header__logo-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--text-dark);
}
.header__logo-text em {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--accent);
}
.header__logo-text small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .55rem;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-top: 1px;
}
/* Logo text color — transparent header (white) */
.site-header--transparent .header__logo-text strong { color: #fff; }
.site-header--transparent .header__logo-text small { color: rgba(255,255,255,.7); }
.site-header--transparent .header__logo-divider { background: var(--accent); }
/* Logo text color — solid / scrolled (brand colors) */
.site-header--solid .header__logo-text strong,
.site-header.scrolled .header__logo-text strong { color: var(--primary); }
.site-header--solid .header__logo-text small,
.site-header.scrolled .header__logo-text small { color: var(--text-light); }
.site-header--transparent.scrolled .header__logo-text strong { color: var(--primary); }
.site-header--transparent.scrolled .header__logo-text small { color: var(--text-light); }

/* Desktop nav */
.header__nav {
  display: none;
}
.header__nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header__nav a {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s;
}
.header__nav a:hover::after,
.header__nav a.active::after { width: 100%; }

/* Header on transparent bg */
.site-header--transparent .header__nav a { color: #fff; }
.site-header--transparent .header__nav a::after { background: var(--accent-light); }
.site-header--transparent .header__logo-dark { display: none; }
.site-header--transparent .header__logo-light { display: block; }
.site-header--solid .header__logo-dark,
.site-header.scrolled .header__logo-dark { display: block; }
.site-header--solid .header__logo-light,
.site-header.scrolled .header__logo-light { display: none; }
/* Override transparent text when scrolled */
.site-header--transparent.scrolled .header__nav a { color: var(--text-dark); }
.site-header--transparent.scrolled .header__nav a::after { background: var(--accent); }
.site-header--transparent.scrolled .header__cta-call { border-color: var(--primary); color: var(--primary); }
.site-header--transparent.scrolled .header__cta-call:hover { background: var(--primary); color: #fff; }
.site-header--transparent.scrolled .header__phone-mobile { color: var(--primary); }
.site-header--transparent.scrolled .header__hamburger span { background: var(--text-dark); }

/* Header CTAs */
.header__ctas {
  display: none;
  align-items: center;
  gap: 10px;
}
.header__cta-call {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s;
}
.header__cta-call:hover {
  background: var(--primary);
  color: #fff;
}
.site-header--transparent .header__cta-call {
  border-color: #fff;
  color: #fff;
}
.site-header--transparent .header__cta-call:hover {
  background: #fff;
  color: var(--primary);
}
.header__cta-quote {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s;
  box-shadow: var(--shadow-accent);
}
.header__cta-quote:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Trust strip under header */
.header__trust {
  display: none;
  justify-content: center;
  gap: 1.5rem;
  padding: 6px 0;
  background: var(--bg-light);
  font-size: .75rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.header__trust span { display: flex; align-items: center; gap: 4px; }
.header__trust span i { color: var(--success); font-size: .7rem; }

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 10002;
}
.header__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s;
}
.site-header--transparent .header__hamburger span { background: #fff; }
.site-header.scrolled .header__hamburger span { background: var(--text-dark); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 10001;
  padding: 5rem 2rem 2rem;
  transition: right .35s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu__overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu__close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.mobile-menu__logo img { height: 34px; width: auto; }
.mobile-menu__logo-divider {
  width: 2.5px;
  height: 28px;
  margin: 0 8px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.mobile-menu__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.mobile-menu__logo-text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  color: var(--primary);
}
.mobile-menu__logo-text em {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--accent);
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }

.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5rem;
}

/* Mobile phone always visible */
.header__phone-mobile {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--primary);
}
.site-header--transparent .header__phone-mobile { color: #fff; }
.site-header.scrolled .header__phone-mobile { color: var(--primary); }

@media(min-width:1024px) {
  .header__nav { display: flex; }
  .header__ctas { display: flex; }
  .header__hamburger { display: none; }
  .header__phone-mobile { display: none; }
  .header__trust { display: flex; }
}

/* ── 8. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1B2D 0%, #1A3C6E 50%, #0F2847 100%);
}
/* Animated gradient bg */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg,
    rgba(255,107,0,.08) 0%,
    transparent 40%,
    rgba(26,60,110,.15) 70%,
    transparent 100%
  );
  animation: hero-gradient 8s ease infinite alternate;
  z-index: 0;
}
@keyframes hero-gradient {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-5%,5%) scale(1.1); }
}
/* Subtle pattern overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

/* Video bg if exists */
.hero__video {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,.85), rgba(26,60,110,.75));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Hero content (left side on desktop) */
.hero__content { color: #fff; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,166,35,.15);
  border: 1px solid rgba(244,166,35,.3);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .75rem;
}

.hero__subtitle {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}

/* Social proof row */
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
}
.hero__proof-item { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: rgba(255,255,255,.9); }
.hero__proof-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.hero__proof-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}

.hero__trust-note {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* Hero form (right side on desktop) */
.hero__form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
  width: 100%;
  max-width: 440px;
}
.hero__form-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.hero__form-header h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .25rem;
}
.hero__form-tag {
  display: inline-block;
  background: #FFF3E6;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.hero__form .form-group {
  margin-bottom: .75rem;
}
.hero__form .form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero__form .form-control {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.hero__form .form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37,87,167,.12);
}
.hero__form .form-icon {
  position: relative;
}
.hero__form .form-icon i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .85rem;
  pointer-events: none;
}
.hero__form .form-icon--textarea i { top: 20px; transform: none; }
.hero__form textarea.form-control { min-height: 60px; resize: vertical; padding-top: 10px; }
.hero__form select.form-control { padding-left: 40px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.hero__form-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, transform .2s;
  box-shadow: var(--shadow-accent);
  margin-top: .25rem;
}
.hero__form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero__form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: .75rem;
  font-size: .72rem;
  color: var(--text-muted);
}

/* Live activity */
.live-activity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin-top: 1rem;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@media(min-width:768px) {
  .hero__title { font-size: 2.5rem; }
}
@media(min-width:1024px) {
  .hero { padding: 8rem 0 4rem; }
  .hero__inner {
    flex-direction: row;
    align-items: center;
  }
  .hero__content { flex: 1; }
  .hero__form-card { flex: 0 0 420px; margin-left: auto; }
  .hero__title { font-size: 3rem; }
}

/* ── 9. TRUST LOGOS BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.trust-bar__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
}
.trust-bar__logo i { color: var(--success); font-size: 1rem; }

@media(max-width:600px) {
  .trust-bar__logos {
    animation: scroll-logos 20s linear infinite;
    flex-wrap: nowrap;
  }
  @keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

/* ── 10. HOW IT WORKS ─────────────────────────────────────── */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card__number {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
}
.step-card__icon {
  font-size: 1.75rem;
  margin-bottom: .25rem;
}
.step-card h3 {
  font-size: 1rem;
  margin-bottom: .25rem;
}
.step-card p {
  font-size: .88rem;
  color: var(--text-muted);
}

@media(min-width:768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width:1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── 11. SERVICES ─────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card__image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.service-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.6) 0%, transparent 50%);
}
.service-card__image-label {
  position: absolute;
  bottom: 12px; left: 12px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.service-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--primary);
}
.service-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: .75rem;
  line-height: 1.5;
  flex: 1;
}
.service-card__benefits {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1rem;
}
.service-card__benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--text-body);
}
.service-card__benefit i { color: var(--success); font-size: .75rem; }
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.service-card__price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.service-card__cta:hover { background: var(--accent-dark); }

@media(min-width:480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card__image { height: 200px; }
}

/* ── 12. WHY CHOOSE US ────────────────────────────────────── */
.why-us {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.why-us__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Left: stats counters */
.why-us__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-box {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.stat-box__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}
.stat-box__label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Right: feature grid */
.why-us__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: border-color .2s, transform .2s;
}
.feature-box:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.feature-box__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26,60,110,.1), rgba(37,87,167,.08));
  border-radius: var(--radius-md);
  font-size: 1.3rem;
}
.feature-box h3 {
  font-size: .95rem;
  margin-bottom: .15rem;
}
.feature-box p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media(min-width:480px) {
  .why-us__features { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .why-us__inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .why-us__left { flex: 0 0 40%; }
  .why-us__right { flex: 1; }
  .why-us__features { grid-template-columns: repeat(2, 1fr); }
  .why-us__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── 13. AREAS WE SERVE ───────────────────────────────────── */
.areas {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}

/* Tabs */
.area-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.area-tab {
  padding: 8px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-white);
  cursor: pointer;
  transition: all .2s;
}
.area-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.area-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Tab panels */
.area-panel { display: none; }
.area-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-body);
  transition: all .2s;
}
.area-chip::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .7rem;
  color: var(--accent);
}
.area-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-chip:hover::before { color: var(--gold); }

.area-callout {
  text-align: center;
  margin-top: 1.5rem;
  padding: 14px 20px;
  background: #FDF6E3;
  border: 1px solid #F4D976;
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-body);
}
.area-callout a { color: var(--primary); font-weight: 700; }

/* Mobile accordion variant */
@media(max-width:767px) {
  .area-tabs { display: none; }
  .area-panels--desktop { display: none; }
  .area-accordion { display: block; }
  .area-accordion__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: .5rem;
    overflow: hidden;
  }
  .area-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: .95rem;
    font-weight: 600;
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
  }
  .area-accordion__trigger i { transition: transform .3s; }
  .area-accordion__trigger.active i { transform: rotate(180deg); }
  .area-accordion__content {
    display: none;
    padding: 12px 16px;
    background: var(--bg-light);
  }
  .area-accordion__content.open { display: flex; flex-wrap: wrap; gap: 8px; }
}
@media(min-width:768px) {
  .area-accordion { display: none; }
}

/* ── 14. PRICING ──────────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card--popular {
  border-color: var(--accent);
}
.price-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}
.price-card__header {
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.25rem;
}
.price-card__header h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}
.price-card__route {
  font-size: .8rem;
  opacity: .8;
}
.price-card__body {
  padding: 1.25rem;
}
.price-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: .25rem;
}
.price-card__price--secondary {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: .25rem;
}
.price-card__sublabel {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .75rem;
}
.price-card__includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}
.price-card__includes li {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--text-body);
}
.price-card__includes li i { color: var(--success); font-size: .75rem; }
.price-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.price-card__cta:hover { background: var(--accent-dark); }

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem 1.25rem;
  background: #F0F7FF;
  border: 1px solid #B3D4FC;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: .88rem;
  color: var(--text-body);
}
.pricing-note i { color: var(--primary-light); font-size: 1.1rem; margin-top: 2px; }

@media(min-width:480px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 15. TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.testimonials__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.testimonials__rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 1.1rem; font-weight: 700; color: var(--text-dark);
}
.testimonials__rating .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 1px; }
.testimonials__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-body);
}
.testimonials__google-badge img { height: 16px; }

.testimonials-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -0.5rem;
}
.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}
.review-card {
  flex: 0 0 100%;
  padding: 0 .5rem;
  box-sizing: border-box;
}
.review-card__inner {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: .95rem; color: var(--text-dark); }
.review-card__type { font-size: .8rem; color: var(--text-muted); }
.review-card__stars { color: var(--gold); margin-bottom: .5rem; font-size: .95rem; }
.review-card__text {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}
.review-card__google {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 1rem;
  font-size: .72rem;
  color: var(--text-muted);
}

/* Slider nav */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  align-items: center;
}
.testimonials-nav__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all .2s;
}
.testimonials-nav__btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.testimonials-dots {
  display: flex;
  gap: 6px;
  margin: 0 .5rem;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all .2s;
  cursor: pointer;
}
.testimonials-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

@media(min-width:768px) {
  .review-card { flex: 0 0 50%; }
}
@media(min-width:1024px) {
  .review-card { flex: 0 0 33.3333%; }
}

/* ── 16. FAQ ──────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--bg-white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.active { border-color: var(--primary); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-white);
  cursor: pointer;
  text-align: left;
}
.faq-item.active .faq-item__question { color: var(--primary); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all .3s;
}
.faq-item.active .faq-item__icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}
.faq-item.active .faq-item__answer {
  max-height: 400px;
  padding: 0 20px 16px;
}
.faq-item__answer p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.65;
}
.faq-item__answer a { color: var(--primary-light); font-weight: 500; }

@media(min-width:768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}

/* ── 17. CONTACT ──────────────────────────────────────────── */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.contact-card__icon--phone { background: rgba(26,60,110,.1); color: var(--primary); }
.contact-card__icon--whatsapp { background: rgba(37,211,102,.1); color: var(--whatsapp); }
.contact-card__icon--location { background: rgba(255,107,0,.1); color: var(--accent); }
.contact-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.contact-card p { font-size: .88rem; color: var(--text-muted); }
.contact-card a { color: var(--primary); font-weight: 600; }

/* Contact form */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info-block h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.contact-info-block p { font-size: .9rem; color: var(--text-body); line-height: 1.7; }

.contact-form {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}
.contact-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
}
.contact-form .form-control:focus { border-color: var(--primary-light); }
.contact-form textarea { min-height: 80px; resize: vertical; }

@media(min-width:768px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .contact-form-wrap { grid-template-columns: 1fr 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr 1fr; }
}

/* Map */
.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-map iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ── 18. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  padding: 3.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__col h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 8px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}

/* Brand column */
.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  margin-bottom: .75rem;
}
.footer__brand-logo { height: 38px; }
.footer__brand-divider {
  width: 2.5px;
  height: 32px;
  margin: 0 10px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.footer__brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.footer__brand-name strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  color: #fff;
}
.footer__brand-name em {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--accent);
}
.footer__brand-name small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .52rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  margin-top: 1px;
}
.footer__brand-text { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; line-height: 1.6; }
.appetenza { font-family: 'Berlin Sans FB', sans-serif !important; text-decoration: none !important; color: rgb(255, 255, 255) !important;}
.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .95rem;
  transition: background .2s, transform .2s;
}
.footer__social:hover { background: var(--accent); transform: translateY(-2px); }

.footer__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: .75rem;
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
}

/* Link columns */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer__links a:hover { color: var(--accent); }
.footer__links a i { width: 16px; margin-right: 6px; font-size: .8rem; }

/* Contact column */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: .75rem;
  font-size: .88rem;
}
.footer__contact-item i {
  color: var(--accent);
  margin-top: 3px;
  width: 16px;
}
.footer__contact-item a { color: rgba(255,255,255,.85); }
.footer__contact-item a:hover { color: var(--accent); }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer__bottom a { color: rgba(255,255,255,.6); }
.footer__bottom a:hover { color: var(--accent); }

@media(min-width:768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
@media(min-width:1024px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

/* ── 19. FLOATING BUTTONS ─────────────────────────────────── */
/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  animation: pulse-green 2s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.7); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Call float — mobile only */
.call-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255,107,0,.35);
  animation: pulse-orange 2s infinite;
}
@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(255,107,0,.6); }
  70% { box-shadow: 0 0 0 18px rgba(255,107,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
}

/* Sticky bottom bar — mobile */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  height: 56px;
}
.sticky-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.sticky-bottom-bar__call {
  background: var(--primary);
}
.sticky-bottom-bar__whatsapp {
  background: var(--whatsapp);
}

@media(max-width:767px) {
  .call-float { display: flex; }
  .sticky-bottom-bar { display: flex; }
  .wa-float { bottom: 80px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .call-float { bottom: 80px; left: 16px; width: 52px; height: 52px; }
  body { padding-bottom: 56px; } /* space for sticky bar */
}

/* ── 20. EXIT INTENT POPUP ────────────────────────────────── */
.exit-popup {
  position: fixed; inset: 0;
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
}
.exit-popup.show { display: flex; }
.exit-popup__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}
.exit-popup__card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.exit-popup__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
}
.exit-popup__close:hover { background: var(--bg-light); }
.exit-popup__card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.exit-popup__card p { color: var(--text-muted); margin-bottom: 1.25rem; }
.exit-popup__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.exit-popup__form input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  outline: none;
}
.exit-popup__form input:focus { border-color: var(--accent); }
.exit-popup__form button {
  flex: 0 0 auto;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  white-space: nowrap;
  transition: background .2s;
}
.exit-popup__form button:hover { background: var(--accent-dark); }

/* Exit popup mobile fix */
@media (max-width: 480px) {
  .exit-popup__card {
    width: 92%;
    padding: 1.5rem 1.25rem;
    max-width: 340px;
  }
  .exit-popup__card h3 { font-size: 1.2rem; }
  .exit-popup__card p { font-size: .85rem; margin-bottom: 1rem; }
  .exit-popup__form {
    flex-direction: column;
  }
  .exit-popup__form input {
    flex: unset;
    width: 100%;
    padding: 11px 12px;
    font-size: .9rem;
  }
  .exit-popup__form button {
    width: 100%;
    padding: 12px;
    font-size: .95rem;
    text-align: center;
  }
}

/* ── 21. URGENCY BADGES ───────────────────────────────────── */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #FFF8E6;
  border: 1px solid #F4D976;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--text-body);
}
.guarantee-strip span { display: flex; align-items: center; gap: 4px; }

/* ── City card pill-chip base styles (used on all pages) ──── */
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s ease;
}
.city-card::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .72rem;
  color: var(--accent);
  transition: color .25s;
}
.city-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.city-card:hover::before { color: var(--gold); }

/* ── 22. SECTION SCROLL MARGIN ────────────────────────────── */
section[id] {
  scroll-margin-top: 80px;
}

/* ── 24. FORM VALIDATION STATES ───────────────────────────── */
.form-control.is-valid { border-color: var(--success); }
.form-control.is-invalid { border-color: var(--danger); }
.form-error {
  font-size: .75rem;
  color: var(--danger);
  margin-top: 2px;
}

/* ── 25. INNER PAGE STYLES ─────────────────────────────────── */

/* Page Banner (inner-page hero replacement) */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 7rem 1rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,.15), transparent 70%);
  border-radius: 50%;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
  border-radius: 50%;
}
.page-banner__title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}
.page-banner__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-banner .breadcrumb--inner {
  justify-content: center;
  background: transparent;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}
.page-banner .breadcrumb--inner a,
.page-banner .breadcrumb--inner span { color: rgba(255,255,255,.7); font-size: .9rem; }
.page-banner .breadcrumb--inner a:hover { color: #fff; }
.page-banner .breadcrumb--inner .breadcrumb__sep { margin: 0 .5rem; }
.page-banner .breadcrumb--inner .breadcrumb__current { color: var(--accent-light); }

@media(min-width: 768px) {
  .page-banner { padding: 8rem 2rem 3.5rem; }
  .page-banner__title { font-size: 2.8rem; }
}

/* Breadcrumb */
.breadcrumb--inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

/* Page Content (privacy, terms, etc.) */
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--section-py) var(--container-px);
}
.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.page-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 .5rem;
}
.page-content p {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content li {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: .5rem;
}
.page-content a {
  color: var(--accent);
  text-decoration: underline;
  transition: color .2s;
}
.page-content a:hover { color: var(--accent-dark); }
.page-content .last-updated {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ── 26. CITY PAGE — PREMIUM REDESIGN ─────────────────────── */

/* City hero */
.city-page .city-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.city-page .city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,40,71,.92), rgba(26,60,110,.78));
  z-index: 0;
}
.city-page .city-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem var(--container-px);
  width: 100%;
}
.city-page .hero-copy {
  flex: 1;
}
.city-page .hero-copy h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .25rem;
  line-height: 1.2;
}
.city-page .hero-copy .hero-company {
  color: var(--accent-light);
}
.city-page .hero-copy h2 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  margin: .5rem 0 1.5rem;
  line-height: 1.6;
}
.city-page .hero-copy .slogan {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,107,0,.2);
  border: 1px solid rgba(255,107,0,.4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

/* City quote form (inside hero) */
.city-page .quote-form {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 420px;
  min-width: 380px;
}
.city-page .quote-form .form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.city-page .quote-form .form-header p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.city-page .quote-form .input-icon {
  position: relative;
  margin-bottom: .75rem;
}
.city-page .quote-form .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  z-index: 1;
}
.city-page .quote-form input,
.city-page .quote-form textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}
.city-page .quote-form input::placeholder,
.city-page .quote-form textarea::placeholder {
  color: rgba(255,255,255,.5);
}
.city-page .quote-form input:focus,
.city-page .quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.15);
}
.city-page .quote-form textarea {
  min-height: 70px;
  resize: vertical;
}
.city-page .quote-form .form-grid {
  display: flex;
  gap: .75rem;
}
.city-page .quote-form .left-inputs,
.city-page .quote-form .right-inputs {
  flex: 1;
}
.city-page .quote-form .btn-quote {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  box-shadow: var(--shadow-accent);
  margin-top: .5rem;
}
.city-page .quote-form .btn-quote:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* City breadcrumb */
.city-page .breadcrumb {
  padding: .75rem 1rem;
  background: var(--bg-light);
  font-size: .9rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.city-page .breadcrumb a { color: var(--primary-light); font-weight: 500; }
.city-page .breadcrumb span { color: var(--text-muted); }

/* City intro section */
.city-page .city-intro {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 3rem var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
}
.city-page .city-intro .intro-left {
  flex: 1;
}
.city-page .city-intro .intro-left h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.city-page .city-intro .intro-left p {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.city-page .city-intro .intro-cta {
  width: 340px;
  min-width: 300px;
}
.city-page .city-intro .quote-box {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.city-page .city-intro .quote-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .25rem;
}
.city-page .city-intro .quote-box p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.city-page .city-intro .quote-box .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  box-shadow: var(--shadow-accent);
}
.city-page .city-intro .quote-box .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Section titles on city pages */
.city-page .section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .5rem;
}
.city-page .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Service grid */
.city-page .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.city-page .service-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow .3s, transform .3s;
}
.city-page .service-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.city-page .service-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: .75rem;
}
.city-page .service-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.city-page .service-item p {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* City highlights */
.city-page .city-highlights {
  background: var(--bg-light);
  padding: 2.5rem var(--container-px);
  border-radius: var(--radius-md);
  margin-top: 1rem;
}
.city-page .city-highlights h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.city-page .city-highlights ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.city-page .city-highlights li {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-body);
  transition: all .2s;
}
.city-page .city-highlights li::before {
  content: "\2714\00a0";
  color: var(--success);
  font-weight: 700;
}
.city-page .city-highlights li:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

/* Pricing table */
.city-page .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.city-page .pricing-table th,
.city-page .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .92rem;
}
.city-page .pricing-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.city-page .pricing-table td {
  border-bottom: 1px solid var(--border);
}
.city-page .pricing-table tr:nth-child(even) td {
  background: var(--bg-light);
}
.city-page .pricing-table tr:hover td {
  background: rgba(26,60,110,.04);
}
.city-page .pricing-note {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .75rem;
  font-style: italic;
}

/* Testimonials */
.city-page .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.city-page .testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: box-shadow .3s;
}
.city-page .testimonial-card:hover {
  box-shadow: var(--shadow-md);
}
.city-page .testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.city-page .testimonial-card .review {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.city-page .testimonial-card .author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  color: var(--text-muted);
}

/* City FAQ */
.city-page .city-faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .3s;
}
.city-page .city-faq details:hover {
  box-shadow: var(--shadow-sm);
}
.city-page .city-faq details[open] {
  border-color: var(--primary-light);
}
.city-page .city-faq details summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  transition: background .2s, color .2s;
  list-style: none;
}
.city-page .city-faq details summary::-webkit-details-marker { display: none; }
.city-page .city-faq details summary::after {
  content: '+';
  float: right;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform .3s;
}
.city-page .city-faq details[open] summary::after {
  content: '−';
}
.city-page .city-faq details[open] summary {
  background: var(--bg-light);
  color: var(--primary);
}
.city-page .city-faq details p {
  margin: 0;
  padding: 1rem 1.25rem;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: .92rem;
  line-height: 1.7;
}

/* WhatsApp CTA */
.city-page .whatsapp-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  padding: 4rem var(--container-px);
}
.city-page .whatsapp-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.city-page .whatsapp-cta p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}
.city-page .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.city-page .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}
.city-page .btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.4);
  margin-left: 12px;
  transition: all .2s;
}
.city-page .btn-phone-cta:hover {
  background: rgba(255,255,255,.22);
}

/* City area / neighbourhoods */
.city-page .city-area {
  padding: 3rem var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
}
.city-page .city-area h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Cities index page */
.cities-page {
  padding-top: 0;
}
.cities-page .search {
  margin: 1.5rem 0;
}
.cities-page .search label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.cities-page .search input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg-white);
}
.cities-page .search input:focus {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-blue);
  outline: none;
}
.cities-page .city-list {
  margin-top: 1rem;
}
.cities-page h1 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cities-page > p {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  margin: .5rem 0 0;
}

/* City page responsive */
@media(max-width: 800px) {
  .city-page .city-hero .hero-inner { flex-direction: column; text-align: center; }
  .city-page .quote-form { width: 100%; min-width: 0; }
  .city-page .quote-form .form-grid { flex-direction: column; }
  .city-page .city-intro { flex-direction: column; }
  .city-page .city-intro .intro-cta { width: 100%; min-width: 0; }
  .city-page .btn-phone-cta { margin-left: 0; margin-top: 10px; }
  .city-page .hero-copy h1 { font-size: 1.5rem; }
  .city-page .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── 27. PRINT STYLES ─────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .wa-float, .call-float,
  .sticky-bottom-bar, .exit-popup, .announcement-bar { display: none !important; }
}
