/* BrightPoint Cleaning — shared stylesheet (v2)
   Mobile-first. Built to be portable into Wix custom CSS / Velo.
   Design direction: premium-but-approachable, in line with modern UK
   cleaning-brand sites (soft depth, generous whitespace, warm accents). */

:root {
  --navy: #1b3a6b;
  --navy-light: #2f5089;
  --gold: #f5a623;
  --gold-dark: #d98e12;
  --sky: #eef3fa;
  --whatsapp: #25d366;
  --cream: #f8f1e5;
  --ink: #16202b;
  --muted: #5c6a78;
  --border: #e9dfc9;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(13, 33, 55, 0.06);
  --shadow: 0 10px 30px rgba(13, 33, 55, 0.10);
  --shadow-lg: 0 20px 50px rgba(13, 33, 55, 0.16);
  --max-width: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  padding-bottom: 64px; /* space for sticky mobile bar */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; font-family: inherit; }
p { margin: 0 0 16px; color: var(--muted); }

@media (min-width: 768px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(245,166,35,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,166,35,0.45); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-call { background: var(--navy); color: var(--white); }
.btn-call:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.logo span { color: var(--gold-dark); }
.logo-img { height: 50px; width: auto; display: block; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 10px 16px; font-size: 0.9rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
}
@media (min-width: 640px) {
  .header-phone { display: inline-flex; margin-right: 8px; }
  .header-actions .btn { padding: 12px 24px; }
}
nav.main-nav { display: none; }

/* Mobile menu toggle + panel */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 0;
}
.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--white);
  z-index: 90;
  overflow-y: auto;
  padding: 20px;
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
}
.mobile-nav-links .mobile-sub-links a {
  padding: 12px 4px 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-light);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .mobile-menu-toggle { display: none; }
  .mobile-nav-panel { display: none !important; }
}
@media (min-width: 900px) {
  nav.main-nav { display: flex; align-items: center; gap: 24px; font-size: 0.95rem; font-weight: 600; white-space: nowrap; }
  nav.main-nav > a { text-decoration: none; color: var(--navy-light); }
  nav.main-nav > a:hover { color: var(--gold-dark); }
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-inner nav.main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Domestic Services dropdown */
.nav-dropdown { position: relative; display: none; }
@media (min-width: 900px) {
  .nav-dropdown { display: flex; align-items: center; }
}
.nav-dropdown > a {
  text-decoration: none;
  color: var(--navy-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a::after { content: "▾"; font-size: 0.7em; }
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a { color: var(--gold-dark); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 14px 0 8px;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--cream); color: var(--gold-dark); }

/* ---------- Promo banner ---------- */
.promo-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.promo-banner strong { font-weight: 800; }
.promo-banner a { color: var(--gold); text-decoration: underline; font-weight: 500; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 44px 0 56px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,107,0.14) 0%, rgba(27,58,107,0) 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; left: -140px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, rgba(245,166,35,0) 70%);
  pointer-events: none;
}
.hero .container { position: relative; display: flex; flex-direction: column; gap: 32px; }
.hero-copy { max-width: 640px; }
.hero-copy .eyebrow {
  display: inline-block;
  background: var(--sky);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-copy p.lead { font-size: 1.15rem; color: var(--navy-light); font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; }
}
.hero-visual { position: relative; }
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4), rgba(255,255,255,0) 45%),
    linear-gradient(135deg, #eef3fa 0%, #b7c8e6 45%, #1b3a6b 100%);
  position: relative;
}
.hero-image::after {
  content: "🏡";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  opacity: 0.9;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-badge .stars { color: var(--gold); font-size: 1rem; }
@media (min-width: 900px) {
  .hero .container { flex-direction: row; align-items: center; }
  .hero-copy { flex: 1; }
  .hero-visual { flex: 1; }
}

/* Full-bleed homepage hero — background photo + centred overlay content.
   Swap the gradient below for a real photo once one is supplied:
   background-image: url('images/hero.jpg'); background-size: cover; background-position: center; */
.hero.hero-full {
  min-height: 500px;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 90px 0;
  background-image: linear-gradient(rgba(18,41,79,0.48), rgba(18,41,79,0.48)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero.hero-full::before { content: none; }
.hero.hero-full::after { content: none; }
.hero-full .container { display: block; position: relative; z-index: 1; }
.hero-full .hero-copy { max-width: 720px; margin: 0 auto; }
.hero-full .eyebrow { background: rgba(255,255,255,0.14); color: #fff; }
.hero-full h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.hero-full p.lead { color: rgba(255,255,255,0.92); font-family: inherit; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.hero-full .hero-ctas { justify-content: center; }
.hero-full .hero-trust { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
@media (min-width: 900px) {
  .hero.hero-full .container { flex-direction: column; }
}

/* Hero with embedded quote form (homepage) */
.hero-with-quote { padding-bottom: 70px; }
.hero-with-quote .hero-quote-card { margin-top: 56px; }
.hero-with-quote .hero-quote-card .quote-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 26px;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.hero-with-quote .hero-quote-card h2 { font-size: 1.4rem; margin-bottom: 6px; }
.hero-with-quote .hero-quote-card > .quote-form > p { font-size: 0.92rem; margin-bottom: 18px; }
@media (min-width: 960px) {
  .hero.hero-full.hero-with-quote .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    text-align: left;
  }
  .hero-full.hero-with-quote .hero-copy { flex: 1; max-width: 520px; margin: 0; padding-top: 24px; }
  .hero-full.hero-with-quote .hero-ctas { justify-content: flex-start; }
  .hero-with-quote .hero-quote-card { flex: 0 0 440px; margin-top: 0; }
  .hero-with-quote .hero-quote-card .quote-form { margin: 0; }
}

/* Landing-page hero variant: on mobile the quote form is the very first
   thing on the page, above the heading; on desktop it reverts to the
   standard two-column layout with CTAs back under the heading.
   Homepage is unaffected. */
.hero.hero-full.hero-with-quote.hero-with-quote-reorder .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "quote" "copy" "ctas";
  gap: 28px;
}
.hero-with-quote-reorder .hero-copy { grid-area: copy; }
.hero-with-quote-reorder .hero-quote-card { grid-area: quote; margin-top: 0; }
.hero-with-quote-reorder .hero-ctas-wrap { grid-area: ctas; }
.hero-ctas-secondary { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin: 0; }
.hero-ctas-secondary a { color: #fff; font-weight: 700; text-decoration: underline; }
@media (min-width: 960px) {
  .hero.hero-full.hero-with-quote.hero-with-quote-reorder .container {
    grid-template-columns: 1fr 440px;
    grid-template-areas: "copy quote" "ctas quote";
    align-items: start;
    gap: 4px 80px;
    text-align: left;
  }
  .hero-with-quote-reorder .hero-copy { max-width: 520px; padding-top: 24px; margin-bottom: 0; }
  .hero-with-quote-reorder .hero-copy p.lead { margin-bottom: 0; }
  .hero-with-quote-reorder .hero-ctas-wrap { margin-top: 4px; }
  .hero-with-quote-reorder .hero-ctas-wrap .hero-ctas { justify-content: flex-start; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 22px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: center;
}
@media (min-width: 700px) {
  .trust-strip .container { grid-template-columns: repeat(4, 1fr); }
}
.trust-item { font-size: 0.72rem; color: #c9d6e3; }
.trust-item strong { display: block; font-size: 1.3rem; margin-bottom: 3px; color: var(--gold); font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-alt { background: var(--cream); }

/* Booking steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 32px 0;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 { margin-bottom: 6px; font-size: 1.05rem; font-family: inherit; }
.step-card p { font-size: 0.92rem; margin: 0; }

.booking-cta-box {
  background: linear-gradient(160deg, var(--navy) 0%, #163756 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.booking-cta-box h2 { color: var(--white); }
.booking-cta-box p { color: #c9d6e3; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid.service-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .service-grid.service-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.service-card-wide {
  margin-top: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--sky);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.service-card-wide .service-card-image {
  width: 100%;
  max-width: 220px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.service-card-wide .service-card-body h3 { margin-bottom: 6px; }
.service-card-wide .service-card-body p { margin-bottom: 0; }
@media (min-width: 700px) {
  .service-card-wide {
    flex-direction: row;
    text-align: left;
    padding: 28px 32px;
  }
  .service-card-wide .service-card-image { width: 180px; aspect-ratio: 4/3; }
  .service-card-wide .service-card-body { flex: 1; }
  .service-card-wide .service-card-cta { flex-shrink: 0; }
}
.service-card-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--sky);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-grid-even { align-items: stretch; }
.service-grid-even .service-card { display: flex; flex-direction: column; }
.service-grid-even .service-card p { flex: 1; }
.service-grid-even .service-card .btn { align-self: flex-start; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 { color: var(--navy); font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.service-card .btn { margin-top: 10px; padding: 10px 20px; font-size: 0.9rem; }

/* Secondary services teaser */
.secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .secondary-grid { grid-template-columns: 1fr 1fr; }
}
.secondary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.secondary-card h3 { font-size: 1.05rem; margin-bottom: 6px; font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.secondary-card p { font-size: 0.9rem; margin-bottom: 14px; }

/* Audience / who it's for */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.audience-card .icon-lg {
  display: flex;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.audience-card h3 { margin-bottom: 6px; }
.audience-card p { margin: 0; font-size: 0.92rem; }

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: minmax(240px, 320px) 1fr; }
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  height: 100%;
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--sky);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h3 { margin-bottom: 2px; font-size: 1rem; }
.contact-info-item p { margin: 0; font-size: 0.95rem; }

/* Checklist columns */
.checklist-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) {
  .checklist-columns { grid-template-columns: repeat(2, 1fr); }
}
.checklist-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.checklist-col h3 { color: var(--navy); margin-bottom: 14px; }
.checklist-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist-col li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink);
}
.checklist-col li::before {
  content: "✓";
  color: var(--gold-dark);
  font-weight: 800;
  flex-shrink: 0;
}
.addon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 700px) {
  .addon-list { grid-template-columns: repeat(2, 1fr); }
}
.addon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.addon-list li::before { content: "+"; color: var(--gold-dark); font-weight: 800; flex-shrink: 0; }

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 28px 16px 0;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 16px; font-size: 0.94rem; }

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .review-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 10px; }
.review-card p { font-size: 0.94rem; color: var(--ink); }
.review-name { font-weight: 700; font-size: 0.85rem; color: var(--muted); }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.why-item .icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--sky);
  color: var(--gold-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}
.why-item h3 { margin-bottom: 4px; font-size: 1.02rem; font-family: inherit; }
.why-item p { margin: 0; font-size: 0.92rem; }

/* Final CTA band */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #142b52 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.92); }
.final-cta .btn-secondary { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Final CTA with embedded quote form (service landing pages) */
.final-cta-quote { padding: 70px 0; text-align: left; }
.final-quote-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.final-quote-copy { max-width: 560px; }
.final-quote-copy h2 { color: var(--white); }
.final-quote-copy p { color: rgba(255,255,255,0.85); }
.final-quote-copy .quote-callout { margin-top: 18px; }
.final-quote-copy .quote-callout a { color: var(--white); font-weight: 700; text-decoration: underline; }
.final-quote-grid .quote-form { text-align: left; }
@media (min-width: 960px) {
  .final-quote-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    text-align: left;
  }
  .final-quote-copy { flex: 1; max-width: 480px; padding-top: 24px; }
  .final-quote-grid .quote-form { flex: 0 0 480px; margin: 0; }
}

/* Footer */
footer {
  background: var(--navy);
  color: #c9d6e3;
  padding: 44px 0 24px;
  font-size: 0.9rem;
}
footer a { color: #c9d6e3; text-decoration: none; }
footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-grid h4 { color: var(--white); margin-bottom: 10px; font-size: 0.95rem; font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  font-size: 0.8rem;
  color: #93a6ba;
}
.footer-bottom p { margin: 0 0 6px; color: #93a6ba; }
.footer-logo { height: 34px; width: auto; margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.social-icon:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.10);
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.mobile-cta-bar .cta-price { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.mobile-cta-bar .cta-call { background: var(--navy); color: var(--white); }
@media (min-width: 900px) {
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Floating WhatsApp / Call button ---------- */
.float-actions {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 900px) {
  .float-actions { bottom: 28px; }
}
.float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  font-size: 1.5rem;
  transition: transform 0.18s ease;
}
.float-btn:hover { transform: scale(1.06); }
.float-btn.whatsapp { background: var(--whatsapp); }
.float-btn.call { background: var(--navy); }

/* ---------- Quote form ---------- */
.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px 26px;
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(22,128,106,0.15);
}
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success.active { display: block; }
.form-success h3 { color: var(--navy); font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-light);
}
