/* ============================================================
   ABSOLUTE CARPET CLEANING — STYLESHEET
   All colours controlled by CSS variables at the top.
   To restyle the site, only edit the :root section below.
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --primary:        #0B3D6B;
  --primary-light:  #185FA5;
  --accent:         #4FC3A1;
  --accent-dark:    #0F6E56;
  --bg-light:       #F7F9FC;
  --bg-white:       #FFFFFF;
  --bg-dark:        #0B3D6B;
  --text-dark:      #0D1B2A;
  --text-mid:       #4A5568;
  --text-light:     #FFFFFF;
  --text-light-muted: rgba(255,255,255,0.82);
  --border:         #E2E8F0;
  --star:           #F59E0B;
  --shadow-sm:      0 2px 8px rgba(11,61,107,0.08);
  --shadow-md:      0 4px 20px rgba(11,61,107,0.13);
  --shadow-lg:      0 8px 40px rgba(11,61,107,0.18);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;
  --transition:     0.22s ease;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::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(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary    { background: var(--primary); color: var(--text-light); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-accent     { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); color: var(--text-light); border-color: var(--accent-dark); }
.btn-outline-primary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--primary); color: var(--text-light); }
.btn-outline-white { background: transparent; color: var(--text-light); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--text-light); }
.btn-full { width: 100%; }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-light);
  flex-shrink: 0;
}
.logo-icon { color: var(--accent); font-size: 22px; }
.logo-accent { color: var(--accent); }
.logo-img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
}
.nav-link {
  color: var(--text-light-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--text-light);
  background: rgba(255,255,255,0.12);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-phone:hover { color: var(--accent); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--primary);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu a {
  color: var(--text-light-muted);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--text-light); }
.mobile-phone { color: var(--accent) !important; font-weight: 600; }
.mobile-menu.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* ROW 1: Full-width carousel */
.hero-carousel-wrap {
  width: 100%;
  overflow: hidden;
}
.hero-carousel-wrap .carousel {
  border-radius: 0;
  background: #07243F;
}

/* ROW 2: headline + form */
.hero-bottom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 44px 0;
}
.hero-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.hero-content { color: var(--text-light); }
.hero-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-badge {
  display: inline-block;
  background: rgba(79,195,161,0.18);
  color: var(--accent);
  border: 1px solid rgba(79,195,161,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-light);
  margin-bottom: 14px;
}
.title-accent { color: var(--accent); }
.hero-sub {
  font-size: 15px;
  color: var(--text-light-muted);
  margin-bottom: 20px;
  line-height: 1.65;
  max-width: 540px;
}
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.trust-pill {
  background: rgba(255,255,255,0.12);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
}

/* ── CAROUSEL ──────────────────────────────────────────────── */
.carousel {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.slide {
  min-width: 100%;
  height: 440px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.ba-split {
  display: flex;
  height: 100%;
}
.ba-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.ba-upload-zone {
  position: relative;
  width: 100%;
  height: 100%;
}
/* Placeholder fills */
.ba-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.placeholder-icon  { font-size: 32px; margin-bottom: 4px; }
.placeholder-text  { font-size: 13px; font-weight: 600; color: var(--text-light); text-align: center; }
.placeholder-sub   { font-size: 11px; color: var(--text-light-muted); text-align: center; }

/* Specific placeholder backgrounds */
.carpet-before-bg     { background: linear-gradient(135deg,#3d2b1a,#6b4a30); }
.carpet-after-bg      { background: linear-gradient(135deg,#b8a890,#d4c0a8); }
.carpet-after-bg .placeholder-text,
.carpet-after-bg .placeholder-sub { color: var(--text-dark); }
.lease-before-bg      { background: linear-gradient(135deg,#2d2d2d,#4a3d1a); }
.lease-after-bg       { background: linear-gradient(135deg,#d8e8f4,#eef4fa); }
.lease-after-bg .placeholder-text,
.lease-after-bg .placeholder-sub { color: var(--text-dark); }
.tile-before-bg       { background: linear-gradient(135deg,#2a3520,#4a5535); }
.tile-after-bg        { background: linear-gradient(135deg,#ddeedd,#f0f8f0); }
.tile-after-bg .placeholder-text,
.tile-after-bg .placeholder-sub { color: var(--text-dark); }
.upholstery-before-bg { background: linear-gradient(135deg,#3d2a1a,#6b4a30); }
.upholstery-after-bg  { background: linear-gradient(135deg,#e8ddd0,#f5ede4); }
.upholstery-after-bg .placeholder-text,
.upholstery-after-bg .placeholder-sub { color: var(--text-dark); }
.pet-before-bg        { background: linear-gradient(135deg,#3a2010,#704030); }
.pet-after-bg         { background: linear-gradient(135deg,#c8d8c0,#e0edd8); }
.pet-after-bg .placeholder-text,
.pet-after-bg .placeholder-sub { color: var(--text-dark); }

/* Uploaded image */
.uploaded-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Upload button */
.upload-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  z-index: 5;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.upload-btn:hover { background: rgba(0,0,0,0.78); }
.upload-input { display: none; }

/* Before/After tags */
.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 4;
}
.ba-tag-before { background: rgba(0,0,0,0.6); color: var(--text-light); }
.ba-tag-after  { background: var(--accent);   color: var(--primary); }

/* Divider */
.ba-divider {
  width: 4px;
  background: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}
.ba-divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 22px;
  height: 22px;
  background: var(--accent);
  border: 3px solid var(--text-light);
  border-radius: 50%;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.35);
}
.carousel-btn {
  background: rgba(255,255,255,0.18);
  border: none;
  color: var(--text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.carousel-btn:hover { background: rgba(255,255,255,0.3); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--accent);
  width: 20px;
  border-radius: 4px;
}
.carousel-counter {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  min-width: 36px;
  text-align: right;
}
.slide-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  padding: 6px 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.2);
}

/* ── HERO QUOTE FORM ───────────────────────────────────────── */
.hero-form-wrap {
  position: sticky;
  top: 84px;
}
.quote-form {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.form-header { margin-bottom: 18px; }
.form-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}
.form-sub { font-size: 13px; color: var(--text-mid); }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-footer {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 10px;
}
.form-phone { color: var(--primary); font-weight: 700; }
.form-success {
  background: #e6faf5;
  color: #0a5940;
  border: 1px solid #4FC3A1;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.trust-icon { font-size: 18px; }

/* ── SECTIONS ──────────────────────────────────────────────── */
.section { padding: 72px 0; }
.bg-light  { background: var(--bg-light); }
.bg-white  { background: var(--bg-white); }
.bg-dark   { background: var(--bg-dark); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 8px;
}
.section-label-light { color: var(--accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title-light { color: var(--text-light); }

.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub-light { color: var(--text-light-muted); }

.section-cta { text-align: center; margin-top: 36px; }

/* ── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card.featured { border-color: var(--primary); border-width: 2px; }
.service-card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.service-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}
.service-card-tag {
  display: inline-block;
  background: #e6faf5;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
}
.service-card-link:hover { color: var(--accent-dark); }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.step { text-align: center; padding: 24px 16px; }
.step-num {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: var(--text-light-muted); line-height: 1.6; }

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--star); font-size: 15px; margin-bottom: 10px; }
.review-text  { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.reviewer     { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.reviewer-suburb { font-size: 12px; color: var(--text-mid); }

/* ── AREAS ─────────────────────────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-pill {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
}
.area-pill:hover {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.cta-sub { font-size: 15px; color: var(--text-light-muted); max-width: 480px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #07243F;
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.footer-desc {
  font-size: 13px;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}
.footer-abn  { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 13px;
  color: var(--text-light-muted);
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--accent); }
.footer-hours {
  font-size: 13px;
  color: var(--text-light-muted);
  line-height: 1.8;
  margin-top: 10px;
}
.footer-hours strong { color: var(--text-light); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  transition: background var(--transition);
}
.social-icon:hover { background: var(--accent); color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--accent); }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 52px 0 44px;
  color: var(--text-light);
}
.breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.page-hero-sub {
  font-size: 15px;
  color: var(--text-light-muted);
  max-width: 600px;
  line-height: 1.65;
}

/* ── CONTENT LAYOUT (service pages) ───────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}
.sticky-sidebar { position: sticky; top: 84px; }
.pricing-card {
  background: var(--bg-white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 18px;
}
.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
}
.price-row:last-of-type { border-bottom: none; }
.price-val { font-weight: 700; color: var(--primary); }
.price-note { font-size: 11px; color: var(--text-mid); margin-top: 10px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.faq-icon { font-size: 18px; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-bottom: 16px;
}
.faq-answer.open { display: block; }

/* ── CONTACT FORM (full page) ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}
.contact-info-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark);
}
.contact-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.hours-card {
  background: #e6faf5;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.hours-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--accent-dark); margin-bottom: 10px; }
.hours-row { font-size: 13px; color: var(--accent-dark); line-height: 1.9; }

/* ── GUARANTEE BANNER ──────────────────────────────────────── */
.guarantee-banner {
  background: #e6faf5;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.guarantee-icon { font-size: 40px; flex-shrink: 0; }
.guarantee-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--accent-dark); margin-bottom: 4px; }
.guarantee-text  { font-size: 13px; color: var(--accent-dark); line-height: 1.5; }

/* ── PROCESS STEPS (service pages) ────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.process-step  { display: flex; gap: 14px; align-items: flex-start; }
.pstep-num {
  width: 34px;
  height: 34px;
  background: #e6faf5;
  color: var(--accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.pstep-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.pstep-desc  { font-size: 13px; color: var(--text-mid); line-height: 1.55; }

/* ── CHECKLIST ─────────────────────────────────────────────── */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.checklist-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.checklist-tick { color: var(--accent); font-size: 15px; flex-shrink: 0; }

/* ── UTILITY ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-bottom-inner  { grid-template-columns: 1fr; }
  .hero-form-wrap     { position: static; max-width: 480px; }
  .hero-title         { font-size: 28px; }
  .slide              { height: 320px; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .content-layout     { grid-template-columns: 1fr; }
  .sticky-sidebar     { position: static; }
  .contact-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-accent, .nav-actions .nav-phone { display: none; }
  .nav-hamburger     { display: flex; }
  .nav-actions       { display: none; }
  .slide             { height: 220px; }
  .hero-title        { font-size: 24px; }
  .section           { padding: 48px 0; }
  .section-title     { font-size: 24px; }
  .cta-inner         { flex-direction: column; text-align: center; }
  .cta-buttons       { justify-content: center; }
  .footer-inner      { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .trust-bar-inner   { gap: 16px; }
  .form-row          { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr 1fr; }
  .slide             { height: 200px; }
}

@media (max-width: 480px) {
  .hero-trust-pills  { display: none; }
  .steps-grid        { grid-template-columns: 1fr; }
  .placeholder-text  { font-size: 12px; }
  .placeholder-sub   { display: none; }
}
