/* Neat Freaks Cleaning Services — Static site styles
   Brand: Spotless cleaning for homes & businesses
   Palette: fresh teal + sky + sunny sparkle accent on a light, airy base.
   Photo-free by design: gradient hero + SVG icon cards (drop in real photos later). */

:root {
  --ink:        #0f2e3a;   /* deep teal-navy — headings, footer */
  --ink-soft:   #1c3c49;
  --paper:      #f5fbfb;   /* page background (very light aqua-white) */
  --paper-deep: #e7f5f4;   /* alternating section background */
  --paper-card: #ffffff;
  --brand:      #10a8a4;   /* teal — primary brand */
  --brand-deep: #0b7d7a;   /* deep teal — links, hover */
  --brand-tint: #d6efed;   /* teal wash for icon tiles */
  --sky:        #3cc0d4;   /* secondary sky/aqua (hero gradient) */
  --sun:        #ffc94d;   /* sunny sparkle accent */
  --sun-deep:   #f0ad2e;
  --check:      #1f9d57;   /* green checkmarks */
  --muted:      #56707a;
  --line:       rgba(15, 46, 58, 0.12);
  --line-soft:  rgba(15, 46, 58, 0.06);
  --shadow-sm:  0 1px 2px rgba(13,60,72,0.05), 0 2px 6px rgba(13,60,72,0.07);
  --shadow-md:  0 4px 16px rgba(13,60,72,0.09), 0 12px 32px rgba(13,60,72,0.07);
  --radius:     8px;
  --radius-lg:  16px;
  --maxw:       1180px;
  --pad-x:      clamp(1rem, 4vw, 2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-deep); text-decoration: none; }
a:hover { color: var(--brand); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.4em; }
strong { color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section--cream { background: var(--paper-deep); }
.section--ink {
  background: linear-gradient(135deg, var(--ink), #11525a);
  color: rgba(255,255,255,0.92);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .eyebrow { color: var(--sun); }

/* === Skip link for accessibility === */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff;
  padding: 0.75rem 1rem; z-index: 100; border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* === Top bar (service area + phone) === */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  padding: 0.45rem 0;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--sun); }
.topbar__phone { font-weight: 600; }

/* === Header / nav === */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 251, 251, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.7rem; gap: 1rem;
}
.site-header__brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.site-header__brand .brandmark { width: 38px; height: 38px; flex: none; }
.site-header__brand:hover { text-decoration: none; color: var(--brand-deep); }
.site-header__brand b { color: var(--brand); font-weight: 700; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  width: 42px; height: 42px; border-radius: var(--radius);
  cursor: pointer; color: var(--ink);
}
.nav-toggle:hover { background: var(--paper-deep); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.site-nav { display: none; }
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.site-nav a {
  display: block; padding: 0.65rem 0;
  color: var(--ink); font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--brand-deep); text-decoration: none;
}
.site-nav .nav-cta {
  display: inline-block; margin-top: 0.5rem;
  padding: 0.6rem 1.15rem; background: var(--brand);
  color: #fff; border-radius: 999px; font-weight: 600; border: none;
}
.site-nav .nav-cta:hover { background: var(--brand-deep); color: #fff; }
@media (min-width: 900px) {
  .site-nav { display: block !important; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 1.7rem; }
  .site-nav a { border: none; padding: 0.4rem 0; }
}
@media (max-width: 899px) {
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0.75rem var(--pad-x) 1.25rem;
  }
}

/* === Hero (gradient, photo-free) === */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 48%, var(--sky) 100%);
}
.hero::before { /* decorative soft bubbles */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,255,255,0.18) 0 70px, transparent 71px),
    radial-gradient(circle at 90% 60%, rgba(255,255,255,0.12) 0 40px, transparent 41px),
    radial-gradient(circle at 70% 84%, rgba(255,255,255,0.10) 0 28px, transparent 29px),
    radial-gradient(circle at 12% 78%, rgba(255,255,255,0.10) 0 50px, transparent 51px);
}
.hero__inner {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55; margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.94);
}
.hero .eyebrow { color: var(--sun); }
.hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
/* Interior hero: deeper start so small breadcrumb text clears WCAG AA */
.hero--page { background: linear-gradient(135deg, #06605c 0%, var(--brand) 56%, var(--sky) 100%); }
.hero--page .hero__inner { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  cursor: pointer; text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.05s, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); color: #fff; text-decoration: none; }
.btn--sun { background: var(--sun); color: var(--ink); box-shadow: 0 6px 18px rgba(240,173,46,0.35); }
.btn--sun:hover { background: var(--sun-deep); color: var(--ink); text-decoration: none; }
.btn--ghost { background: rgba(7,42,46,0.5); color: #fff; border-color: rgba(255,255,255,0.85); }
.btn--ghost:hover { background: rgba(7,42,46,0.64); color: #fff; text-decoration: none; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-soft); color: #fff; text-decoration: none; }

/* === Trust strip === */
.trust-strip {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.trust-strip__item .num {
  display: block;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--brand-deep); font-weight: 700;
}
.trust-strip__item .label {
  font-size: 0.92rem; color: var(--muted); letter-spacing: 0.03em;
}

/* === Service cards grid (icon-based) === */
.cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-tint); }
.card__icon {
  display: grid; place-items: center;
  padding: 1.6rem 1.4rem 0;
}
.card__icon span {
  display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 18px;
  background: var(--brand-tint); color: var(--brand-deep);
}
.card__icon svg { width: 38px; height: 38px; }
.card__media { aspect-ratio: 4 / 3; background: var(--paper-deep); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.2rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p  { color: var(--muted); margin-bottom: 1rem; flex: 1; }
.card__link {
  font-weight: 600; color: var(--brand-deep);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.card__link::after { content: "\2192"; transition: transform 0.15s ease; }
.card__link:hover::after { transform: translateX(3px); }

/* === Two column intro === */
.split {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1.05fr 1fr; }
  .split--reverse > :first-child { order: 2; }
}
.split__media img { border-radius: var(--radius-lg); width: 100%; height: auto; }

/* Decorative panel used where a photo would go */
.media-panel {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--brand) 0%, var(--sky) 100%);
  min-height: 280px; display: grid; place-items: center; padding: 2rem;
  color: #fff; box-shadow: var(--shadow-md);
}
.media-panel::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,0.22) 0 46px, transparent 47px),
    radial-gradient(circle at 24% 72%, rgba(255,255,255,0.16) 0 34px, transparent 35px);
}
.media-panel svg { position: relative; width: 120px; height: 120px; }

/* === Testimonials === */
.testimonials {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.5rem;
  position: relative;
}
.testimonial .stars { color: var(--sun); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.5rem; }
.testimonial p { color: var(--ink-soft); }
.testimonial cite {
  display: block; margin-top: 0.85rem;
  font-style: normal; font-weight: 600; color: var(--ink);
}
.testimonial cite span { display: block; font-weight: 400; color: var(--muted); font-size: 0.9rem; }

/* === FAQ (details/summary) === */
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); transition: transform 0.15s ease; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin-top: 0.75rem; color: var(--muted); margin-bottom: 0; }

/* === Process / steps === */
.process {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.process__step { position: relative; padding-top: 2.6rem; counter-increment: step; }
.process__step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.5rem; color: var(--brand); font-weight: 700;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.process__step p  { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

/* === Pillars (why-us, icon + text) === */
.pillars {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pillar { background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.pillar__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-tint); color: var(--brand-deep); margin-bottom: 1rem;
}
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.pillar p { color: var(--muted); font-size: 0.96rem; margin-bottom: 0; }

/* === Breadcrumbs === */
.breadcrumbs { font-size: 0.88rem; color: #fff; margin-bottom: 1rem; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li::after { content: "/"; margin-left: 0.4rem; opacity: 0.6; }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: #fff; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs li[aria-current] { color: #fff; }

/* === CTA banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #11525a 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid; gap: 1.25rem; grid-template-columns: 1fr; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 20%, rgba(60,192,212,0.35) 0 120px, transparent 121px);
}
.cta-banner > * { position: relative; }
@media (min-width: 720px) { .cta-banner { grid-template-columns: 2fr auto; } }
.cta-banner h2 { color: #fff; margin: 0 0 0.4rem; }
.cta-banner p  { margin: 0; color: rgba(255,255,255,0.88); }

/* === Feature / checklist === */
.feature-list {
  list-style: none; padding: 0;
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature-list li { position: relative; padding-left: 1.7rem; margin-bottom: 0; }
.feature-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0.05rem;
  color: var(--check); font-weight: 800;
}

/* === Form === */
.form { display: grid; gap: 1rem; max-width: 540px; }
.form label { font-size: 0.92rem; font-weight: 600; display: block; margin-bottom: 0.3rem; color: var(--ink); }
.form input, .form textarea {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-card); color: var(--ink); font: inherit;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand);
}

/* === Footer === */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
  font-size: 0.95rem;
}
.site-footer h2 {
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.social { display: flex; gap: 0.75rem; align-items: center; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
}
.social a:hover { border-color: var(--brand); color: var(--sun); }
.social svg { width: 18px; height: 18px; }

/* === Exioite credit (matches the other Exioite-built sites) === */
.exioite-credit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.exioite-credit__link {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; opacity: .85; transition: opacity .15s ease; text-decoration: none;
}
.exioite-credit__link:hover { opacity: 1; text-decoration: none; }
.exioite-credit__caption {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55);
}
.exioite-credit__logo { display: block; height: 34px; width: auto; }
.exioite-credit__sep { color: rgba(255,255,255,.3); }
.exioite-credit__url { font-size: .82rem; color: rgba(255,255,255,.65); letter-spacing: .02em; }
@media (max-width:520px){ .exioite-credit__logo{ height: 28px; } }

/* === Article (legal / text pages) === */
.article { max-width: 760px; margin-inline: auto; }
.article header { margin-bottom: 2rem; }
.article .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.article h2 { margin-top: 2rem; }
.article h3 { margin-top: 1.5rem; }

/* === Utilities === */
.lede { font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Print */
@media print {
  .site-header, .site-footer, .topbar, .cta-banner { display: none; }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
