/* =========================================================
   NJ HOME CLEANING — STYLESHEET
   Organized by: Reset -> Variables -> Base -> Layout -> Components -> Sections -> Responsive
========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, div, span, h1, h2, h3, h4, p, a, ul, li, form, fieldset, legend, label, input, select, textarea, button, svg, figure {
  margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; background: none; }
html { scroll-behavior: smooth; }

/* ---------- CSS Variables (edit these to re-brand) ---------- */
:root {
  --color-primary: #2f8f6f;
  --color-primary-dark: #226c53;
  --color-primary-light: #eaf6f2;
  --color-accent: #ffb703;
  --color-text: #1f2a28;
  --color-text-muted: #5b6b66;
  --color-bg: #ffffff;
  --color-bg-alt: #f6faf8;
  --color-border: #e3ece8;
  --color-success: #2f8f6f;
  --color-error: #d0453c;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(20, 40, 34, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 40, 34, 0.10);
  --shadow-lg: 0 20px 50px rgba(20, 40, 34, 0.14);

  --header-height: 76px;
  --container-width: 1180px;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { color: var(--color-text-muted); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--color-primary);
  color: #fff; padding: 0.75rem 1.25rem; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

section { padding: clamp(3.5rem, 6vw, 6rem) 0; }

.eyebrow {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}

.section-heading { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section-sub { margin-top: 0.85rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1.5px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary-light); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--color-primary-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; }
.logo-icon { width: 40px; height: 30px; flex-shrink: 0; }
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-text { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; }
.logo-text strong { color: var(--color-primary); }

.main-nav ul { display: flex; gap: 2rem; }
.main-nav a {
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
  padding: 0.4rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 0.4rem; font-weight: 600; color: var(--color-text); }
.header-phone:hover { color: var(--color-primary-dark); }

.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.header-whatsapp:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--color-text);
  border-radius: 2px; transition: transform var(--transition-fast), opacity var(--transition-fast);
  margin: 0 auto;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 84vw);
  height: 100vh;
  background: #fff;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  padding: 6.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav ul a { font-size: 1.1rem; font-weight: 600; }
.mobile-phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--color-primary-dark); }

.mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(15, 30, 26, 0.4);
  z-index: 1050; opacity: 0; pointer-events: none; transition: opacity var(--transition-base);
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); background: linear-gradient(180deg, var(--color-primary-light) 0%, #ffffff 100%); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: 1rem; }
.hero-sub { font-size: 1.12rem; margin-top: 1.25rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.1rem; }

.hero-trust-badges { display: flex; gap: 1.75rem; flex-wrap: wrap; margin-top: 2.5rem; }
.hero-trust-badges li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--color-text); }
.hero-trust-badges svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: floatIn 0.9s ease both;
}
.hero-illustration { width: 100%; height: auto; }

.hero-badge-card {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 300px;
  animation: floatIn 0.9s 0.15s ease both;
}
.hero-badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary-light); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-badge-icon svg { width: 20px; height: 20px; }
.hero-badge-card strong { display: block; font-size: 0.92rem; }
.hero-badge-card span { font-size: 0.82rem; color: var(--color-text-muted); }

@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Services ---------- */
.services { background: var(--color-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; }

/* ---------- Why Choose Us ---------- */
.why-us { background: var(--color-bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card { text-align: center; padding: 1rem; }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { font-size: 0.94rem; }

/* ---------- How It Works ---------- */
.how-it-works { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0.5rem;
}
.step-card { text-align: center; padding: 0 0.5rem; }
.step-number {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: var(--shadow-sm);
}
.step-card h3 { margin-bottom: 0.55rem; font-size: 1.05rem; }
.step-card p { font-size: 0.93rem; }
.step-connector {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--color-border) 0 8px, transparent 8px 14px);
  margin-top: 27px;
}
.how-cta { text-align: center; margin-top: 3rem; }

/* ---------- Quote Form ---------- */
.quote-section { background: var(--color-primary-light); }
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.form-fieldset { border: none; margin-bottom: 2.25rem; }
.form-fieldset legend {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row-3 { grid-template-columns: 1.4fr 0.8fr 0.9fr; }

.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.45rem; }
.req { color: var(--color-error); }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(47, 143, 111, 0.15);
}
.form-field input[readonly] { background: var(--color-bg-alt); color: var(--color-text-muted); }
.form-field textarea { resize: vertical; min-height: 100px; }

.form-field.has-error input,
.form-field.has-error select {
  border-color: var(--color-error);
}
.field-error {
  display: block;
  color: var(--color-error);
  font-size: 0.82rem;
  margin-top: 0.4rem;
  min-height: 1.1em;
}

.address-autocomplete { position: relative; }
.address-suggestions {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  margin-top: 0.35rem;
  max-height: 260px;
  overflow-y: auto;
  z-index: 50;
}
.address-suggestion {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.address-suggestion:last-child { border-bottom: none; }
.address-suggestion:hover,
.address-suggestion.is-active { background: var(--color-primary-light); }

.field-group-label { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.9rem; }

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.option-card { display: block; cursor: pointer; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
  height: 100%;
}
.option-card-inner svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-primary); }
.option-card input:checked + .option-card-inner {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}
.option-card input:focus-visible + .option-card-inner { box-shadow: 0 0 0 3px rgba(47, 143, 111, 0.2); }
.option-card:hover .option-card-inner { transform: translateY(-2px); }

.form-consent { margin: 2rem 0 1.75rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; cursor: pointer; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--color-primary); flex-shrink: 0; }

.btn-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-footnote { text-align: center; font-size: 0.82rem; margin-top: 1.1rem; color: var(--color-text-muted); }

.form-success { text-align: center; padding: 2rem 1rem; animation: floatIn 0.5s ease both; }
.success-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-icon svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.form-success p { max-width: 440px; margin: 0 auto 1.5rem; }

/* ---------- Service Area ---------- */
.service-area { background: #fff; }
.city-group-label {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: 1rem;
  color: var(--color-primary-dark);
  text-align: left;
}
.city-group-label:not(:first-of-type) { margin-top: 2.25rem; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
}
.city-grid li {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  text-align: center;
  padding: 0.7rem 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.service-area-note { text-align: center; font-size: 0.85rem; margin-top: 1.75rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--color-bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { display: flex; gap: 0.2rem; color: var(--color-accent); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-quote { font-size: 0.95rem; color: var(--color-text); flex-grow: 1; }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-location { font-size: 0.85rem; color: var(--color-text-muted); }

/* ---------- About ---------- */
.about { background: var(--color-bg-alt); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about-content p { margin-top: 1.1rem; font-size: 1.02rem; }
.about-media { position: relative; }
.about-illustration { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; }
.about-badge {
  position: absolute;
  bottom: -1.25rem; right: -1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  text-align: center;
}
.about-badge strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}
.cta-band-inner { text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); margin-top: 0.85rem; font-size: 1.05rem; }
.cta-band .btn { margin-top: 2rem; }

/* ---------- Contact ---------- */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.contact-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
a.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.92rem; color: var(--color-text); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: #16241f; color: #cfe3da; padding-top: 4rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-text { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-text strong { color: var(--color-accent); }
.footer-brand p { color: #9db4ab; margin-top: 0.9rem; font-size: 0.92rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.footer-social-link svg { width: 18px; height: 18px; }
.footer-social-link:hover { background: var(--color-primary); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 1.1rem; letter-spacing: 0.03em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: #9db4ab; font-size: 0.92rem; transition: color var(--transition-fast); }
.footer-col a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { color: #86998f; font-size: 0.85rem; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  z-index: 800;
  display: none;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }

/* =========================================================
   RESPONSIVE
========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 480px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 420px; margin: 0 auto; }
}

/* Mobile nav breakpoint */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-actions { gap: 0.75rem; }
}

/* Mobile */
@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .container { padding: 0 18px; }

  .header-phone span { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust-badges { flex-direction: column; gap: 0.9rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step-connector { display: none; }

  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr 1fr; }

  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .hero-badge-card { position: static; margin-top: 1.25rem; }
  .about-badge { position: static; margin: 1.25rem auto 0; width: fit-content; }

  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 0; }
}

@media (max-width: 400px) {
  .option-cards { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
