/* =========================
   Dorset Smartphone Repairs – Master Styles (Phase 3 Clean)
   Preserves V2 Stable behaviour; removes duplicates/overrides
   Date: 2025-11-07
   ========================= */

/* ---- Theme ---- */
:root{
  /* Authoritative DSR brand palette */
  --grad-start:#0073B6;   /* Deep Logo Blue */
  --grad-end:#3DA2E0;     /* Soft Bright Blue */
  --accent:#7EE1A3;       /* Real Teal – CTA only */
  --brand-text:#E8EEF6;   /* Off-white */
  --muted:#A8B3C7;        /* Grey-blue */
  
  /* Layout + component variables */
  --maxw:1180px;
  --padX:clamp(12px,2vw,28px);

  --r-8:8px; --r-12:12px; --r-14:14px; --r-18:18px;
  --sh-1:0 6px 18px rgba(0,0,0,.18);
  --sh-2:0 10px 28px rgba(0,0,0,.22);

  --glass-bg:hsla(198,54%,16%,0.35);
  --glass-stroke:hsla(0,0%,100%,0.18);
  --glass-highlight:hsla(0,0%,100%,0.65);
}


/* ---- Reset / base ---- */
*{ box-sizing:border-box }
html,body{ margin:0; padding:0 }
html{ scroll-behavior:smooth }

/* Seamless site-wide brand gradient (no section joins) */
html{
  min-height:100%;
  background: linear-gradient(180deg, #0073B6 0%, #2B8BCF 40%, #3DA2E0 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

body{
  background:transparent;
  color:var(--brand-text);
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Segoe UI Emoji,Apple Color Emoji,sans-serif;
}
/* Global containers (bounded content within full-bleed gradient) */
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--padX);
}

.dsr-container{
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--padX);
  display: flex;
  align-items: center;
  gap: 16px;
}

img{ max-width:100%; height:auto; display:block }
svg{ display:block; height:auto }
a{ color:inherit; text-decoration:none }


/* --- HEADER & TOPBAR ALIGNMENT --- */

/* Top bar: business name left, contact icons right */
.topbar .dsr-container{
  display: flex;
  align-items: center;
  justify-content: space-between;   /* logo/text left, contact right */
  flex-wrap: wrap;
  gap: 18px;
}

/* Left and right clusters */
.tb-left{ display:flex; align-items:center; gap:8px; }
.tb-right{ display:flex; align-items:center; gap:18px; }

/* Header main: logo left, socials right */
.dsr-header .dsr-container{
  display: flex;
  align-items: center;
  justify-content: space-between;   /* logo left, socials right */
  flex-wrap: wrap;
  gap: 16px;
}

/* Keep icon rows neat */
.social-row{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon sizing */
.dsr-header .logo{ height: 72px; }
.social-row .ico-lg{ width: 28px; height: 28px; }

/* Buttons */
.btn{
  display:inline-block; border:0; border-radius:var(--r-12);
  padding:12px 18px; font-weight:700;
  background:var(--accent); color:var(--accent-ink);
  box-shadow:var(--sh-1);
  cursor:pointer; transition:.3s ease;
}
.btn:hover{ transform:translateY(-1px) }
.btn:focus-visible{ outline:2px solid #fff3; outline-offset:2px }

/* === Header (no overlays, fully blended) === */
.site-header{
  position:relative; z-index:10; padding:28px 0;
  background:transparent; border:0; box-shadow:none;
  -webkit-backdrop-filter:none; backdrop-filter:none; overflow:hidden;
}
/* removed the old ::before gradient entirely */

.site-header-inner{
  display:grid; grid-template-columns:60px 1fr 60px; align-items:center; gap:40px;
  position:relative; z-index:1; max-width:900px; margin:0 auto;
}
.site-logo img{ height:180px; max-width:100%; margin:0 auto; display:block }
.social img{ width:42px; height:42px; transition:.3s }
.social img:hover{ filter:drop-shadow(0 0 8px rgba(31,191,139,.7)); transform:scale(1.08) }

@media (max-width:720px){
  .site-header{ padding:16px 0 }
  .site-header-inner{ grid-template-columns:44px 1fr 44px; gap:24px; padding:0 12px }
  .site-logo img{ height:80px; max-height:20vh }
  .social img{ width:32px; height:32px }
}

/* ===== HERO SECTION ===== */
.hero {
  padding: clamp(32px, 7vw, 72px) 0;
}
.hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow block: permanently left aligned */
.hero-eyebrow-block {
  text-align: left !important;
  max-width: 800px;
  margin: 0 auto 2.5rem 0; /* aligns with logo edge instead of full width */
}
.hero-eyebrow {
  color: #e8f2ff;
  font-size: clamp(15px, 1.8vw, 16px);
  margin: 0;
  line-height: 1.5;
}
.hero-eyebrow-sub {
  color: #d0deee;
  font-size: clamp(14px, 1.7vw, 15px);
  line-height: 1.6;
  margin: 4px 0 0 0;
  max-width: 760px;
}
.hero-eyebrow-link a {
  color: #aee0ff;
  text-decoration: underline;
  font-size: clamp(14px, 1.8vw, 15px);
}
.hero-eyebrow-link a:hover {
  color: #d7f0ff;
}

/* Centered hero headline */
.hero-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.15;
}

.hero-sub {
  color: #e6eef9;
  opacity: 0.9;
  margin-bottom: 16px;
}
/* --- Fix hero buttons breaking vertically --- */
.hero-eyebrow-actions .liquid-btn {
  display: inline-flex !important;
  flex-direction: row !important;
  white-space: nowrap !important;
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  height: 42px;
  line-height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #E8EEF6;
  font-weight: 600;
  letter-spacing: 0.25px;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-eyebrow-actions .liquid-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.25);
}
/* Smaller hero eyebrow buttons */
.hero-eyebrow-actions .liquid-btn {
  height: 36px;           /* was 42px */
  line-height: 36px;
  padding: 0 6px;        /* was ~22px */
  font-size: 14px;        /* was ~15–16px */
  border-radius: 10px;    /* slightly tighter */
}

/* Even smaller on narrow screens */
@media (max-width: 640px) {
  .hero-eyebrow-actions {
    gap: 10px;
  }
  .hero-eyebrow-actions .liquid-btn {
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 9px;
  }
}


/* Remove any pseudo glow or overlay effects inherited from other liquid buttons */
.hero-eyebrow-actions .liquid-btn::before,
.hero-eyebrow-actions .liquid-btn::after {
  display: none !important;
}


/* CTA row */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* On mobile, keep eyebrow left but reduce side padding */
@media (max-width: 720px) {
  .hero-eyebrow-block {
    text-align: left !important;
    padding: 0 16px;
  }
}

/* ---- Wizard ---- */
.wizard{ padding:24px 0 24px }
.wizard h3{ margin:0 0 12px; font-size:20px }
/* Optional: tighten headings so the grid sits closer */
#repair-wizard h2 {
  margin-top: 8px;          /* reduces extra blue above the heading */
  margin-bottom: 12px;
}
#step3 p.center, #step4 p.center { margin-bottom: 10px; }

.wiz-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:12px; margin:12px 0 18px }

.wiz-card img.wiz-icon{ width:28px; height:28px; object-fit:contain }
.center{ text-align:center }

/* Progressive steps (baseline) */
#step2,#step3{ display:none }

/* ---- Contact / misc ---- */
#repair-wizard{ display:none }
.contact-actions{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap }
.back-btn{
  background:transparent; color:#a8b3c7; border:1px solid #2a3d55;
  padding:6px 16px; margin-top:20px; border-radius:var(--r-8); cursor:pointer; transition:.2s;
}
.back-btn:hover{ background:#20344f; color:#fff }
/* Make the wizard area wider on desktop */
#repair-wizard.container { max-width: 100%; padding-left: 24px; padding-right: 24px; }


/* Denser, responsive grid for models/brands/issues */
.wiz-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Scale up columns on larger breakpoints */
@media (min-width: 1200px) {
  .wiz-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1440px) {
  .wiz-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}

/* Compact the cards a touch so more fit per row */
.wiz-card {
  padding: 10px 14px;           /* was chunkier */
  font-size: 0.98rem;
  line-height: 1.2;
  white-space: normal;          /* allow wrapping for long names */
}

.wiz-card-selected {
  outline: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.22);
}

/* Optional: tighten headings so the grid sits closer */
#repair-wizard h2 { margin-bottom: 12px; }
#step3 p.center, #step4 p.center { margin-bottom: 10px; }

/* === Reviews: horizontal cards (v4) – fixed layout === */

.reviews-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.review-card {
  flex: 0 0 320px;
  background: #fff;
  color: #1b2b3a;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.review-head { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.rev-avatar {
  width:40px; height:40px; border-radius:50%; overflow:hidden;
  display:grid; place-items:center; font-weight:700; color:#fff; background:#5a7da1; flex-shrink:0;
}
.rev-avatar img{ width:100%; height:100%; object-fit:cover; display:block }
.rev-name{ font-weight:700; line-height:1.2 }
.rev-sub{ font-size:12px; color:#6a788a }
.rev-g{ width:18px; height:18px; opacity:.9; flex-shrink:0 }
.rev-g svg{ width:100%; height:100%; display:block }
.rev-stars{
  color:#fbbc04; letter-spacing:1px; font-size:18px; line-height:1;
  margin:6px 0 8px;
}
.rev-verified{ display:inline-block; width:14px; height:14px; vertical-align:-2px; margin-left:6px }
.rev-text{
  color:#222; line-height:1.5;
  display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden;
}
.rev-more{ margin-top:auto; font-size:13px; color:#1a73e8; cursor:pointer; user-select:none }
@media (max-width:720px){ .review-card{ flex-basis:260px } }
@media (prefers-reduced-motion:reduce){ .reviews-track{ transform:none !important } }


/* ======================================
   Map Buttons – iOS Liquid Glass Look
   ====================================== */
#location .loc-grid{
  display:grid; grid-template-columns:repeat(2,minmax(280px,1fr));
  gap:30px; max-width:960px; margin:0 auto; align-items:start;
}
@media (max-width:720px){ #location .loc-grid{ grid-template-columns:1fr } }
#location .map-col,#location .acc-col{ display:flex; flex-direction:column; gap:14px; align-items:center }
#location .loc-title{ color:#E4EBF7; font-size:1.5rem; margin:0; text-align:center }
#location .loc-head{
  min-height:60px; width:100%; max-width:520px; display:flex; flex-direction:column;
  align-items:center; justify-content:flex-end; margin:0 0 6px; text-align:center;
}
#location .square{
  aspect-ratio:1/1; width:100%; max-width:520px;
  border:1px solid #2a3f5c; border-radius:12px; overflow:hidden; background:#fff;
}

/* Single, final hover style (removed duplicates) */
#location .btn-row{ display:flex; justify-content:center; gap:16px; margin-top:12px }

/* Keep SVGs normal coloured (once) */
#location .icon-btn svg path,
#location .icon-btn svg circle,
#location .icon-btn svg rect,
#location .icon-btn svg polygon{ fill:initial !important }

/* ---- Find My Device (baseline behaviour kept) ---- */
.find-device{ text-align:center; margin:3rem auto; max-width:700px }
.find-device input[type="checkbox"]{ display:none }
.find-device label[for="toggle-devices"]{
  background:#0d133a; color:#fff; padding:.8rem 1.4rem; border-radius:8px;
  font-weight:600; cursor:pointer; transition:.3s;
}
.find-device label[for="toggle-devices"]:hover{ background:#3c8a6d }
.device-options{ display:none; margin-top:1.5rem; gap:1rem; justify-content:center }
.find-device input[type="checkbox"]:checked ~ .device-options{ display:flex }
.device-options button{
  background:#fff; border:2px solid #0d133a; color:#0d133a;
  padding:.8rem 1.3rem; border-radius:8px; font-weight:600; cursor:pointer; transition:.3s;
}
.device-options button:hover{ background:#0d133a; color:#fff }

/* ---- FINAL OVERRIDE: Map icons = transparent with card-like outline ---- */
#location .btn-row .icon-btn,
#location .btn-row .icon-btn:hover,
#location .btn-row .icon-btn:focus,
#location .btn-row .icon-btn:active {
  /* kill any fills/tints from earlier rules */
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;

  /* match “Coming soon” edge + float */
  border: 1px solid #2a3f5c !important;
  border-radius: 12px !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),          /* soft drop */
    inset 0 1px 0 rgba(255,255,255,0.08);  /* light rim */
  transform: translateY(0);
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s;
}

/* gentle lift only (no color change) */
#location .btn-row .icon-btn:hover,
#location .btn-row .icon-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10);
  outline: none;
}

/* if the SVG has a blue rounded square inside, make it transparent */
#location .btn-row .icon-btn svg rect { fill: transparent !important; }

/* keep the real icon colors */
#location .btn-row .icon-btn svg path,
#location .btn-row .icon-btn svg circle,
#location .btn-row .icon-btn svg polygon {
  fill: initial !important;
  opacity: 1 !important;
}
/* ================================
   Final unify:
   - Keep ONLY the main CTA teal
   - All other wizard buttons = floating transparent cards
   - Kill any legacy blue fills
   ================================ */

/* 1) MAIN CTA — teal (hero button + section toggle label) */
[data-open-find].btn,
.find-device label[for="toggle-devices"]{
  background: var(--accent) !important;       /* teal fill */
  color: var(--accent-ink) !important;
  border: 0 !important;
  box-shadow: var(--sh-1) !important;
  transform: none !important;
}
[data-open-find].btn:hover,
.find-device label[for="toggle-devices"]:hover{
  transform: translateY(-2px) !important;
  box-shadow: var(--sh-2) !important;
}

/* 2) CLICK-THROUGH CHOICES (Apple / Android) — transparent floating cards */
.device-options a,
.device-options button,
.wiz-card{
  /* remove any previous solid colors */
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  /* floating card like 'Coming soon' */
  border: 1px solid #2a3f5c !important;
  border-radius: 12px !important;
  color: var(--brand-text) !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform .18s cubic-bezier(.2,.7,.2,1),
              box-shadow .18s cubic-bezier(.2,.7,.2,1),
              border-color .18s;
}

/* hover lift only (no color fill) */
.device-options a:hover,
.device-options button:hover,
.wiz-card:hover,
.wiz-card:focus-visible{
  transform: translateY(-3px);
  border-color: #3d5777 !important;
  box-shadow:
    0 16px 36px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
  outline: none;
}

/* === LOCKED BASELINE — Transparent Map Buttons (never lose again) === */
#location .icon-btn,
#location .icon-btn:hover,
#location .icon-btn:focus,
#location .icon-btn:active {
  background: rgba(255,255,255,0.04) !important;   /* faint film only */
  border: 1px solid #2a3f5c !important;            /* subtle rim */
  border-radius: 12px !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* hover lift — consistent with "Coming soon" */
#location .icon-btn:hover,
#location .icon-btn:focus-visible {
  transform: translateY(-3px);
  border-color: #3d5777 !important;
  box-shadow:
    0 16px 36px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
  outline: none;
}

/* force any SVG backgrounds fully transparent */
#location .icon-btn svg rect { fill: transparent !important; }

/* keep icon colours untouched */
#location .icon-btn svg path,
#location .icon-btn svg circle,
#location .icon-btn svg polygon {
  fill: initial !important;
  opacity: 1 !important;
}
/* === Wizard choices: centered tiles (not full-width bars) === */
.wizard .wiz-grid{
  /* center a row of tiles that size themselves */
  grid-template-columns: repeat(auto-fit, minmax(220px, 360px)) !important;
  justify-content: center !important;
  align-items: start;
  gap: 2rem !important;
}

/* === Wizard cards: transparent floating style (kill blue gradients) === */
.wizard .wiz-grid .wiz-card,
.wizard .wiz-grid .wiz-card:hover,
.wizard .wiz-grid .wiz-card:focus,
.wizard .wiz-grid .wiz-card:active{
  /* nuke any legacy fills/gradients */
  background: rgba(255,255,255,0.04) !important;  /* same as “Coming soon” */
  background-image: none !important;
  background-color: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;

  border: 1px solid #2a3f5c !important;
  border-radius: 14px !important;
  color: var(--brand-text) !important;

  /* floating shadow like the placeholder card */
  box-shadow:
    0 10px 24px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08) !important;

  /* size feels like your device-choice buttons */
  min-width: 260px;
  min-height: 64px;
  padding: 16px 24px !important;

  /* keep them from stretching to full width */
  width: auto !important;
  max-width: 360px;
  justify-self: center;

  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  appearance: none; -webkit-appearance: none;
}

/* lift on hover/focus (no color change) */
.wizard .wiz-grid .wiz-card:hover,
.wizard .wiz-grid .wiz-card:focus-visible{
  transform: translateY(-3px);
  border-color: #3d5777 !important;
  box-shadow:
    0 16px 36px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10) !important;
  outline: none;
}

/* active selection — subtle teal edge, still transparent */
.wizard .wiz-grid .wiz-card.active{
  border-color: var(--accent) !important;
  box-shadow:
    0 0 8px rgba(31,191,139,.5),
    0 10px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* if any wizard icons have a background rect, make it transparent */
.wizard .wiz-grid .wiz-card svg rect{ fill: transparent !important; }

/* Brand logos inside wizard cards */
.wiz-brand-logo {
  display: block;
  max-width: 80px;
  max-height: 24px;
  width: auto;
  height: auto;
  margin-right: 10px;
  opacity: 0.9;
  object-fit: contain;
}

/* Brand label text */
.wiz-brand-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

/* Slight emphasis on hover */
.wiz-card:hover .wiz-brand-logo {
  opacity: 1;
}

/* Smooth fade + slide for wizard steps (slow + obvious) */
#repair-wizard > div[id^="step"] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 650ms cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* ===== Wizard final review panel ===== */
.wizard-summary {
  display: flex;
  justify-content: center;
  margin: 0 0 18px;
}

.wizard-summary-card {
  max-width: 520px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;

  background: none;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.16),
    0 3px 10px rgba(0,0,0,0.22);

  color: var(--brand-text);
  font-size: 0.92rem;
}

.wizard-summary-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.wizard-summary-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wizard-summary-card li + li {
  margin-top: 4px;
}

.wizard-summary-label {
  opacity: 0.8;
  margin-right: 4px;
}

.wizard-summary-value {
  font-weight: 600;
}

/* ===== Wizard Step 5: Contact buttons (teal-filled, rectangular glass) ===== */
.contact-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 24px;
  border-radius: 12px;                    /* rectangular corners */

  background: var(--accent) !important;   /* keep the teal fill */
  color: var(--accent-ink) !important;    /* dark teal text (same as other CTAs) */

  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 2px 6px rgba(0,0,0,0.18);

  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.contact-actions .btn:hover {
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.25),
    0 4px 10px rgba(0,0,0,0.22);
  transform: translateY(-1px);
}

.contact-actions .btn:active {
  transform: translateY(0);
}


/* ===== Wizard breadcrumb (with green lines) ===== */
.wizard-breadcrumb {
  position: relative;
  margin: 10px 0 26px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Exact hero-style lines */
.wizard-breadcrumb::before,
.wizard-breadcrumb::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
  width: 280px;            /* MATCH hero length (adjustable) */
  height: 2px;             /* exact thickness */
  border-radius: 999px;

  background: #7EE1A3;     /* exact teal, no gradient */
}

.wizard-breadcrumb::before {
  top: 0;
}

.wizard-breadcrumb::after {
  bottom: 0;
}


.wizard-breadcrumb ol {
  list-style: none;
  margin: 6px 0;
  padding: 4px 10px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Base crumb style */
.wiz-crumb {
  position: relative;
  padding: 0 3px;
  opacity: 0.45;
  white-space: nowrap;
}

/* arrows between crumbs */
.wiz-crumb::after {
  content: "›";
  margin: 0 6px;
  opacity: 0.4;
}

.wiz-crumb:last-child::after {
  content: "";
  margin: 0;
}

/* State styles */
.wiz-crumb-active {
  opacity: 1;
  color: var(--brand-text);
  font-weight: 600;
  font-size: 1rem;   /* slightly bigger for current */
}

.wiz-crumb-complete {
  opacity: 0.75;
}

.wiz-crumb-empty {
  opacity: 0.30;
}


/* Make Smartphone/Tablet icons same visual height */
.wiz-device-icon {
  height: 40px;       /* force equal height */
  width: auto;        /* maintain aspect ratio */
  display: block;
  margin-right: 14px; /* cleaner spacing from text */
  object-fit: contain;
}

/* ===== Title + brand badge inline row ===== */
.wizard-title-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.wizard-title {
  color: #a8b3c7;
  font-size: 20px;
  margin: 0;
}

/* ===== Stronger rectangular badge ===== */
.wizard-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 12px;         /* <-- rectangular, not pill */

  background: rgba(255,255,255,0.10);       /* more visible */
  border: 1px solid rgba(255,255,255,0.32); /* clearer border */

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.25),
    0 4px 14px rgba(0,0,0,0.28);

  color: var(--brand-text);
}

/* ===== Larger SVG Logos ===== */
.wizard-brand-icon {
  width: 32px;     /* was 20–22px before */
  height: 32px;
  object-fit: contain;
  opacity: 1;
}

.wizard-brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
}


/* ===== Wizard brand badge (shows chosen brand on later steps) ===== */
.wizard-brand-badge {
  display: none;
  margin: 4px 0 10px;
  text-align: center;
}

.wizard-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.16),
    0 3px 8px rgba(0,0,0,0.22);
  font-size: 0.9rem;
  color: var(--brand-text);
}

.wizard-brand-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

.wizard-brand-name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === TEAL CTA — single-stage smooth pop === */
.btn-cta,
[data-open-find].btn,
.find-device label[for="toggle-devices"],
.hero .btn-cta,
.hero [data-open-find].btn {
  position: relative !important;
  z-index: 3 !important;
  isolation: isolate !important;
  pointer-events: auto !important;

  will-change: transform, box-shadow;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    transform 220ms cubic-bezier(.25,1.25,.3,1) !important,
    box-shadow 220ms ease !important;

  box-shadow:
    0 10px 22px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.12) !important;
}

/* Pre-lift now only when NOT hovered (keeps it alive without stacking) */
.find-device:hover .btn-cta:not(:hover),
.hero:hover .btn-cta:not(:hover) {
  transform: translate3d(0,-4px,0) scale(1.02) !important;
  box-shadow:
    0 14px 32px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.13) !important;
}

/* Actual hover – slightly stronger, but replaces pre-lift cleanly */
.btn-cta:hover,
[data-open-find].btn:hover,
.find-device label[for="toggle-devices"]:hover {
  transform: translate3d(0,-10px,0) scale(1.05) !important;
  box-shadow:
    0 20px 46px rgba(0,0,0,.38),
    0 0 10px rgba(31,191,139,.4),
    inset 0 1px 0 rgba(255,255,255,.15) !important;
}

/* Active press */
.btn-cta:active,
[data-open-find].btn:active,
.find-device label[for="toggle-devices"]:active {
  transform: translate3d(0,1px,0) scale(.985) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.26) !important;
}

/* === Maintenance (v3.5 minimalist blend) === */
body.is-maint {
  background: linear-gradient(160deg, var(--brand-grad-a), var(--brand-grad-b)) !important;
}

/* Make the card itself invisible — same layout, no visible panel */
.maint-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Match site-wide floating transparent button style */
.maint-btn {
  background: rgba(255,255,255,0.04) !important;
  background-image: none !important;
  color: var(--brand-text) !important;
  border: 1px solid #2a3f5c !important;
  border-radius: 12px !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Hover lift only (no fill colour change) */
.maint-btn:hover,
.maint-btn:focus-visible {
  transform: translateY(-3px);
  border-color: #3d5777 !important;
  box-shadow:
    0 16px 36px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
  outline: none;
}

/* Remove the teal fill on the first button */
.maint-btn.teal {
  background: rgba(255,255,255,0.04) !important;
  color: var(--brand-text) !important;
  border: 1px solid #2a3f5c !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
/* === Maintenance logo centering & scale fix === */
.logo-wrap{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  margin-bottom:1.5rem !important;
}

.logo-wrap img{
  width:182px !important;   /* 30% larger */
  height:auto !important;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
/* Slightly wider reviews without edge bleed */
#reviews-ticker {
  max-width: 1600px;
  margin: 0 auto;
}


/* --- Google Reviews (final responsive cards) --- */
.reviews-ticker{
  max-width: var(--maxw);
  margin: 48px auto;
  padding: 0 16px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.reviews-ticker .reviews-inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 22px;
}

/* Card styling */
.review-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid #2a3f5c;
  border-radius: 14px;
  box-shadow:
    0 10px 24px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Header */
.review-head{
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.rev-avatar{
  width:40px;height:40px;border-radius:50%;
  overflow:hidden;display:grid;place-items:center;
  background:#0e2236;font-weight:700;color:#9fd3ff;
}
.rev-avatar img{ width:100%;height:100%;object-fit:cover }
.rev-name{ font-weight:700 }
.rev-sub{ color:#a8b3c7;font-size:.9rem }

/* Stars */
.rev-stars{
  margin: 6px 0 8px;
  color:#fbbc04;
  letter-spacing:1px;
}
.rev-verify{ margin-left:6px;vertical-align:middle }

/* Review text */
.rev-text{
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  line-height: 1.55;
}
.review-card:not(.is-expanded) .rev-text::after{
  content:"";
  position:absolute;inset:auto 0 0 0;height:2.3rem;
  background:linear-gradient(to bottom,rgba(12,25,48,0) 0%,rgba(12,25,48,.9) 90%);
  pointer-events:none;
}
.review-card.is-expanded .rev-text{
  -webkit-line-clamp: initial;
  overflow: visible;
}
.review-card.is-expanded .rev-text::after{ display:none }

/* Read more toggle */
.rev-more{
  display:inline-block;
  margin-top:10px;
  padding:.4rem .7rem;
  border-radius:8px;
  border:1px solid #2a3f5c;
  background:rgba(255,255,255,.04);
  color:var(--brand-text);
  font-weight:600;
  cursor:pointer;
}
.review-card.no-toggle .rev-more{ display:none }
/* --- Reviews: clamp/expand behavior --- */
.review-card .rev-text{
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 6;          /* collapsed state = ~8 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card:not(.is-expanded) .rev-text::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0; height:2.5rem;
  background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.95) 90%);
  pointer-events:none;
}

/* expanded = no clamp, no fade */
.review-card.is-expanded .rev-text{ -webkit-line-clamp: initial; overflow: visible; }
.review-card.is-expanded .rev-text::after{ display:none; }

/* when text doesn't overflow, hide the toggle completely */
.review-card.no-toggle .rev-more{ display:none !important; }
.review-card.no-toggle .rev-text::after{ display:none !important; }

/* --- Marquee layout --- */
.reviews-ticker{ overflow: hidden; }
.reviews-scroller{ position:relative; overflow:hidden; }
.reviews-track{
  display:flex; align-items:stretch; gap:16px;
  will-change:transform;
  animation: reviews-marquee var(--marquee-duration, 60s) linear infinite;
}
.reviews-ticker:hover .reviews-track{ animation-play-state: paused; }

/* smooth loop */
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-end, -50%)); }
}

/* Respect user preference */
@media (prefers-reduced-motion: reduce){
  .reviews-track{ animation: none !important; transform:none !important; }
}

/* keep cards rectangular & tidy (white look already added) */
.review-card{
  width: clamp(380px, 32vw, 520px);
  border-radius:12px;
  background:#fff; color:#222;
  border:1px solid #e6e9ef;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.rev-stars{ margin:6px 0 4px; color:#fbbc04; }
.rev-more{
  display:inline-block; margin-top:.5rem; padding:.45rem .75rem;
  border-radius:8px; border:1px solid #d7dbe6; background:#fff; color:#0c1930;
  font-weight:600; cursor:pointer;
}
.rev-more:hover{ transform:translateY(-1px); }
/* Remove the fade overlay on clamped reviews */
.review-card:not(.is-expanded) .rev-text::after{
  display: none !important;
}
/* === Review icons sizing === */

/* Google "G" logo in top-right corner */
.review-card .gmark {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

/* Blue verified tick beside stars */
.review-card .rev-verify {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* Safety net for all review images */
.review-card img {
  max-width: 100%;
  height: auto;
}
.review-card .rev-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.review-card .rev-date {
  font-size: 0.85rem;
  color: #a0b3cc; /* subtle grey-blue tint */
  margin-left: 4px;
}

/* --- DSR Header overrides: force sane icon sizes --- */
.dsr-header img { height:auto; width:auto; } /* neutralise any global img {width:100%} */
.dsr-header .logo { height:62px; width:auto; }

.dsr-header .ico { width:18px; height:18px; display:block; }
.dsr-header .ico-lg,
.dsr-header .social img { width:20px; height:20px; display:block; }

/* If any legacy floating socials exist, hide them (remove later in markup) */
#floating-socials, .floating-socials, .sticky-socials { display:none !important; }
/* === Bigger brand logo (desktop) === */
.dsr-header .logo{
  height: clamp(96px, 12vw, 160px);  /* make it huge but responsive */
  width: auto;
  filter: none;                      /* drop any glow/shadow if present */
  margin-block: .2rem;
}

/* Keep header vertically centered with taller logo */
.dsr-header .wrap{
  align-items: center;
  padding: .6rem 0 1rem;             /* a touch more bottom space for tall logo */
}

/* === Socials: icons only (no glass, no border, no glow) === */
.dsr-header .social{
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  width: auto; height: auto;         /* fit to icon */
  padding: 0;
}
.dsr-header .social img,
.dsr-header .ico-lg{
  width: 26px;                       /* clean, readable size */
  height: 26px;
  display: block;
  filter: none;                      /* remove any glow */
  opacity: .95;
  transition: opacity .15s ease;
}
.dsr-header .social:hover img{ opacity: 1; }

.dsr-header .social-row{ gap: .75rem; }  /* a little more breathing room */

/* Tidy contact row next to giant logo */
.dsr-header .contact-row{
  gap: .8rem;
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
}
.dsr-header .ico{ width: 18px; height: 18px; }

/* Mobile: scale logo down so it doesn’t dominate */
@media (max-width: 700px){
  .dsr-header .logo{ height: 88px; }
  .dsr-header .social img{ width: 22px; height: 22px; }
}
@media (max-width: 520px){
  .dsr-header .logo{ height: 72px; }
  .dsr-header .contact-row{ font-size: .95rem; gap: .6rem; }
}
/* --- Fix contact + socials alignment (right side of header) --- */

/* Reset the header wrapper to a proper two-column grid */
.dsr-header .wrap {
  display: grid !important;
  grid-template-columns: auto 1fr;  /* logo column | right stack */
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  margin-inline: auto;
  gap: 1rem;
}

/* Right-hand stack anchored to the right */
.dsr-header .stack {
  justify-self: end;
  align-items: flex-end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Rows inside the stack aligned to the right */
.dsr-header .contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
}
.dsr-header .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

/* Ensure no rogue positioning from global styles */
.dsr-header, .dsr-header * {
  float: none !important;
  position: relative;
}
/* --- Unified gradient topbar (blends seamlessly into header) --- */
.topbar {
  width: 100vw;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b)); /* same gradient as header */
  color: var(--brand-text);
  font-size: 0.95rem;
  border: none;                       /* no border separation */
}

.topbar .wrap {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 1.5rem;            /* keeps phone/email comfortably in from edges */
}

.tb-left {
  font-weight: 600;
  opacity: 0.95;
}

.tb-right {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.tb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-text);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.tb-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.tb-ico {
  width: 18px;
  height: 18px;
  display: block;
}

/* Responsive stacking */
@media (max-width: 700px) {
  .topbar .wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.45rem 1rem;
  }
  .tb-right {
    justify-content: flex-start;
    gap: 0.8rem;
  }
}
/* --- Topbar alignment fix --- */
.topbar .wrap{
  display:grid !important;
  grid-template-columns: 1fr auto;   /* left text | right contact cluster */
  align-items:center;
  padding: .45rem 1.25rem;
}

.tb-right{
  display:grid;                      /* stable horizontal flow */
  grid-auto-flow: column;
  align-items:center;
  gap: 1.25rem;
}

.tb-item{
  display:grid;                      /* icon | text */
  grid-auto-flow: column;
  align-items:center;                /* <-- vertical centering */
  gap: .45rem;
  line-height: 1;                    /* kill baseline wobble */
}

.tb-icon{ 
  display:grid; place-items:center;
  width: 22px; height: 22px;         /* consistent hitbox */
  /* remove hover scale that nudged layout */
  transition: opacity .15s ease;
}
.tb-icon:hover{ opacity:1; }

.tb-ico{ 
  width: 22px; height: 22px; 
  display:block; 
  object-fit: contain; 
}

.tb-text{
  display:inline-block;
  line-height:1;                     /* keep text vertically centered with icon */
  margin:0; padding:0;
}

/* neutralize any global img rules that stretch the icons */
.topbar img{ width:auto; height:auto; }

/* ===== DSR Fix Pack — header blend + icon colors (paste at END) ===== */

/* 1) Kill any header/topbar block tint — keep them fully transparent */
.topbar,
.dsr-header{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* also nuke any sneaky pseudo-layer */
.topbar::before,
.dsr-header::before{
  content: none !important;
}

/* 2) Keep header layout (logo left, socials right) without adding a visible bar */
.dsr-header .dsr-container,
.topbar .dsr-container{
  justify-content: space-between;   /* left + right */
  align-items: center;
}

/* 3) Restore true icon colours (WhatsApp green etc.) */
.social-row .ico-lg{
  filter: none !important;          /* removes any brightness/grayscale/etc. */
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

/* If you want a subtle lift on hover only (keeps true color): */
.social-row .ico-lg:hover{
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}

/* 4) Ensure the single global page gradient is the only background */
html{
  background: linear-gradient(180deg, var(--grad-start) 0%, var(--grad-end) 100%) !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Reviews: keep horizontal swipe, hide the scrollbar */
#reviews-ticker{
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;              /* Firefox */
}
#reviews-ticker::-webkit-scrollbar{ display: none; }  /* WebKit */
/* === Footer full-width override (removes container box) === */
footer.container{
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* === Footer full-width, adaptive white text (final version) === */
footer.container,
.site-footer {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Footer: true white text, no blending */
.site-footer{
  text-align:center;
  padding:32px 0 48px;
  font-size:14px;
  color:#ffffff !important;              /* force white */
  text-shadow:0 1px 2px rgba(0,0,0,.25); /* subtle clarity */
  background:transparent !important;
  opacity:1 !important;                  /* defeat any inherited opacity */
  mix-blend-mode:normal !important;      /* no tinting on bright blue */
}

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.footer-btn{
  display:inline-block;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  color:var(--brand-text);
  padding:6px 14px;
  border-radius:8px;
  text-decoration:none;
  transition:all .25s ease;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 2px 6px rgba(0,0,0,.2);
}

.footer-btn:hover{
  background:rgba(255,255,255,0.15);
  transform:translateY(-2px);
  box-shadow:0 4px 10px rgba(0,0,0,.3);
}
/* --- Footer text alignment fix --- */
.site-footer p{
  text-align:center;
  margin:0 auto 10px;
  width:100%;
}
/* === Google Reviews — Full-width ticker (single source of truth) === */
#reviews{
  width:100%;
  margin:0;
  padding:0;
  background:transparent;
}

#reviews-ticker{
  display:flex;
  flex-wrap:nowrap;              /* one row */
  gap:24px;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  padding:12px 0;
  scrollbar-width:none;
  max-width:none;
  width:100vw;                   /* page-wide */
  margin-left:calc(50% - 50vw);  /* escape .container */
}
#reviews-ticker::-webkit-scrollbar{ display:none; }

/* Cards fixed width so the row actually scrolls horizontally */
#reviews-ticker > *{ flex:0 0 360px; max-width:360px; }  /* adjust to your card width */

/* Pause on hover (nice UX) */
#reviews-ticker:hover .reviews-inner{ animation-play-state: paused; }

/* Optional: premium edge fade (keeps ticker visible while softening edges) */
#reviews{
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}
/* =======================
   HERO – one clean setup
   ======================= */

/* One source of truth for page gutters (left/right padding) */
:root{
  /* Adjust this until the eyebrow text left edge matches your logo left edge */
  --page-gutter: 24px;

  /* Tiny visual nudge for the centered title block
     (+ = move right, − = move left). Start at 6px if it still feels left. */
  --hero-nudge: 6px;
}

/* Use the same gutters as your header's .dsr-container */
.dsr-header .dsr-container,
.hero > .dsr-container.hero-inner{
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* Eyebrow: keep left on desktop, give enough width so Okeford Fitzpaine stays on one line */
.hero .hero-eyebrow-block{
  max-width: 960px;
  margin: 0;
  text-align: left;
}

/* Center group: truly centered; use a micro-nudge to dial it in */
.hero .hero-center{
  max-width: 900px;
  margin: 28px auto 0 !important;
  text-align: center;
  position: static !important;
  transform: translateX(var(--hero-nudge));
}

/* Title + underline */
.hero .hero-title{
  display: inline-block;
  margin: 0 auto 10px;
  line-height: 1.05;
}

/* Thinner + slightly longer accent line */
.hero .hero-accent{
  display: block;
  width: 180px;          /* length */
  height: 2px;           /* << thinner */
  margin: 8px auto 0;
  border-radius: 2px;
  background: #7EE1A3;
}

/* Sub + CTA spacing */
.hero .hero-sub{
  max-width: 800px;
  margin: 12px auto 0;
  text-align: center;
}
.hero .hero-actions{ margin-top: 16px; }

/* Mobile: center eyebrow when stacked; no nudge on small screens */
@media (max-width: 900px){
  .hero .hero-eyebrow-block{ text-align: center; max-width: 100%; }
  .hero .hero-center{ transform: none; }
}
/* ===== HERO: left eyebrow + truly centered title (clean version) ===== */

/* Use the same rails as the header */
.hero .hero-inner {
  max-width: 1120px;           /* match your header .dsr-container */
  margin: 0 auto;
  padding: 0 24px;
  display: flex;               /* key: decouple blocks with flex */
  flex-direction: column;
  align-items: center;         /* center children by default */
}

/* Eyebrow stays left inside the same rails */
.hero .hero-eyebrow-block {
  align-self: stretch;         /* full width of rails */
  text-align: left;
  max-width: none;
  margin: 0;
}

/* Title/sub stack is centered independently */
.hero .hero-center {
  max-width: 900px;            /* comfy line length */
  text-align: center;
  margin-top: 28px;
}

/* Underline thinner + centered */
.hero .hero-accent {
  display: block;
  width: 280px;
  height: 2px;                 /* thinner */
  margin: 8px auto 0;
  border-radius: 2px;
  background: #7EE1A3;
}

/* Sub + CTA spacing */
.hero .hero-sub { max-width: 800px; margin: 12px auto 0; }
.hero .hero-actions { margin-top: 16px; }

/* Mobile: eyebrow also centers when stacked */
@media (max-width: 900px) {
  .hero .hero-eyebrow-block { text-align: center; }
}

/* ==== Tiles (match Map/empty card vibe) ==== */
.tile {
  max-width: var(--maxw, 1200px);
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 16px;
}
 .tile--glass {
  background: rgba(10, 50, 100, 0.15); /* faint blue hue */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}



/* ==== About two-tile layout ==== */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--maxw, 1200px);
  margin: 2rem auto;
}
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
}

.about-tile, .logo-tile {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Services grid inside its tile (flat, non-clickable) */

.section-title { margin-bottom: 1.25rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
.svc {
  padding: 1rem 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
}
.svc h3 { margin: 0.5rem 0 0.25rem; }
.svc p { margin: 0;color: var(--brand-text); font-size: 0.95rem; }
.svc-icon { font-size: 2rem; line-height: 1; opacity: 0.95; }

/* ==== Awards Placeholder Button & Map Centering ==== */

/* Ghost button (glass-outline, not teal) */
.btn {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.btn--ghost {
  color: var(--brand-text, #E8EEF6);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18) inset, 0 6px 16px rgba(0,0,0,0.18);
}

.btn--ghost:hover {
  transform: translateY(-1px);
}

/* Disabled state (clickable but inert) */
.btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: auto; /* still receives clicks */
}

/* Map tile centering and consistency */
.map-tile {
  max-width: 1000px;
  margin: 3rem auto; /* centers the tile */
  padding: 1.5rem 1.75rem;
}

.map-embed iframe,
.map-embed > * {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  display: block;
}

.accreditations {
  margin-top: 1rem;
  display: grid;
  grid-auto-flow: column;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 700px) {
  .accreditations {
    grid-auto-flow: row;
    justify-items: center;
  }
}
/* Rectangular variant for glass buttons */
.btn--rect { border-radius: 12px; }   /* match your tile radius vibe */

/* ==== About two-tile layout (Flexbox, overrides anything) ==== */
.about-wrap {
  display: flex !important;
  gap: 2rem;
  max-width: var(--maxw, 1200px);
  margin: 2rem auto;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap; /* keep side-by-side on desktop */
}

.about-wrap .tile {
  flex: 1 1 0 !important;   /* equal width columns */
  max-width: none !important;
  margin: 0 !important;
}

/* Stack only on truly small screens */
@media (max-width: 700px) {
  .about-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/* ==== Centered Map Tile ==== */
.map-tile {
  max-width: 980px;
  margin: 3rem auto;
  padding: 1.5rem 1.75rem;
  text-align: center;
}

.location-text {
  color: var(--muted, #A8B3C7);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  display: block;
}
.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* ==== Map icon button polish ==== */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.icon-btn.liquid-glass {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.1), 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}

.icon-btn.liquid-glass:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 3px 6px rgba(255,255,255,0.15), 0 6px 12px rgba(0,0,0,0.35);
}
/* Map buttons – force border/glass and show icons */
.btn-row .icon-btn.liquid-glass {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28) !important;
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.10), 0 4px 10px rgba(0,0,0,0.25) !important;
}

/* Ensure the SVGs are visible and sized */
.btn-row .icon-btn svg {
  width: 26px !important;
  height: 26px !important;
  display: block !important;
}

/* Nuke any global color overrides inside these buttons */
.btn-row .icon-btn svg,
.btn-row .icon-btn svg * {
  fill: initial !important;   /* allow inline style fills to win */
  filter: none !important;
  opacity: 1 !important;
}
/* === Map icon buttons: subtle glass, no cyan glow === */
.liquid-btn.is-square,
.liquid-btn.is-square::before,
.liquid-btn.is-square::after {
  /* kill any built-in gradients/glows from the base liquid button */
  background-image: none !important;
  content: none !important;              /* stops ::before shine if present */
  mix-blend-mode: normal !important;
}

/* the actual look */
.liquid-btn.is-square {
  width: 50px;
  height: 50px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  /* very light glass fill + bright edge (same family as your other buttons) */
  background: none !important;   /* ↓ from 0.05…0.10 */
  border: 1px solid rgba(255, 255, 255, 0.2) !important; /* #E8EEF6 */
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;

  /* soft, neutral shadows (no blue cast) */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.18) !important;

  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.liquid-btn.is-square:hover {
  background: none !important;   /* slight lift, still subtle */
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.22) !important;
}

/* keep icons crisp and colored */
.liquid-btn.is-square svg { width: 26px; height: 26px; display: block; }
.liquid-btn.is-square svg, .liquid-btn.is-square svg * { fill: initial !important; filter: none !important; opacity: 1 !important; }

/* === Hero CTA — Find my device (final rectangular teal) === */
#cta-find {
  background: var(--accent) !important; /* teal fill */
  color: var(--accent-ink) !important;
  border: none !important;
  border-radius: 10px !important;       /* same curve as other site buttons */
  padding: 5px 36px !important;         /* slimmer height, nice long width */
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.25px;
  white-space: nowrap !important;       /* keep text on one line */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.18) !important;

  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

#cta-find:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.22) !important;
}

#cta-find:active {
  transform: translateY(0);
}
#cta-find {
  min-height: 0 !important;
  height: auto !important;
  line-height: 1 !important;

  /* shape + proportion */
  padding: 8px 68px !important;   /* flatter height */
  border-radius: 8px !important;  /* slightly less curve */
  white-space: nowrap !important;

  /* teal fill */
  background: var(--accent) !important;
  color: var(--accent-ink) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;

  /* subtle glass depth */
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 2px 6px rgba(0,0,0,0.18) !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  transition: transform .2s ease, box-shadow .2s ease !important;
}

#cta-find:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.25),
    0 4px 10px rgba(0,0,0,0.22) !important;
}

/* === Canonical teal divider (use everywhere) === */
:root { --divider-color: rgba(126, 225, 156); } /* your teal, same alpha everywhere */
.section-divider {
  display: block;
  width: 280px;
  height: 2px;                 /* thinner */
  margin: 8px auto 0;
  border-radius: 2px;
  background: #7EE1A3;
  margin: 3rem auto;  /* equal top + bottom gap */
}
  
/* Kill any old auto-lines attached to headings */
h1.center::after,
h2.center::after,
.hero h2::after {
  content: none !important;
  display: none !important;
}

/* Tighten gap between hero CTA and wizard */
.hero {
  padding-bottom: 8px !important;  /* try 24–40px to taste */
}
#repair-wizard {
  margin-top: 0 !important;   /* safety: no extra gap from the wizard itself */
}
/* ==== FINAL: tighten gap between hero CTA and wizard ==== */

/* Shrink the space under the hero (under the green CTA) */
.hero {
  padding-bottom: 8px !important;   /* was effectively up to ~72px */
}

/* Make sure the wizard itself isn't adding extra gap */
#repair-wizard {
  margin-top: 0 !important;
  padding-top: 8px !important;
}

/* Pull the "Find my device" wizard heading up a bit */
#repair-wizard h2 {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

/* === PERFECT iOS LIQUID-GLASS BADGE === */
.wizard-brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 16px;
  border-radius: 14px !important;

  /* MATCHES YOUR BUTTONS — TRANSPARENT + GLASS EDGE */
  background: none !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;

  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 2px 6px rgba(0,0,0,0.18) !important;

  color: var(--brand-text);
}

.wizard-brand-chip:hover {
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.25),
    0 4px 10px rgba(0,0,0,0.22) !important;
}

/* Larger, clear logo */
.wizard-brand-icon {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain;
  opacity: 0.95;
}

/* Clean readable text */
.wizard-brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* ===== Liquid Glass Back Button (matches site rectangle shape) ===== */
.back-btn {
  background: none !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: var(--brand-text);

  padding: 6px 16px;               /* matches your rectangular buttons */
  border-radius: 12px;             /* ← exact same corner rounding */

  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.15),
    0 2px 6px rgba(0,0,0,0.18);

  transition: all 0.25s ease;
}

.back-btn:hover {
  background: none !important;
  border-color: rgba(255,255,255,0.30) !important;

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.25),
    0 4px 10px rgba(0,0,0,0.22);

  transform: translateY(-1px);
}
/* Restore true transparency for glowing wizard-option buttons */
.wizard-option {
  background: transparent !important;
  background-color: transparent !important;
}

/* Ensure inner after-element glows above background layer */
.wizard-option::after {
  z-index: -1;
}

/* =========================
   Services section – grid of tiles
   ========================= */

.services {
  padding: 64px var(--padX);
}

/* Thin teal divider above and below section */
.services-divider {
  display: block;
  width: 280px;
  height: 2px;                 /* thinner */
  margin: 8px auto 0;
  border-radius: 2px;
  background: #7EE1A3;
  margin: 2.5rem auto;  /* equal top + bottom gap */
}

.services-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin: 0 0 32px;
}

.services-header h2 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  margin-bottom: 10px;
  color: var(--brand-text);
}

/* Subheading under "Repairs & Services" */
.services-subheading {
  max-width: 720px;
  margin: 0 auto;
  color: var(--brand-text);
  font-size: 1.0rem;
  line-height: 1.6;
}

/* Responsive Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* Desktop: 3 columns */
  gap: 24px;
  align-items: stretch;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* Tile – match About / Coming 2026 glass style,
   but content centred & more "landscape" */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;         /* centre icon + text horizontally */
  text-align: center;
  padding: 20px 26px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* SVG container at top of card */
.service-svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.service-svg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card heading + text */
.service-card h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--brand-text);
}

.service-card p {
  margin: 0;
  color: var(--brand-text);
  font-size: 0.95rem;
  line-height: 1.5;
}



/* Mobile tweaks */
@media (max-width: 768px) {
  .services {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .services-divider--bottom {
    margin-bottom: 44px;
  }

  .services-header {
    margin-bottom: 26px;
  }

  .services-subheading {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 18px 18px 18px;
  }

  .service-badge {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}

/* Make all service icons appear white */
.service-svg img {
  filter: brightness(0) invert(1);
}
/* Rotate tablet icon 90 degrees */
.service-svg img[src*="tablet.svg"] {
  transform: rotate(90deg);
}

.service-svg img[src*="screen"] {
  width: 75px !important;
  height:75px !important;
  transform: scale(1.3); /* optional extra boost */
}
.service-svg img[src*="water"] {
  width: 80px !important;
  height:80px !important;
  transform: scale(1.3); /* optional extra boost */
}
.ms-launch {
  color: #ffffff !important;
}

/* =========================
   Payments Accepted section
   ========================= */

.payments {
  margin: 72px auto 64px;
  max-width: var(--maxw);
}

.payments h2 {
  margin-bottom: 8px;
}

.payments-intro {
  margin: 0 0 24px;
  color: var(--brand-text);
  font-size: 0.98rem;
}

/* Payments grid – flexbox, auto-centred rows */
.payments-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* centres last row nicely */
  gap: 16px;
}

/* Each tile’s width per breakpoint */
.payment-card {
  display: flex;
  /* mobile default: 2 per row */
  flex: 0 0 calc(50% - 16px);
}

/* Tablet: 3 per row */
@media (min-width: 601px) and (max-width: 900px) {
  .payment-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* Desktop: 4 per row (4/3 layout, last row centred) */
@media (min-width: 901px) {
  .payment-card {
    flex: 0 0 calc(25% - 16px);
  }
}



/* Liquid-glass card tiles (credit-card style) */
.payment-card {
  display: flex;
}

.payment-card-inner {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;

  /* Canonical DSR liquid-glass style */
  background: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.18) !important;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}



.payment-card img {
  display: block;
  max-height: 20px;
  max-width: 90px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.payment-card span {
  font-size: 0.9rem;
  color: var(--brand-text);
  white-space: nowrap;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .payments {
    margin-top: 56px;
    margin-bottom: 48px;
  }

  .payment-card-inner {
    padding: 12px 14px;
  }

  .payment-card img {
    max-height: 18px;
    max-width: 80px;
  }

  .payment-card span {
    font-size: 0.85rem;
  }
}
@media (max-width: 900px) {
  .payments-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .payments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* bump Visa & Google Pay a bit */
.payment-card img[alt="PayPal"] {
  max-height: 28px;
}
.payment-card img[alt="Google Pay"] {
  max-height: 26px;
}
.payment-card img[alt="Mastercard"] {
  max-height: 26px;
}

/* Cash + Bank transfer: white & slightly larger */
.payment-card img[alt="Bank transfer"],
.payment-card img[alt*="Cash"] {
  max-height: 26px;
  filter: brightness(0) invert(1);
}

/* Contact form CTA button – match footer buttons */
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;          /* similar to your footer buttons */
  border-radius: 12px;        /* less pill, more like the footer */
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--brand-text);

  /* Canonical liquid glass look */
  background: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.18) !important;

  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    border-color 0.22s ease;
}

.footer-contact-btn:hover {
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-1px);
}
/* =========================
   Contact page layout – match booking panel
   ========================= */

.contact-page {
  max-width: var(--maxw);
  margin: 72px auto 80px;
  padding: 0 var(--padX);
}

/* Let the panel itself handle centering */
.contact-form-section {
  margin-top: 40px;
}

/* Contact panel = booking panel clone */
.contact-tile {
  max-width: 980px;
  margin: 0 auto 80px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 12px 30px rgba(0,0,0,0.45);
  color: var(--brand-text);
}

/* Heading + intro match Step 3 layout */
.contact-tile h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.contact-tile .contact-note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 24px;
  text-align: center;
}

/* Form rows & labels */
.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* Error text */
.form-error {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #ffd6d6;
}

/* Privacy note */
.contact-privacy-note {
  color: var(--brand-text) !important;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.9;
  margin-top: 16px;
}
/* =========================
   Global liquid-glass inputs (shared with booking + contact)
   ========================= */

.ds-glass-input,
.ds-glass-textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06) !important; /* override white */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.20),
    0 8px 18px rgba(0,0,0,0.35);
  color: var(--brand-text);
  font-size: 0.95rem;
  box-sizing: border-box;
}

.ds-glass-input::placeholder,
.ds-glass-textarea::placeholder {
  color: var(--brand-text);
  opacity: 0.6;
}
/* Submit button – use liquid-glass style */
.contact-submit-btn {
  padding: 10px 22px;
  border-radius: 10px;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 2px 6px rgba(0,0,0,0.18) !important;
  color: var(--brand-text);
  cursor: pointer;
  font-weight: 500;
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-submit-btn:hover {
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.25),
    0 4px 10px rgba(0,0,0,0.22) !important;
}


/* ============================
   DEV TOOLS + PIN OVERLAY
   ============================ */
.dev-pin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.dev-pin-form {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 32px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.18),
        0 8px 28px rgba(0,0,0,0.45);
    text-align: center;
    color: var(--brand-text);
}

.dev-pin-form input {
    width: 180px;
    margin: 12px auto;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.12);
    color: var(--brand-text);
}

.dev-pin-error {
    color: #ffb8b8;
    margin-bottom: 10px;
}

/* Tiny activator dot */
.dev-toggle-dot {
    position: fixed;
    bottom: 18px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(0,115,182,0.8);
    box-shadow: 0 0 6px rgba(0,0,0,0.35);
    cursor: pointer;
    z-index: 99996;
    padding: 0;
}

/* Panel container (hidden by default) */
.dev-tools {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.18),
        0 8px 28px rgba(0,0,0,0.45);
    color: var(--brand-text);
    z-index: 99997;
    min-width: 230px;
    display: none; /* hidden until .open */
}

.dev-tools.open {
    display: block;
}

.dev-tools-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:6px;
    font-size:0.8rem;
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.dev-close-btn {
    border:none;
    background:none;
    color:var(--brand-text);
    cursor:pointer;
    font-size:1rem;
}

.dev-tools-sub {
    font-size:0.8rem;
    margin:4px 0 10px;
}

.dev-pin-form-inline {
    display:flex;
    gap:6px;
    align-items:center;
}

.dev-pin-form-inline input {
    flex:1;
    padding:6px 8px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.22);
    background:rgba(255,255,255,0.10);
    color:var(--brand-text);
    font-size:0.8rem;
}

.dev-pin-error {
    font-size:0.8rem;
    color:#ffb8b8;
    margin:4px 0;
}

.dev-tools-foot {
    display:block;
    margin-top:8px;
    font-size:0.7rem;
    opacity:0.8;
}

/* ===== Shared liquid-glass form fields (booking + contact) ===== */

.slot-input,
.text-input,
.textarea-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,115,182,0.32); /* DSR blue glass */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.20),
    0 8px 18px rgba(0,0,0,0.35);
  color: var(--brand-text);
  font-size: 0.95rem;
  box-sizing: border-box;
}

.textarea-input {
  min-height: 180px;
  resize: vertical;
}
/* =========================
   Contact form – force match booking glass fields
   ========================= */

.contact-tile {
  max-width: 980px;
  margin: 40px auto 80px;
  padding: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 12px 30px rgba(0,0,0,0.45);
}

/* Centre the heading like the booking panels */
.contact-tile h2 {
  text-align: center;
  margin-bottom: 24px;
}

/* Labels + spacing */
.contact-tile .form-row {
  margin-bottom: 16px;
}

.contact-tile label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* <<< THIS is the important bit – same glass look as booking >>> */
.contact-tile input[type="text"],
.contact-tile input[type="email"],
.contact-tile input[type="tel"],
.contact-tile textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06) !important;  /* kill the white */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.20),
    0 8px 18px rgba(0,0,0,0.35);
  color: var(--brand-text);
  font-size: 0.95rem;
  box-sizing: border-box;
}

.contact-tile textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-tile input::placeholder,
.contact-tile textarea::placeholder {
  color: var(--brand-text);
  opacity: 0.6;
}

/* Button – reuse glass button look */
.contact-tile .contact-submit-btn,
.contact-tile .btn-glass {
  margin-top: 10px;
  padding: 10px 22px;
  border-radius: 12px;
  background: none !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow:
      inset 0 1px 1px rgba(255,255,255,0.18),
      0 2px 6px rgba(0,0,0,0.18) !important;
  color: var(--brand-text);
  cursor: pointer;
  font-weight: 500;
}

.contact-tile .contact-submit-btn:hover,
.contact-tile .btn-glass:hover {
  box-shadow:
      inset 0 1px 2px rgba(255,255,255,0.25),
      0 4px 10px rgba(0,0,0,0.22) !important;
}

/* Privacy text centred under the form */
.contact-privacy-note {
  margin-top: 16px;
  text-align: center;
  color: var(--brand-text);
  font-size: 0.85rem;
  opacity: 0.9;
}
