/* =====================================================================
   Pure Property Cleans Inc. — styles.css
   Palette: navy / white / bright blue (from logo)
   Easy to edit: change the variables in :root below.
   Mobile-first: base styles target phones; media queries scale up.
   ===================================================================== */

:root {
  /* Brand colors */
  --navy-900: #0B1E3D;   /* darkest navy (logo background) */
  --navy-800: #102A52;
  --navy-700: #16345f;
  --blue-600: #1F6FD6;
  --blue-500: #2F7FE4;   /* bright blue accent */
  --blue-400: #4F9BF5;
  --blue-300: #7FB8FF;

  /* Neutrals */
  --ink: #0F1B2D;
  --slate: #56657d;
  --slate-light: #8493a8;
  --mist: #F4F7FC;
  --mist-2: #EAF1FB;
  --line: #E2E9F3;
  --white: #ffffff;

  /* UI */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(11, 30, 61, 0.06);
  --shadow: 0 12px 32px rgba(11, 30, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 30, 61, 0.18);
  --maxw: 1180px;

  --font-head: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;       /* guard against horizontal scroll on mobile */
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 820px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; color:#fff; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 4px; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1.15; min-height: 50px;     /* large tap target */
}
.btn-primary { background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: #fff; box-shadow: 0 8px 20px rgba(47, 127, 228, 0.32); }
.btn-primary:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47, 127, 228, 0.42); }
.btn-outline { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.14); color:#fff; transform: translateY(-2px); }
/* Outline button for light backgrounds (e.g. Reviews CTA) */
.btn-outline-dark { background: #fff; color: var(--navy-800); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline-dark:hover { color: var(--navy-900); border-color: var(--blue-400); transform: translateY(-2px); }
/* Subtle text link button (e.g. hero "View Services") */
.btn-text { background: none; border-color: transparent; color: #fff; padding: 14px 12px; box-shadow: none; opacity: .92; }
.btn-text:hover { color: var(--blue-300); opacity: 1; transform: none; }
.btn-sm { padding: 10px 18px; font-size: .95rem; min-height: 42px; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; min-height: 56px; }
.btn-block { display: flex; width: 100%; }

/* ----------------------------- Brand / circular badge ----------------------------- */
.brand { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  width: 48px; height: 48px; flex: none; border-radius: 50%; overflow: hidden;
  background: var(--navy-900); border: 2px solid rgba(127, 184, 255, .55);
  box-shadow: 0 4px 14px rgba(11,30,61,.35), inset 0 0 0 2px rgba(11,30,61,1);
  display: grid; place-items: center;
}
.logo-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-weight: 800; font-size: 1.06rem; color: #fff; letter-spacing: .01em; }
.brand-text em { font-style: normal; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-300); margin-top: 2px; }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 12px 0;
  background: linear-gradient(180deg, rgba(11,30,61,.85), rgba(11,30,61,.15));
}
.site-header.scrolled { background: var(--navy-900); box-shadow: 0 6px 24px rgba(11, 30, 61, 0.28); padding: 8px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.nav-list { display: flex; align-items: center; gap: 24px; }
.nav-list a { color: #fff; font-weight: 600; font-size: .96rem; opacity: .9; transition: opacity .2s; }
.nav-list a:hover { opacity: 1; color:#fff; }
.nav-cta a { color:#fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; color: #fff; overflow: hidden; padding: 110px 0 56px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(79,155,245,.32), transparent 60%),
    radial-gradient(900px 600px at 0% 110%, rgba(31,111,214,.28), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.hero-bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; opacity: .5; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 34px; align-items: center; }
.hero h1 { font-size: clamp(1.95rem, 7vw, 3.5rem); color: #fff; font-weight: 800; margin-bottom: .3em; }
.hero-sub { font-size: clamp(1rem, 2.6vw, 1.2rem); color: rgba(255,255,255,.82); max-width: 36em; margin-bottom: 1.1em; }

.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 1em; }
.eyebrow-light { color: var(--blue-300); }

.hero-offer { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(127,184,255,.35); padding: 8px 16px 8px 8px; border-radius: 999px; margin-bottom: 1.4em; font-size: .98rem; }
.hero-offer-badge { background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .82rem; padding: 5px 12px; border-radius: 999px; letter-spacing: .04em; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-bottom: 1.4em; }
.hero-actions .btn-primary { width: 100%; }
.hero-actions .btn-text { width: 100%; }

/* Subtle, clean 20%-off line */
.hero-offer-line { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: rgba(255,255,255,.9); font-size: .95rem; margin: 0; }
.ico-check { width: 20px; height: 20px; flex: none; fill: var(--blue-300); }

/* Hero media / carousel */
.hero-media { position: relative; }
.hero-carousel { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.hero-slides { position: relative; aspect-ratio: 3 / 2; background: var(--navy-800); }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s ease; }
.hero-slide.is-active { opacity: 1; }
/* arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(11,30,61,.5); color: #fff; font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; transition: background .2s ease, transform .15s ease;
}
.hero-arrow:hover { background: rgba(11,30,61,.82); }
.hero-arrow:active { transform: translateY(-50%) scale(.92); }
.hero-prev { left: 10px; }
.hero-next { right: 10px; }
/* dots (22px tap target, small visible indicator) */
.hero-dots { position: absolute; left: 0; right: 0; bottom: 10px; z-index: 3; display: flex; justify-content: center; gap: 6px; }
.hero-dot { width: 22px; height: 22px; padding: 0; border: 0; background: transparent; cursor: pointer; display: grid; place-items: center; }
.hero-dot::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.55); transition: width .25s ease, background .25s ease; }
.hero-dot.is-active::before { width: 20px; background: #fff; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* ----------------------------- Trust bar ----------------------------- */
.trustbar { background: var(--navy-800); }
.trustbar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 22px 20px; }
.trust-badge { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: .9rem; }
.tb-ico { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(127,184,255,.12); border: 1px solid rgba(127,184,255,.2); }
.tb-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--blue-300); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ----------------------------- Sections ----------------------------- */
.section { padding: 56px 0; }
.section-mist { background: var(--mist); }
.section-head { max-width: 720px; margin: 0 auto 36px; text-align: center; }
.section-head h2 { font-size: clamp(1.65rem, 5vw, 2.5rem); }
.section-lead { color: var(--slate); font-size: 1.05rem; margin: 0; }
.lead { color: var(--slate); font-size: 1.08rem; }

.section-cta { text-align: center; margin-top: 36px; }
.section-cta-note { color: var(--slate); margin: 1em 0 0; font-size: .95rem; }

/* ----------------------------- Services grid (6 clean cards) ----------------------------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); scroll-margin-top: 90px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--blue-300); }
.svc-media { aspect-ratio: 3 / 2; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-media img { transform: scale(1.05); }
.svc-media-icon { display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.svc-media-icon svg { width: 60px; height: 60px; fill: none; stroke: var(--blue-300); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-body { padding: 22px 22px 24px; }
.svc-body h3 { font-size: 1.18rem; margin-bottom: .35em; }
.svc-body p { color: var(--slate); margin: 0; font-size: .95rem; }

/* ----------------------------- Gallery ----------------------------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-item { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); background: var(--navy-900); }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s ease, opacity .3s ease; }
.gallery-item:hover img, .gallery-item:focus img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; color: #fff; font-weight: 600; font-size: .82rem;
  padding: 22px 12px 10px; background: linear-gradient(180deg, transparent, rgba(11,30,61,.82));
  opacity: 0; transform: translateY(6px); transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover figcaption, .gallery-item:focus figcaption { opacity: 1; transform: none; }

/* ----------------------------- Why grid ----------------------------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.why-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); }
.why-icon svg { width: 25px; height: 25px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.why-item h3 { font-size: 1.12rem; margin-bottom: .3em; }
.why-item p { color: var(--slate); font-size: .94rem; margin: 0; }

/* ----------------------------- Steps ----------------------------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px 26px; box-shadow: var(--shadow-sm); text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; margin-bottom: 14px; font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: #fff; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); box-shadow: 0 8px 18px rgba(47,127,228,.35); }
.step h3 { font-size: 1.15rem; margin-bottom: .35em; }
.step p { color: var(--slate); font-size: .96rem; margin: 0; }

/* ----------------------------- Spaces / Areas ----------------------------- */
.spaces-grid, .areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.spaces-grid li, .areas-grid li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 14px; font-weight: 600; color: var(--ink); font-size: .92rem; display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-sm); }
.spaces-grid li::before, .areas-grid li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--blue-500); }
.areas-note { text-align: center; color: var(--slate); margin-top: 22px; font-size: .96rem; }

/* ----------------------------- Google Reviews ----------------------------- */
.g-dot {
  display: inline-grid; place-items: center; width: 1.35em; height: 1.35em; border-radius: 50%;
  background: #fff; color: #1a73e8; font-family: var(--font-head); font-weight: 800; font-size: .8em;
  border: 1px solid var(--line); vertical-align: middle; line-height: 1;
}
.eyebrow .g-dot { margin-right: .4em; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review-stars { display: block; color: #fbbc04; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 12px; }
.review-text { color: var(--ink); font-size: 1rem; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-meta strong { font-family: var(--font-head); color: var(--ink); font-size: .96rem; }
.review-meta span { color: var(--slate-light); font-size: .82rem; }
.review-via { display: inline-flex; align-items: center; gap: 5px; }

/* ----------------------------- Offer band ----------------------------- */
.offer { position: relative; overflow: hidden; padding: 52px 0; color: #fff; }
.offer-bg { position: absolute; inset: 0; z-index: 0; background:
  linear-gradient(150deg, rgba(11,30,61,.94), rgba(16,42,82,.86)),
  url("assets/work/open-living.jpg") center/cover no-repeat; }
.offer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.offer h2 { color: #fff; font-size: clamp(1.55rem, 5vw, 2.3rem); margin-bottom: .2em; }
.offer p { color: rgba(255,255,255,.88); margin: 0; max-width: 40em; }

/* ----------------------------- FAQ ----------------------------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 50px 18px 18px; position: relative; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--blue-500); font-weight: 400; transition: transform .25s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 18px 18px; color: var(--slate); }
.faq-answer p { margin: 0; }

/* ----------------------------- Quote / Contact ----------------------------- */
.section-quote { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); color: #fff; }
.quote-inner { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.quote-info h2 { color: #fff; font-size: clamp(1.6rem, 5vw, 2.4rem); }
.quote-info > p { color: rgba(255,255,255,.82); font-size: 1.02rem; }
.quote-info strong { color: var(--blue-300); }
.quote-contact { margin-top: 24px; display: grid; gap: 16px; }
.quote-contact li { display: flex; align-items: center; gap: 14px; }
.qc-ico { width: 44px; height: 44px; border-radius: 12px; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); }
.qc-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--blue-300); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.qc-label { display: block; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-300); }
.quote-contact a { color: #fff; font-weight: 600; }
.quote-contact a:hover { color: var(--blue-300); }

/* Form */
.quote-form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 24px 20px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.req { color: var(--blue-600); }
.opt { color: var(--slate-light); font-weight: 400; font-size: .82rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);   /* 16px avoids iOS zoom-on-focus */
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .2s, box-shadow .2s; width: 100%; min-height: 50px;
}
.field textarea { min-height: 100px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(79,155,245,.2); }
/* Only flag fields as invalid after the user has interacted with them */
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #e0b4b4; }

/* Netlify honeypot field — visually hidden but reachable by bots */
.hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.checkbox { display: flex; align-items: center; gap: 12px; margin: 18px 0 20px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 600; cursor: pointer; }
.checkbox input { width: 24px; height: 24px; accent-color: var(--blue-500); flex: none; cursor: pointer; }

.form-status { font-weight: 600; margin: 14px 0 0; min-height: 1.2em; text-align: center; }
.form-status.success { color: #1d8a4e; }
.form-status.error { color: #c0392b; }
.form-fine { text-align: center; color: var(--slate-light); font-size: .82rem; margin: 12px 0 0; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.78); padding-top: 48px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
.brand-footer { margin-bottom: 14px; }
.footer-tagline { font-size: .95rem; max-width: 26em; margin-bottom: 1em; }
.footer-contact a { color: var(--blue-300); font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--blue-600); transform: translateY(-2px); color: #fff; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }
.footer-col h3 { color: #fff; font-size: 1rem; letter-spacing: .04em; margin-bottom: 1em; }
.footer-col ul li { margin-bottom: .6em; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .96rem; }
.footer-col a:hover { color: var(--blue-300); }
.footer-cta-text { font-size: .94rem; margin-bottom: 1em; }
.footer-area-line { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-area-line p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.62); text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-bottom-inner p { margin: 0; }

/* ----------------------------- Floating CTA ----------------------------- */
.floating-cta { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: inline-flex; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: #fff; font-family: var(--font-head); font-weight: 700; padding: 14px 22px; border-radius: 999px; box-shadow: 0 10px 26px rgba(47,127,228,.5); min-height: 50px; align-items: center; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .3s ease, transform .3s ease; }
.floating-cta.show { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:hover { color:#fff; }

/* ----------------------------- Lightbox ----------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,18,36,.94); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-content { margin: 0; max-width: 1000px; width: 100%; text-align: center; }
.lightbox-content img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 12px; }
.lightbox-content figcaption { color: #fff; margin-top: 12px; font-weight: 600; font-size: .95rem; }
.lightbox-close { position: absolute; top: 14px; right: 16px; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; width: 48px; height: 48px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; color: #fff; font-size: 2rem; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 12px; } .lightbox-next { right: 12px; }

/* ----------------------------- Reveal animation ----------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ===================================================================
   RESPONSIVE — scale UP from mobile base
   =================================================================== */

/* Small phones: keep single-column where readability matters */
@media (max-width: 430px) {
  .spaces-grid, .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* Larger phones / small tablets */
@media (min-width: 560px) {
  .trustbar-inner { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }   /* 2x2 for 4 real reviews */
  .form-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-actions .btn-primary, .hero-actions .btn-text { width: auto; }
}

/* Tablets */
@media (min-width: 768px) {
  body { font-size: 16.5px; }
  .container { padding: 0 24px; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 46px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; }
}

/* Desktop */
@media (min-width: 980px) {
  html { scroll-padding-top: 90px; }
  .hero { padding: 150px 0 90px; }
  .hero-inner { grid-template-columns: 1.15fr .95fr; gap: 52px; }
  .hero-actions .btn { flex: 0 1 auto; }
  .trustbar-inner { grid-template-columns: repeat(5, 1fr); padding: 24px; }
  .trust-badge { justify-content: center; font-size: .92rem; }
  .section { padding: 92px 0; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { gap: 16px; }
  .quote-inner { grid-template-columns: .85fr 1.15fr; gap: 46px; }
  .quote-form { padding: 34px; }
  .floating-cta { display: none; }      /* desktop has header CTA */
  .footer-bottom-inner { font-size: .88rem; }
}

/* Mobile menu backdrop — dims the page and closes the menu on tap */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 94; background: rgba(8, 18, 36, .55);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease;
}
.nav-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }
@media (min-width: 880px) { .nav-backdrop { display: none; } }

/* ----------------------------- Mobile nav (below 880px) ----------------------------- */
@media (max-width: 879px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 330px);
    background: var(--navy-900); transform: translateX(100%); transition: transform .3s ease;
    box-shadow: -20px 0 50px rgba(0,0,0,.4); padding: 88px 26px 28px; overflow-y: auto; z-index: 95;
  }
  .nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list li { width: 100%; }
  .nav-list a { display: block; font-size: 1.06rem; padding: 13px 8px; border-radius: 8px; }
  .nav-list a:hover { background: rgba(255,255,255,.06); }
  .nav-cta { margin-top: 10px; }
  .nav-cta a { width: 100%; }
  body.nav-open { overflow: hidden; }
  .brand-text strong { font-size: 1rem; }
}

/* ----------------------------- Thank-you page ----------------------------- */
.thankyou { position: relative; min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; color: #fff; overflow: hidden; }
.thankyou-bg { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(900px 500px at 80% -10%, rgba(79,155,245,.3), transparent 60%),
  linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700)); }
.thankyou-card { position: relative; z-index: 1; max-width: 560px; text-align: center; }
.logo-badge-lg { width: 88px; height: 88px; margin: 0 auto 18px; }
.thankyou-check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); box-shadow: 0 12px 28px rgba(47,127,228,.45); }
.thankyou-check svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thankyou h1 { color: #fff; font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: .5em; }
.thankyou p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 1.6em; }
.thankyou-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 1.8em; }
.thankyou-fine { color: rgba(255,255,255,.55); font-size: .85rem; margin: 0; }
