/* =============================================
   MINT WINDOW CLEANING — MAIN STYLESHEET v2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy:        #123C52;
  --navy-dark:   #0d2d3e;
  --mint:        #64E1C1;
  --mint-light:  #e8faf6;
  --mint-mid:    #b2f0e3;
  --off-white:   #F7F9FA;
  --white:       #FFFFFF;
  --slate:       #2D3E46;
  --slate-light: #5a7280;
  --border:      #E2EBF0;
  --shadow-sm:   0 1px 3px rgba(18,60,82,0.08);
  --shadow-md:   0 4px 16px rgba(18,60,82,0.10);
  --shadow-lg:   0 8px 32px rgba(18,60,82,0.13);
  --radius:      8px;
  --radius-lg:   16px;
  --radius-pill: 100px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-width:    1140px;
  --section-pad:  64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   BODY-COPY TEXT LINKS (site-wide standard)
   Use class="text-link" for any inline hyperlink
   inside paragraph/body copy. Do not inline-style
   individual links — update this rule instead.
   ============================================ */
.text-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--navy);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.15s ease;
}
.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: var(--mint);
}
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; color: var(--slate); }

/* --- Pill eyebrow label --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow svg { color: var(--mint); flex-shrink: 0; }
.eyebrow--light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
.eyebrow--light svg { color: var(--mint); }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--off-white); }
.trust-bar + .section {
  padding-top: 48px;
}
.section--navy { background: var(--navy); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.section-header { max-width: 640px; }
.section-header.centered { text-align: center; margin: 0 auto; }
.section-header p { margin-top: 14px; color: var(--slate-light); font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--mint); color: var(--navy); }
.btn-primary:hover { background: #4fd4b3; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(100,225,193,0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.nav-inner-placeholder { display: none; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
  max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--slate);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Pill phone button in nav */
.nav-phone-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem; font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.nav-phone-pill:hover { background: var(--navy-dark); }
.nav-phone-pill svg { color: var(--mint); }

.nav-quote-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.88rem; font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.nav-quote-pill:hover { background: #4fd4b3; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.2s; }

.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 28px 28px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 13px 0; font-size: 1rem; font-weight: 500; color: var(--slate); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { display: flex; width: 100%; justify-content: center; margin-top: 16px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-commercial-landscape.jpeg');
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 32, 46, 0.92) 0%,
    rgba(18, 60, 82, 0.78) 50%,
    rgba(18, 60, 82, 0.40) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto; padding: 80px 28px;
  width: 100%;
}

.hero-inner { max-width: 620px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Stat badge floating on hero */
.hero-stat-badge {
  position: absolute;
  bottom: 48px;
  right: 48px;
  background: var(--navy);
  border: 2px solid rgba(100,225,193,0.3);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}
.hero-stat-badge .stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
  display: block;
}
.hero-stat-badge .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  display: block;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-top: 3px solid var(--mint);
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
  display: flex; gap: 0; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.87rem; font-weight: 600; color: var(--navy);
  padding: 8px 16px;
}
.trust-item svg { color: var(--mint); flex-shrink: 0; }

/* ============================================
   SERVICE CARDS (who we help)
   ============================================ */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-card-img { aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.45s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.95rem; color: var(--slate-light); margin-bottom: 22px; flex: 1; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.04em;
  transition: gap 0.15s;
}
.card-link svg { transition: transform 0.15s; }
.card-link:hover { gap: 10px; }
.card-link:hover svg { transform: translateX(3px); }

/* ============================================
   ILLUSTRATED SERVICE ICONS STRIP
   ============================================ */
.services-strip {
  background: var(--mint-light);
  padding: 56px 0;
}
.services-strip-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
}
.services-strip h2 { text-align: center; margin-bottom: 48px; }

.icon-services {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.icon-services--even {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.icon-services--even .icon-service { width: auto; }
.icon-services--four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.icon-services--four .icon-service { width: auto; }

.icon-service {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  width: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.icon-service:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.icon-service-img {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
}

/* SVG illustrated icons */
.icon-service-img svg { width: 100%; height: 100%; }

.icon-service h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.icon-service p { font-size: 0.82rem; color: var(--slate-light); margin-top: 4px; }

/* ============================================
   WHY CHOOSE MINT (icon list layout)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-list { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }

.why-item { display: flex; gap: 18px; align-items: flex-start; }

.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--mint-light);
  border: 1.5px solid var(--mint-mid);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}

.why-item-text h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-item-text p { font-size: 0.92rem; color: var(--slate-light); }

.why-image-wrap { position: relative; }
.why-image-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }

/* Suburb page real-job photo gallery — auto-fits any number of images (2 today, more later) with no layout changes needed */
.job-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.job-gallery img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; line-height: 0; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  border: 1.5px solid var(--border);
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--mint-mid);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.93rem; color: var(--slate-light); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 36px;
}
.area-tag {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 14px; font-size: 0.87rem; font-weight: 500;
  color: var(--slate); text-align: center; transition: all 0.15s;
}
.area-tag:hover { border-color: var(--mint); color: var(--navy); background: var(--mint-light); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-placeholder {
  text-align: center; padding: 52px;
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.testimonials-placeholder p { color: var(--slate-light); font-size: 0.9rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: var(--navy); padding: var(--section-pad) 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-phone-link {
  color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px; transition: color 0.15s;
}
.cta-phone-link:hover { color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.62); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.footer-heading { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; display: block; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: rgba(255,255,255,0.68); transition: color 0.15s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.footer-legal-links a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-legal-links a:hover { color: var(--white); }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--navy);
  padding: 12px 20px; gap: 10px;
  border-top: 2px solid var(--mint);
}

/* ============================================
   GOOGLE REVIEWS
   ============================================ */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin: 36px 0 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.google-rating-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.google-wordmark { height: 22px; width: auto; }
.google-rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-rating-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.google-stars { display: flex; gap: 2px; }
.google-rating-count { font-size: 0.88rem; color: var(--slate-light); font-weight: 500; }
.google-write-btn { font-size: 0.88rem; padding: 10px 20px; }

.google-reviews-wrap { position: relative; }
.google-reviews-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.google-reviews-grid::-webkit-scrollbar { display: none; }
.google-review-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 260px;
}
.google-reviews-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.google-reviews-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.google-reviews-nav-btn:hover:not(:disabled) { background: var(--navy); color: var(--white); border-color: var(--navy); }
.google-reviews-nav-btn:disabled { opacity: 0.35; cursor: default; }
.google-review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.google-review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.google-review-top { display: flex; align-items: center; gap: 10px; }
.google-g-icon { width: 22px; height: 22px; flex-shrink: 0; }
.google-review-stars { color: #FBBC05; font-size: 1.05rem; letter-spacing: 1px; line-height: 1; }
.google-review-text {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}
.google-review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.google-reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.google-reviewer-info { display: flex; flex-direction: column; gap: 3px; }
.google-reviewer-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.google-posted-on {
  font-size: 0.77rem;
  color: var(--slate-light);
  display: flex; align-items: center; gap: 4px;
}

/* ============================================
   INTERNAL PAGE HERO (non-homepage)
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
}
.page-hero--with-breadcrumb { padding-top: 104px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.72); transition: color 0.15s; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.breadcrumb-current { color: rgba(255,255,255,0.9); font-weight: 500; }
.page-hero .container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.page-hero h1 {
  color: var(--white);
  margin-top: 16px;
  max-width: 720px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 600px;
  margin-top: 16px;
}
.page-hero .hero-actions { margin-top: 28px; }

/* ============================================
   CONTAINER NARROW (form pages)
   ============================================ */
.container--narrow { max-width: 680px; }

/* ============================================
   WHAT TO EXPECT / DETAIL HELPS (get a quote)
   ============================================ */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.expect-grid h2 { margin-top: 14px; font-size: 1.5rem; }
.expect-steps { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.expect-step { display: flex; align-items: flex-start; gap: 14px; }
.expect-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.expect-step p { margin: 0; padding-top: 3px; }
.expect-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; padding-left: 0; list-style: none; }
.expect-list li {
  position: relative;
  padding-left: 24px;
  color: var(--slate);
}
.expect-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
}
.expect-note { margin-top: 18px; color: var(--slate-light); font-size: 0.92rem; }

/* ============================================
   QUOTE FORM (get a quote page)
   ============================================ */
.quote-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 40px 36px;
  margin-top: 8px;
}

.quote-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.quote-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.quote-progress-step.is-active { opacity: 1; }
.quote-progress-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.quote-progress-step.is-active .quote-progress-dot { background: var(--navy); color: var(--white); }
.quote-progress-step.is-complete .quote-progress-dot { background: var(--mint); color: var(--navy); }
.quote-progress-label { font-size: 0.78rem; font-weight: 600; color: var(--slate-light); white-space: nowrap; }
.quote-progress-line { width: 64px; height: 2px; background: var(--border); margin: 0 12px; margin-bottom: 22px; }

.quote-step { display: none; }
.quote-step.is-active { display: block; animation: fadeStepIn 0.3s ease; }
@keyframes fadeStepIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

.field-group { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.field-input, .field-select, .field-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--slate);
  background: var(--white);
  transition: border-color 0.15s;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--mint);
}
.field-textarea { resize: vertical; min-height: 90px; }
.field-note { font-size: 0.82rem; color: var(--slate-light); margin-top: -10px; margin-bottom: 22px; }

.toggle-group { display: flex; gap: 10px; flex-wrap: wrap; }
.toggle-btn {
  flex: 1;
  min-width: 130px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.toggle-btn:hover { border-color: var(--mint); }
.toggle-btn.is-selected { background: var(--navy); border-color: var(--navy); color: var(--white); }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--slate);
  cursor: pointer;
  margin-bottom: 8px;
}
.checkbox-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--mint); cursor: pointer; }

.quote-step-actions { margin-top: 8px; display: flex; justify-content: flex-end; }
.quote-step-actions--split { justify-content: space-between; }
.quote-step-actions .btn svg { margin-left: 2px; }

.field-error { border-color: #E0584F !important; }
.field-error-msg { color: #E0584F; font-size: 0.8rem; margin-top: 6px; display: none; }
.field-error-msg.is-visible { display: block; }

.quote-success, .quote-error { text-align: center; padding: 24px 0; }
.quote-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.quote-success h3 { font-size: 1.3rem; margin-bottom: 10px; }
.quote-success p { max-width: 420px; margin: 0 auto 6px; }
.quote-success-note { font-size: 0.88rem; color: var(--slate-light); }
.quote-error p { color: var(--slate); }
.quote-error a { color: var(--navy); font-weight: 600; }

/* ============================================
   PREFER TO TALK / SERVICE NOTE (get a quote)
   ============================================ */
.talk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.talk-grid h2 { margin-top: 14px; font-size: 1.4rem; }
.talk-grid p { margin-top: 12px; }
.phone-link-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.phone-link-large:hover { color: var(--mint); }

/* ============================================
   QUOTE FORM ADDITIONS — file upload, consent, address autocomplete
   ============================================ */
.field-file {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
}
.field-file::file-selector-button {
  margin-right: 14px;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: none;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.photo-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.photo-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.photo-list-thumb {
  width: 36px; height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--mint-light);
}
.photo-list-name {
  flex: 1;
  font-size: 0.85rem;
  color: var(--slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.photo-list-status {
  font-size: 0.74rem;
  font-weight: 600;
  flex-shrink: 0;
}
.photo-list-status.is-pending { color: var(--slate-light); }
.photo-list-status.is-done { color: #1A9C70; }
.photo-list-status.is-failed { color: #E0584F; }
.photo-list-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-light);
  flex-shrink: 0;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-list-remove:hover { color: #E0584F; }

.checkbox-row--consent {
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 24px;
}
.checkbox-row--consent input[type="checkbox"] { margin-top: 2px; }
.checkbox-row--consent a { color: var(--navy); font-weight: 600; text-decoration: underline; }

.address-autocomplete-wrap { position: relative; }
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 20;
  max-height: 240px;
  overflow-y: auto;
}
.address-suggestion-item {
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--slate);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.address-suggestion-item:last-child { border-bottom: none; }
.address-suggestion-item:hover { background: var(--mint-light); }

/* ============================================
   GUARANTEE BANNER (reusable across service pages)
   ============================================ */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--mint-light);
  border: 1.5px solid var(--mint-mid);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-banner-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--mint-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.guarantee-banner h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.guarantee-banner p { font-size: 0.9rem; color: var(--slate); }
@media (max-width: 600px) {
  .guarantee-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
}

/* ============================================
   FAQ ACCORDION (reusable across service pages)
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '';
  width: 9px; height: 9px;
  border-right: 2px solid var(--slate-light);
  border-bottom: 2px solid var(--slate-light);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 22px 20px; color: var(--slate); font-size: 0.93rem; line-height: 1.7; }

/* ============================================
   LEGAL CONTENT (Privacy Policy)
   ============================================ */
.legal-content h2 { font-size: 1.2rem; margin-top: 36px; margin-bottom: 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; list-style: disc; }
.legal-content li { margin-bottom: 6px; color: var(--slate); }
.legal-content a { color: var(--navy); font-weight: 600; }

@media (max-width: 960px) {
  .google-review-card { flex: 0 0 calc((100% - 20px) / 2); min-width: 240px; }
}
@media (max-width: 600px) {
  .google-review-card { flex: 0 0 88%; }
  .google-rating-bar { flex-direction: column; align-items: flex-start; }
  .google-rating-left { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================
   BEFORE / AFTER DRAG SLIDER
   ============================================ */
.ba-slider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.ba-slider-col { display: flex; flex-direction: column; }
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider-after,
.ba-slider-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ba-slider-after img,
.ba-slider-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-slider-before {
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,0.85);
}
.ba-slider-before img { width: 100%; height: 100%; }
.ba-slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider-handle-grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--navy);
  pointer-events: none;
}
.ba-tag {
  position: absolute;
  bottom: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(13, 45, 62, 0.78);
  color: var(--white);
  pointer-events: none;
}
.ba-tag-before { left: 16px; }
.ba-tag-after { right: 16px; }
.ba-slider-caption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--slate-light);
  margin-top: 12px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .ba-slider-grid { gap: 12px; max-width: 460px; }
  .ba-slider-handle-grip { width: 30px; height: 30px; }
  .ba-tag { font-size: 0.6rem; padding: 4px 8px; bottom: 8px; }
  .ba-tag-before { left: 8px; }
  .ba-tag-after { right: 8px; }
  .ba-slider-caption { font-size: 0.76rem; margin-top: 8px; }
}

@media (max-width: 480px) {
  .ba-slider-grid { gap: 8px; max-width: 360px; }
  .ba-slider-handle-grip { width: 26px; height: 26px; }
  .ba-tag { font-size: 0.55rem; padding: 3px 7px; }
}

/* ============================================
   FADE IN ANIMATION
   ============================================ */
.fade-in { 
  opacity: 0; 
  transition: opacity 0.55s ease, transform 0.55s ease; 
}
.fade-in.visible { 
  opacity: 1; 
  transform: none; 
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  :root { --section-pad: 64px; }
  .grid-2, .service-cards, .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3, .steps { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-services--four { grid-template-columns: repeat(2, 1fr); max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-quote-pill { display: none; }
  .nav-hamburger { display: flex; }
  .sticky-cta { display: flex; }
  .hero-stat-badge { bottom: 24px; right: 24px; padding: 16px 22px; }
  .hero-stat-badge .stat-number { font-size: 2rem; }
}

@media (max-width: 600px) {
  :root { --section-pad: 52px; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .icon-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 14px;
  }
  .icon-service { width: 100%; padding: 24px 14px 20px; }
  .icon-service:last-child { grid-column: 1 / span 2; max-width: 180px; margin: 0 auto; }
  .icon-services--even .icon-service:last-child,
  .icon-services--four .icon-service:last-child { grid-column: auto; max-width: none; margin: 0; }
  .icon-services--four { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stat-badge { position: relative; bottom: auto; right: auto; margin-top: 32px; display: inline-block; }
  .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 6px; justify-content: initial; }
  .trust-item { padding: 6px 4px; font-size: 0.82rem; }
  .trust-item:last-child { grid-column: 1 / span 2; justify-content: center; }
  .expect-grid, .talk-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-card { padding: 28px 20px 24px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-progress-line { width: 36px; }
  .toggle-btn { min-width: 0; }
  .page-hero { padding: 48px 0 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
