/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --color-green:     #085E4A;
  --color-black:     #0A0A0A;
  --color-red:       #CB103E;
  --color-blue:      #0F3E7C;
  --color-gray:      #C7C9CC;
  --color-white:     #F6F6F6;
  --color-pure-white: #FFFFFF;

  --font-primary: 'Montserrat', sans-serif;

  --fw-regular:   400;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;
  --fw-black:     900;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  52px;
  --space-xxl: 80px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   10px;
  --radius-pill: 100px;

  --shadow-card:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-elevated: 0 4px 20px rgba(0,0,0,0.15);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--color-black);
  background: var(--color-pure-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-primary); border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 { line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: 52px; font-weight: var(--fw-black); }
h2 { font-size: 32px; font-weight: var(--fw-extrabold); }
h3 { font-size: 20px; font-weight: var(--fw-bold); }
h4 { font-size: 14px; font-weight: var(--fw-extrabold); }
p  { line-height: 1.6; }

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-pad { padding: var(--space-xl) var(--space-lg); }

.overline {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-xs);
}

.red-rule {
  width: 48px;
  height: 4px;
  background: var(--color-red);
  border-radius: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: var(--fw-extrabold);
  color: var(--color-black);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* Buttons — Liquid Glass */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    0 4px 18px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
  z-index: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.12); }
.btn:hover::before { left: 130%; }
.btn:focus-visible { outline: 3px solid var(--color-green); outline-offset: 2px; }
.btn-green  { background: rgba(8, 94, 74, 0.85);   color: #fff; }
.btn-red    { background: rgba(203, 16, 62, 0.85);  color: #fff; }
.btn-white  { background: rgba(255,255,255,0.82);   color: var(--color-green); font-weight: var(--fw-extrabold); border-color: rgba(255,255,255,0.5); }
.btn-outline { background: rgba(255,255,255,0.08); border: 1px solid rgba(10,10,10,0.35); color: var(--color-black); }
.btn-outline-white { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-lg { font-size: 16px; padding: 14px 28px; }

.btn-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 40px;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}
.utility-left  { display: flex; align-items: center; gap: 20px; }
.utility-right { font-size: 10px; opacity: 0.65; }
.utility-item  { display: flex; align-items: center; gap: 5px; opacity: 0.85; }
.utility-icon  { font-size: 12px; }
.utility-phone  { color: var(--color-red); font-weight: var(--fw-extrabold); opacity: 1; font-size: 12px; }
.utility-phone-2 { opacity: 0.75; }

/* ============================================================
   MAIN NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-pure-white);
  border-bottom: 3px solid var(--color-red);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 100px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo img { height: 96px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--color-black);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: width 0.2s;
}
.nav-links a:hover        { color: var(--color-green); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  color: var(--color-green);
}
.nav-cta { padding: 9px 20px; font-size: 13px; }

/* Hamburger — hidden on desktop */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { display: block; height: 2px; background: var(--color-black); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown — hidden on desktop */
.mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: var(--color-pure-white);
  border-bottom: 2px solid var(--color-red);
  z-index: 99;
  padding: 20px 24px;
  box-shadow: var(--shadow-elevated);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-gray);
}
.mobile-nav-phones { display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-phones a {
  font-size: 16px;
  font-weight: var(--fw-extrabold);
  color: var(--color-green);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background:
    linear-gradient(rgba(8, 94, 74, 0.55), rgba(115, 145, 138, 0.55)),
    url('../assets/fowlers-kleen-rite-index-hero-image.png') center/cover no-repeat;
  overflow: hidden;
  text-align: center;
}
.hero-content {
  max-width: 660px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-overline {
  display: inline-block;
  background: rgba(203,16,62,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.hero-title {
  font-size: 52px;
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.hero-title em { color: var(--color-red); font-style: normal; }
.hero-tagline {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  font-weight: var(--fw-bold);
  margin-bottom: 6px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-location {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-btns { justify-content: center; margin-bottom: 24px; }
.hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stars-gold  { color: #FFD700; font-size: 18px; letter-spacing: 2px; }
.stars-label { font-size: 13px; font-weight: var(--fw-extrabold); color: rgba(255,255,255,0.8); }
.stars-quote { font-size: 12px; font-style: italic; font-weight: var(--fw-bold); color: rgba(255,255,255,0.6); }

.hero-emergency-badge {
  position: absolute;
  top: 24px;
  right: 28px;
  background: var(--color-red);
  color: #fff;
  font-size: 9px;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 2;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--color-black);
  display: flex;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item span:first-child { font-size: 15px; }

/* ============================================================
   SERVICES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.services { background: var(--color-pure-white); }

.services-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.service-card-primary {
  background: var(--color-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a7a60, #064d3c);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 20px; font-weight: var(--fw-extrabold); margin-bottom: 10px; color: #fff; }
.service-card-body p  { font-size: 14px; line-height: 1.6; opacity: 0.88; margin-bottom: 14px; }
.service-list { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.service-list li {
  font-size: 13px;
  opacity: 0.85;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: var(--fw-bold);
}

.services-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.service-card-secondary {
  background: var(--color-white);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.service-card-secondary h4 { margin-bottom: 6px; color: var(--color-black); }
.service-card-secondary p  { font-size: 13px; color: #555; }

.services-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #e5e5e5;
}
.services-cta-row p { font-size: 15px; color: var(--color-black); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw { background: var(--color-white); }

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 28px;
}
.step-card {
  flex: 1;
  background: var(--color-pure-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #ebebeb;
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-number {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 28px;
  height: 28px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--fw-black);
  color: #fff;
}
.step-icon  { font-size: 40px; margin-bottom: 14px; }
.step-card h3 { font-size: 14px; font-weight: var(--fw-extrabold); margin-bottom: 8px; color: var(--color-black); }
.step-card p  { font-size: 12px; color: #555; line-height: 1.6; flex: 1; }
.step-badge {
  display: inline-block;
  background: #F0F7F4;
  color: var(--color-green);
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 10px;
}
.step-arrow {
  font-size: 22px;
  color: var(--color-red);
  font-weight: var(--fw-black);
  align-self: center;
  padding: 0 8px;
  flex-shrink: 0;
}

.hiw-cta-bar {
  background: var(--color-pure-white);
  border: 1.5px solid #ebebeb;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-card);
}
.hiw-cta-bar p { font-size: 15px; color: var(--color-black); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after {
  background: var(--color-black);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.ba-card { border-radius: var(--radius-lg); overflow: hidden; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #2a2a2a;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: var(--fw-extrabold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: #fff;
  z-index: 1;
}
.ba-label-before { background: var(--color-red); }
.ba-label-after  { background: var(--color-green); }

.ba-card-body {
  background: #1a1a1a;
  padding: 14px 16px;
}
.ba-card-body h4 { font-size: 13px; font-weight: var(--fw-bold); color: var(--color-white); margin-bottom: 4px; }
.ba-card-body p  { font-size: 11px; color: rgba(255,255,255,0.5); }

.ba-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ba-cta-row p { font-size: 15px; font-weight: var(--fw-semibold); color: var(--color-white); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--color-white); }

.about-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.about-photo-frame {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--color-green);
  aspect-ratio: 4 / 5;
  max-height: 380px;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-badge-text {
  font-size: 11px;
  color: #fff;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
}
.about-quote {
  border-left: 4px solid var(--color-red);
  padding: 10px 18px;
  background: var(--color-pure-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 17px;
  font-weight: var(--fw-bold);
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 20px;
}
.about-content p { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-value {
  background: var(--color-pure-white);
  border: 1.5px solid #ebebeb;
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-value-icon { font-size: 22px; flex-shrink: 0; }
.about-value h4 { font-size: 13px; margin-bottom: 4px; }
.about-value p  { font-size: 12px; color: #666; line-height: 1.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--color-pure-white); }

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F0F7F4;
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  flex-shrink: 0;
}
.rating-big    { font-size: 44px; font-weight: var(--fw-black); color: var(--color-green); line-height: 1; }
.rating-source { font-size: 12px; color: #555; font-weight: var(--fw-semibold); margin-top: 4px; }
.rating-verified { font-size: 10px; color: #888; margin-top: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #ebebeb;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}
.review-text::before { content: '\201C'; color: var(--color-red); font-size: 22px; font-weight: var(--fw-black); line-height: 0; vertical-align: -5px; margin-right: 2px; }
.review-text::after  { content: '\201D'; color: var(--color-red); font-size: 22px; font-weight: var(--fw-black); line-height: 0; vertical-align: -5px; margin-left: 2px; }

.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: var(--fw-extrabold); font-size: 15px;
  flex-shrink: 0;
}
.review-name        { font-size: 13px; font-weight: var(--fw-bold); color: var(--color-black); }
.review-loc         { font-size: 12px; color: #888; }
.review-source-badge { font-size: 10px; color: var(--color-gray); font-weight: var(--fw-bold); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }

.google-link-row { text-align: center; font-size: 13px; color: #555; padding: 14px; background: var(--color-white); border-radius: var(--radius-md); }
.google-link-row a { color: var(--color-green); font-weight: var(--fw-bold); }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area { background: var(--color-green); }

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.area-label {
  font-size: 11px;
  font-weight: var(--fw-extrabold);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.county-list { display: flex; flex-direction: column; gap: 8px; }
.county-item {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.county-dot {
  width: 8px; height: 8px;
  background: var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.county-name  { font-size: 14px; font-weight: var(--fw-bold); color: #fff; flex: 1; }
.county-towns { font-size: 11px; color: rgba(255,255,255,0.5); text-align: right; }

.area-callouts { display: flex; flex-direction: column; gap: 14px; }
.area-callout {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}
.area-callout h4 { font-size: 14px; font-weight: var(--fw-extrabold); color: #fff; margin-bottom: 8px; }
.area-callout p  { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--color-white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.faq-item {
  background: var(--color-pure-white);
  border: 1.5px solid #ebebeb;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--color-white); }
.faq-chevron {
  font-size: 20px;
  font-weight: var(--fw-black);
  color: var(--color-red);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 14px 18px 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  border-top: 1px solid #f0f0f0;
}
.faq-item.open .faq-answer { display: block; }

.faq-cta-bar {
  background: var(--color-black);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-cta-bar p { font-size: 15px; color: var(--color-white); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--color-red);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-copy h2 { font-size: 38px; color: #fff; margin-bottom: 14px; }
.cta-copy p  { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 28px; }
.cta-phones  { display: flex; flex-direction: column; gap: 10px; }

.cta-phone-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-phone-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta-phone-icon { font-size: 22px; }
.cta-phone-label { font-size: 10px; color: #888; font-weight: var(--fw-semibold); }
.cta-phone-num { font-size: 20px; font-weight: var(--fw-black); color: var(--color-black); }
.cta-phone-num span { color: var(--color-red); }

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.contact-form-card h3 { font-size: 18px; margin-bottom: 4px; }
.form-sub { font-size: 13px; color: #888; margin-bottom: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-field label { font-size: 10px; font-weight: var(--fw-bold); color: #555; text-transform: uppercase; letter-spacing: 0.06em; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--color-white);
  border: 1.5px solid #e5e5e5;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--color-black);
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-green);
}
.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: var(--color-red);
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  margin-top: 4px;
}
.form-privacy { font-size: 11px; color: #aaa; text-align: center; margin-top: 8px; }

.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success-icon { font-size: 40px; display: block; margin-bottom: 10px; }
.form-success p { font-size: 15px; font-weight: var(--fw-semibold); color: var(--color-green); }
.form-error p { font-size: 14px; color: var(--color-red); text-align: center; padding: 10px; }
.form-error a { font-weight: var(--fw-bold); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-black); }

.footer-top {
  display: grid;
  grid-template-columns: 260px repeat(3, 1fr);
  gap: 40px;
  padding: 52px 40px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo-text { font-size: 22px; font-weight: var(--fw-extrabold); color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.footer-logo-text span { color: var(--color-red); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 18px; }
.footer-phones { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-phone { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 14px; font-weight: var(--fw-extrabold); }
.footer-phone-label { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: background 0.2s;
}
.social-icon:hover { background: rgba(255,255,255,0.16); }

.footer-col h4 { font-size: 11px; font-weight: var(--fw-extrabold); color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li, .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: var(--fw-regular); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-emergency { color: var(--color-red) !important; font-weight: var(--fw-bold) !important; }

.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 7px 12px;
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: var(--fw-semibold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 40px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-credit img { border-radius: 4px; }
.footer-credit span { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-credit a {
  font-weight: var(--fw-bold);
  background: linear-gradient(90deg, #00d4ff, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-red);
}
.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.01em;
}
