/* ============================================================
   CORE SERVICES — Global Stylesheet (Light Theme)
   Colors: White #ffffff | Cyan #6BC8D4 | Dark text #0d0d0d
   ============================================================ */

/* ── Lucide icon sizing ── */
.p-icon svg            { width: 36px; height: 36px; stroke: var(--cyan); fill: none; stroke-width: 1.5; }
.s-icon svg            { width: 28px; height: 28px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 1.5; }
.service-img svg       { width: 56px; height: 56px; stroke: var(--cyan-dark); fill: none; stroke-width: 1.25; }
.footer-trust-icon svg { width: 22px; height: 22px; stroke: var(--cyan-dark); fill: none; }
.contact-icon svg      { width: 26px; height: 26px; stroke: var(--cyan-dark); fill: none; }
.upload-icon svg       { width: 36px; height: 36px; stroke: var(--cyan); fill: none; }
.big-icon svg          { width: 56px; height: 56px; stroke: var(--cyan); fill: none; }
.hours-card h3 svg     { width: 16px; height: 16px; stroke: var(--cyan-dark); fill: none; vertical-align: middle; margin-right: 6px; position: relative; top: -1px; }
.btn svg               { width: 16px; height: 16px; fill: none; stroke-width: 2; vertical-align: middle; margin-right: 6px; position: relative; top: -1px; }
.contact-success-icon svg { width: 48px; height: 48px; stroke: var(--cyan); fill: none; }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:         #ffffff;
  --bg-soft:    #f7f8fa;
  --bg-card:    #ffffff;
  --text:       #0d0d0d;
  --text-muted: #5a5a6a;
  --text-light: #9a9aaa;
  --cyan:       #6BC8D4;
  --cyan-light: #9bdce5;
  --cyan-dark:  #4ab0bc;
  --cyan-bg:    rgba(107,200,212,0.08);
  --cyan-bg2:   rgba(107,200,212,0.14);
  --border:     #e5e7eb;
  --border-cyan: rgba(107,200,212,0.3);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.12);
  --radius:     10px;
  --transition: 0.3s ease;

  /* Footer stays dark */
  --footer-bg:   #0d0d0d;
  --footer-text: #aaaaaa;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); }
h3 { font-size: 1.2rem; font-weight: 600; color: var(--text); }
p  { color: var(--text-muted); }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p  { max-width: 560px; margin: 0 auto; }
.cyan { color: var(--cyan-dark); }
.tag {
  display: inline-block;
  background: var(--cyan-bg2);
  color: var(--cyan-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--cyan);
  color: #fff;
}
.btn-primary:hover {
  background: var(--cyan-dark);
  box-shadow: 0 8px 28px rgba(107,200,212,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 90px;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
}
.nav-logo img {
  height: 90px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 0.85rem; }
.nav-drawer-brand { display: none; }

/* Drawer-only nav items (Services, FAQs). The desktop navbar and the mobile
   drawer share one <ul>, so these are hidden here and revealed inside the
   700px breakpoint — same approach as .nav-drawer-brand above. Keeps the top
   bar at five links instead of seven. */
.nav-drawer-only { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Footer (stays dark) ── */
footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 24px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 110px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; color: var(--footer-text); max-width: 280px; }

/* ── Social buttons ──────────────────────────────────────────────────────
   Brand marks are inline SVG rather than icon-font glyphs: Lucide dropped
   its brand icons and has no TikTok mark, and an unpinned icon CDN already
   cost us every icon on the site once. `fill: currentColor` lets one set of
   paths serve both the dark footer and the light contact card.
   ---------------------------------------------------------------------- */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--footer-text);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}
.social-links a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
}
.social-links a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}
/* Centred inside the compact footer, which is a centred stacked block. */
.qb-footer-inner .social-links { justify-content: center; margin-bottom: 22px; }

/* Light-background variant — contact page card and the compact footer. */
.social-links.social-light a {
  border-color: var(--border);
  color: var(--text-muted);
}
.social-links.social-light a:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #fff;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--footer-text);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cyan); }
/* Centred stacked block — company details, copyright, legal links */
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.fb-company {
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin: 0 0 5px;
}
.fb-tagline {
  font-size: 0.82rem;
  color: var(--footer-text);
  margin: 0 0 4px;
}
.fb-reg {
  font-size: 0.75rem;
  color: #5f5f5f;
  margin: 0;
  line-height: 1.6;
}
.fb-copy {
  font-size: 0.75rem;
  color: #5f5f5f;
  margin: 18px 0 14px;
  line-height: 1.6;
}
.fb-links {
  font-size: 0.79rem;
  color: #5f5f5f;
  margin: 0;
}
.fb-links a { color: var(--cyan); font-weight: 500; }
.fb-links a:hover { color: #ffffff; }
.fb-sep { margin: 0 9px; color: #3a3a3a; }

@media (max-width: 560px) {
  .fb-links .fb-sep { margin: 0 6px; }
  .fb-links { line-height: 2; }
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-bg2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 24px 72px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ── Form Styles ── */
.form-group { margin-bottom: 20px; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
input, select, textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(107,200,212,0.15);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234ab0bc' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
  background-color: var(--bg);
}
select option { background: #fff; color: var(--text); }
textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: #b0b0b8; }

/* ── Checkbox / Radio custom ── */
.check-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.check-item:hover {
  border-color: var(--cyan);
  background: var(--cyan-bg);
  color: var(--text);
}
.check-item input[type="checkbox"] {
  width: 20px;
  min-width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--bg);
  transition: background 0.15s, border-color 0.15s;
  position: relative;
  flex-shrink: 0;
}
.check-item input[type="checkbox"]:checked {
  background: var(--cyan);
  border-color: var(--cyan);
}
.check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.check-item.checked {
  border-color: var(--cyan);
  background: var(--cyan-bg);
  color: var(--text);
}

/* ── File Upload ── */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--cyan);
  background: var(--cyan-bg);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  box-shadow: none;
}
.file-upload-area input[type="file"]:focus { box-shadow: none; }
.upload-icon { font-size: 2rem; margin-bottom: 10px; }
.upload-text  { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.upload-sub   { font-size: 0.78rem; color: var(--text-light); }
.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.upload-preview-item {
  font-size: 0.75rem;
  background: var(--cyan-bg2);
  color: var(--cyan-dark);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border-cyan);
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ── Section label ── */
.form-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Footer Trust Strip ── */
/* ══════════════════════════════════════════════════════════════════
   SERVICE PAGES  (end-of-tenancy-cleaning-london.html etc.)
   Shared by all six so the styling lives in one place.
   ══════════════════════════════════════════════════════════════════ */
.svc-wrap { max-width: 860px; margin: 0 auto; padding: 56px 24px 40px; }

.svc-section { margin-bottom: 56px; scroll-margin-top: 100px; }
.svc-section > h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc-section > .svc-lead {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 680px;
}

/* Checklist of what's included */
.svc-includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 28px;
}
.svc-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.89rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 5px 0;
}
.svc-includes li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Who it's for */
.svc-for { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.svc-for-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.svc-for-card strong { display: block; font-size: 0.92rem; color: var(--text); margin-bottom: 5px; }
.svc-for-card span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Pricing */
.svc-price-box {
  background: var(--cyan-bg2);
  border: 1.5px solid var(--border-cyan);
  border-radius: 14px;
  padding: 28px 30px;
}
.svc-price-from {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan-dark); margin-bottom: 6px;
}
.svc-price-figure {
  font-size: 2.1rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 10px;
}
.svc-price-note { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.svc-price-note a { color: var(--cyan-dark); font-weight: 600; }

/* Areas */
.svc-areas { display: flex; flex-wrap: wrap; gap: 9px; }
.svc-area {
  font-size: 0.83rem;
  padding: 7px 15px;
  border-radius: 50px;
  background: var(--cyan-bg);
  color: var(--cyan-dark);
  border: 1px solid rgba(107,200,212,0.25);
  font-weight: 500;
}

/* Before / after gallery */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.ba-item { margin: 0; }
.ba-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
  background: var(--bg-soft);
}
.ba-item figcaption {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 7px;
  text-align: center;
}
/* Graceful empty state — set by the img onerror handler when the file
   isn't there yet. Drop a correctly-named photo in and it just appears. */
.ba-item.empty img { display: none; }
.ba-item.empty .ba-slot { display: flex; }
.ba-slot {
  display: none;
  aspect-ratio: 4 / 3;
  border: 1.5px dashed var(--border-cyan);
  border-radius: 12px;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  text-align: center;
}
.ba-slot svg { width: 22px; height: 22px; stroke: var(--cyan-dark); fill: none; stroke-width: 1.5; }
.ba-slot code {
  font-size: 0.66rem;
  color: var(--text-light);
  word-break: break-all;
  line-height: 1.4;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Closing CTA */
.svc-cta {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 34px;
  text-align: center;
  margin-bottom: 90px;
}
.svc-cta h2 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-cta > p {
  font-size: 0.92rem; color: var(--text-muted);
  max-width: 520px; margin: 0 auto 26px; line-height: 1.7;
}
.svc-cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 660px; margin: 0 auto; }
.svc-cta-option {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
}
.svc-cta-option p {
  font-size: 0.83rem; color: var(--text-muted);
  line-height: 1.6; margin: 0 0 14px;
}
.svc-cta-option .btn { width: 100%; }
.svc-cta-single .btn { min-width: 220px; }

@media (max-width: 700px) {
  .svc-wrap { padding: 40px 20px 32px; }
  .svc-section { margin-bottom: 44px; }
  .svc-section > h2 { font-size: 1.18rem; }
  .svc-price-figure { font-size: 1.8rem; }
  .svc-cta { padding: 30px 20px; margin-bottom: 64px; }
  .svc-cta-split { grid-template-columns: 1fr; gap: 14px; }
}

/* ══════════════════════════════════════════════════════════════════
   COMPACT LIGHT FOOTER — booking form + confirmation page
   Those two are standalone pages with no nav, so they use a lighter
   footer than the main dark one. Shared here, not duplicated per page.
   ══════════════════════════════════════════════════════════════════ */
.qb-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 36px 24px 40px;
}
.qb-footer-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.qb-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 18px;
}
.qb-footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.qb-footer-links a:hover { color: var(--cyan-dark); }
.qb-footer-contact {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 18px;
}
.qb-footer-contact a {
  color: var(--cyan-dark);
  font-weight: 600;
  text-decoration: none;
}
.qb-footer-contact a:hover { text-decoration: underline; }
.qb-dot { margin: 0 8px; color: var(--border); }

.qb-footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.qb-fb-company {
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--text); margin: 0 0 5px;
}
.qb-fb-tagline { font-size: 0.79rem; color: var(--text-muted); margin: 0 0 4px; }
.qb-fb-reg     { font-size: 0.72rem; color: var(--text-light); margin: 0; line-height: 1.6; }
.qb-fb-copy    { font-size: 0.72rem; color: var(--text-light); margin: 16px 0 12px; line-height: 1.6; }
.qb-fb-links   { font-size: 0.75rem; margin: 0; }
.qb-fb-links a { color: var(--cyan-dark); font-weight: 500; text-decoration: none; }
.qb-fb-links a:hover { text-decoration: underline; }
.qb-fb-sep     { margin: 0 9px; color: var(--border); }

@media (max-width: 680px) {
  .qb-footer { padding: 28px 20px 32px; }
  .qb-footer-links { gap: 8px 16px; }
  .qb-footer-links a { font-size: 0.8rem; }
  .qb-footer-contact { font-size: 0.8rem; }
  .qb-footer-contact .qb-dot { display: block; height: 0; overflow: hidden; margin: 4px 0; }
  .qb-fb-links { line-height: 2; }
  .qb-fb-sep { margin: 0 6px; }
}

/* ── Nav "Book & Pay" link — emphasised but subordinate to the quote CTA ── */
.nav-book {
  font-weight: 700 !important;
  color: var(--cyan-dark) !important;
}
.nav-book:hover { color: var(--cyan) !important; }

/* ── Instant booking shortcut band ── */
.instant-book-band {
  background: var(--cyan-bg2);
  border-top: 1px solid var(--border-cyan);
  border-bottom: 1px solid var(--border-cyan);
  padding: 16px 0;
}
.instant-book-band p {
  margin: 0 auto;
  max-width: 780px;
  text-align: center;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.instant-book-band a {
  color: var(--cyan-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.instant-book-band a:hover { color: var(--cyan); }
.instant-book-band svg {
  width: 16px; height: 16px;
  stroke: var(--cyan-dark); fill: none; stroke-width: 2;
  vertical-align: -3px;
  margin-right: 8px;
}
@media (max-width: 600px) {
  .instant-book-band p { font-size: 0.86rem; }
}

/* 4-up grid, not flex-wrap — flex centres orphan items on the last row,
   which misaligns them against the columns above. */
.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 22px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.footer-trust-item:first-child {
  border-left: none;
  padding-left: 0;
}
.footer-trust-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(107,200,212,0.12);
  border: 1px solid rgba(107,200,212,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.footer-trust-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.footer-trust-text span {
  font-size: 0.76rem;
  color: #888;
}

/* Tablet: 2 x 2 grid. Reset the divider on the first item of each row. */
@media (max-width: 900px) {
  .footer-trust {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }
  .footer-trust-item:nth-child(2n+1) {
    border-left: none;
    padding-left: 0;
  }
}

/* Mobile: single left-aligned column so every icon lines up vertically. */
@media (max-width: 640px) {
  .footer-trust {
    grid-template-columns: 1fr;
    row-gap: 20px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
    padding: 24px 0;
  }
  .footer-trust-item {
    border-left: none;
    padding: 0;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile sidebar drawer ── */
.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-drawer-overlay.open {
  display: block;
  opacity: 1;
}

@media (max-width: 700px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 80vw;
    max-width: 320px;
    background: var(--bg);
    padding: 48px 36px 48px;
    gap: 0;
    box-shadow: 6px 0 32px rgba(0,0,0,0.15);
    z-index: 99;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-drawer-brand {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.06em;
    padding-bottom: 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
    list-style: none;
  }
  /* Revealed only inside the drawer — see .nav-drawer-only above. */
  .nav-drawer-only { display: block; }
  .nav-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 18px 0;
    color: var(--text);
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: var(--cyan-dark); padding-left: 8px; }
  .nav-links li:last-child { margin-top: auto; }
  .nav-links .nav-cta {
    text-align: center;
    padding: 15px 24px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .check-group { grid-template-columns: 1fr; }
}
