/*
Theme Name: CFC Recycling
Theme URI: https://cfcrecycling.com
Author: CFC Recycling
Author URI: https://cfcrecycling.com
Description: Custom WordPress theme for CFC Recycling — DFW's trusted junk car buyers and full-service auto salvage yard. Features a bold industrial design with black, grey, red, and yellow accent colors. Includes custom page templates for city landing pages, pricing, contact, and about pages, plus custom post types for testimonials and recent purchases.
Version: 4.4.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cfc-recycling
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, blog
*/

/* ============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================ */
:root {
  --cfc-red: #d62e27;
  --cfc-red-dark: #b8231d;
  --cfc-red-light: #e84840;
  --cfc-yellow: #F5C518;
  --cfc-yellow-dark: #d4a80f;
  --cfc-black: #111111;
  --cfc-dark: #1a1a1a;
  --cfc-dark-grey: #2d2d2d;
  --cfc-mid-grey: #444444;
  --cfc-grey: #888888;
  --cfc-light-grey: #cccccc;
  --cfc-off-white: #f2f2f2;
  --cfc-white: #ffffff;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;

  --container: 1200px;
  --section-pad: 80px;
  --radius: 4px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cfc-dark);
  background: var(--cfc-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cfc-red);
  margin-bottom: 8px;
  display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  max-width: 100%;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.btn-red {
  background: var(--cfc-red);
  color: var(--cfc-white);
}
.btn-red:hover {
  background: var(--cfc-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-yellow {
  background: var(--cfc-yellow);
  color: var(--cfc-black);
}
.btn-yellow:hover {
  background: var(--cfc-yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--cfc-white);
  border: 2px solid var(--cfc-white);
}
.btn-outline:hover {
  background: var(--cfc-white);
  color: var(--cfc-dark);
}

.btn-dark {
  background: var(--cfc-dark);
  color: var(--cfc-white);
}
.btn-dark:hover {
  background: var(--cfc-dark-grey);
  transform: translateY(-2px);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--cfc-black);
  color: var(--cfc-light-grey);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar a:hover { color: var(--cfc-yellow); }

/* Top Bar Visibility Controls */
.top-bar.hide-desktop { display: none; }
@media (max-width: 768px) {
  .top-bar.hide-mobile { display: none !important; }
  .top-bar.hide-desktop:not(.hide-mobile) { display: block; }
}
@media (min-width: 769px) {
  .top-bar.hide-desktop { display: none !important; }
  .top-bar.hide-mobile:not(.hide-desktop) { display: block; }
}
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  background: var(--cfc-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

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

.nav-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: var(--cfc-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo-icon svg { width: 28px; height: 28px; fill: var(--cfc-white); }

.nav-logo .custom-logo {
  max-height: 50px;
  width: auto;
}

/* Text only shows as fallback when no custom logo is uploaded */
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cfc-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-phone-number {
  vertical-align: middle;
}

.nav-quote-btn {
  padding: 10px 20px !important;
  font-size: 0.85rem !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-links .menu-item a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cfc-light-grey);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links .menu-item a:hover {
  color: var(--cfc-white);
  background: rgba(255,255,255,0.08);
}

.nav-links .current-menu-item a,
.nav-links .current_page_item a {
  color: var(--cfc-white);
  background: rgba(255,255,255,0.1);
}

/* WordPress menu reset */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li { list-style: none; }

/* ── Desktop Dropdown ── */
.nav-links li.has-dropdown {
  position: relative;
}

.nav-links li.has-dropdown > a {
  padding-right: 8px;
}

.nav-links .dropdown-toggle {
  background: none;
  border: none;
  color: var(--cfc-light-grey);
  cursor: pointer;
  padding: 8px 6px;
  margin-left: -6px;
  vertical-align: middle;
  transition: transform 0.25s;
}

.nav-links .dropdown-toggle svg {
  display: block;
}

/* Submenu */
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--cfc-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  padding: 8px 0;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform-origin: top center;
}

.nav-links .sub-menu li {
  list-style: none;
}

.nav-links .sub-menu a {
  display: block;
  padding: 10px 20px !important;
  font-size: 0.83rem !important;
  color: var(--cfc-light-grey) !important;
  white-space: nowrap;
  border-radius: 0 !important;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}

.nav-links .sub-menu a:hover {
  background: rgba(255,255,255,0.08) !important;
  color: var(--cfc-white) !important;
  border-left-color: var(--cfc-red);
}

.nav-links .sub-menu .current-menu-item > a {
  color: var(--cfc-yellow) !important;
  border-left-color: var(--cfc-yellow);
}

/* Desktop: show on hover or open class */
@media (min-width: 769px) {
  .nav-links li.has-dropdown:hover > .sub-menu,
  .nav-links li.has-dropdown.open > .sub-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%);
    animation: dropdownFadeIn 0.2s ease;
  }

  .nav-links li.has-dropdown:hover > .dropdown-toggle,
  .nav-links li.has-dropdown.open > .dropdown-toggle {
    transform: rotate(180deg);
    color: var(--cfc-yellow);
  }

  /* Desktop: hide toggle button visually, just show the chevron inline */
  .nav-links .dropdown-toggle {
    padding: 4px 2px;
    margin-left: -4px;
  }
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

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

.nav-phone {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cfc-yellow);
  letter-spacing: 0.02em;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--cfc-white);
  transition: all 0.3s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--cfc-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,17,17,0.95) 0%,
    rgba(17,17,17,0.7) 40%,
    rgba(17,17,17,0.5) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 46, 39, 0.15);
  border: 1px solid rgba(214, 46, 39, 0.4);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cfc-red-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge svg { width: 16px; height: 16px; fill: var(--cfc-red); }

.hero h1 {
  color: var(--cfc-white);
  margin-bottom: 16px;
}

.hero h1 .highlight {
  color: var(--cfc-red);
  display: inline;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--cfc-light-grey);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-phone-strip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--cfc-yellow);
  padding: 16px 28px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  transform: skewX(-2deg);
}

.hero-phone-strip > * { transform: skewX(2deg); }

.hero-phone-strip .label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cfc-dark);
  line-height: 1.2;
}

.hero-phone-strip .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cfc-black);
  letter-spacing: 0.02em;
  line-height: 1;
}

.hero-phone-strip .number a { color: var(--cfc-black); }
.hero-phone-strip .number a:hover { color: var(--cfc-dark-grey); }

.hero-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cfc-light-grey);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--cfc-red);
  flex-shrink: 0;
}

/* Hero Quote Form */
.hero-form-card {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--cfc-red);
}

.hero-form-card h3 {
  text-align: center;
  margin-bottom: 4px;
  color: var(--cfc-dark);
  font-size: 1.4rem;
}

.hero-form-card .form-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--cfc-grey);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-mid-grey);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--cfc-off-white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cfc-dark);
  background: var(--cfc-off-white);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cfc-red);
  background: var(--cfc-white);
  box-shadow: 0 0 0 3px rgba(214, 46, 39, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-form-card .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--cfc-grey);
  margin-top: 12px;
}

.form-note svg {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 4px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--cfc-dark);
  padding: 0;
  border-top: 3px solid var(--cfc-red);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.03); }

.trust-item .number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cfc-red);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-item .text {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cfc-grey);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
  font-size: 1.1rem;
  color: var(--cfc-grey);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--cfc-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--cfc-off-white), var(--cfc-red), var(--cfc-off-white));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--cfc-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  border: 3px solid var(--cfc-white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  background: var(--cfc-red);
  transform: scale(1.08);
}

.step-card:hover .step-number svg { fill: var(--cfc-white); }

.step-number svg {
  width: 40px;
  height: 40px;
  fill: var(--cfc-red);
  transition: all 0.3s ease;
}

.step-num-label {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cfc-dark);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  margin-bottom: 8px;
  color: var(--cfc-dark);
}

.step-card p {
  color: var(--cfc-grey);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   WHAT WE BUY
   ============================================ */
.what-we-buy {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.what-we-buy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.what-we-buy-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.what-we-buy-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.what-we-buy-img .overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--cfc-yellow);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cfc-black);
  text-transform: uppercase;
  transform: skewX(-2deg);
  box-shadow: var(--shadow-sm);
}

.what-we-buy-content h2 { margin-bottom: 16px; }

.what-we-buy-content > p {
  font-size: 1.05rem;
  color: var(--cfc-mid-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}

.buy-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.buy-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--cfc-dark);
  font-weight: 500;
}

.buy-list-item svg {
  width: 20px;
  height: 20px;
  fill: var(--cfc-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--cfc-dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(214, 46, 39, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.services .section-label { color: var(--cfc-red-light); }
.services .section-header h2 { color: var(--cfc-white); }
.services .section-header p { color: var(--cfc-grey); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--cfc-dark-grey);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--cfc-red);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 46, 39, 0.3);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 46, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon { background: var(--cfc-red); }

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--cfc-red);
  transition: fill 0.3s ease;
}

.service-card:hover .service-icon svg { fill: var(--cfc-white); }

.service-card h3 {
  color: var(--cfc-white);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--cfc-grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   YELLOW CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--cfc-yellow);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.03) 20px,
    rgba(0,0,0,0.03) 40px
  );
}

.cta-banner .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 36px 24px;
  flex-wrap: wrap;
}

.cta-banner-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--cfc-black);
  text-transform: uppercase;
}

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

.cta-banner-phone a {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cfc-black);
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.cta-banner-phone a:hover { opacity: 0.7; }

.cta-banner-phone svg {
  width: 36px;
  height: 36px;
  fill: var(--cfc-dark);
}

/* ============================================
   WHY CHOOSE CFC
   ============================================ */
.why-choose {
  padding: var(--section-pad) 0;
  background: var(--cfc-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.why-image .image-accent {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--cfc-red);
  border-radius: 4px;
  pointer-events: none;
}

.why-content h2 { margin-bottom: 20px; }
.why-content > p {
  font-size: 1.05rem;
  color: var(--cfc-mid-grey);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-features { display: grid; gap: 20px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: rgba(214, 46, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon svg { width: 22px; height: 22px; fill: var(--cfc-red); }

.why-feature h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--cfc-dark);
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--cfc-grey);
  line-height: 1.5;
}

/* ============================================
   RECENT PURCHASES
   ============================================ */
.recent-purchases {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.purchases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.purchase-card {
  background: var(--cfc-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.purchase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.purchase-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.purchase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.purchase-card:hover .purchase-img img { transform: scale(1.06); }

.purchase-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--cfc-yellow);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cfc-black);
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.purchase-info { padding: 16px; }

.purchase-info h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cfc-dark);
  margin-bottom: 2px;
}

.purchase-info span {
  font-size: 0.82rem;
  color: var(--cfc-grey);
}

/* ============================================
   SERVICE AREA
   ============================================ */
.service-area {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
  position: relative;
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.area-content h2 { margin-bottom: 16px; }
.area-content > p {
  font-size: 1.05rem;
  color: var(--cfc-mid-grey);
  margin-bottom: 32px;
  line-height: 1.7;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.city-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--cfc-white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cfc-dark);
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.city-link:hover {
  border-color: var(--cfc-red);
  color: var(--cfc-red);
  transform: translateX(4px);
}

.city-link svg { width: 14px; height: 14px; fill: var(--cfc-red); flex-shrink: 0; }

.area-map { border-radius: 8px; overflow: hidden; }
.area-map iframe { display: block; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cfc-dark);
}

.testimonials .section-label { color: var(--cfc-red-light); }
.testimonials .section-header h2 { color: var(--cfc-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cfc-dark-grey);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg { width: 18px; height: 18px; fill: var(--cfc-yellow); }

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--cfc-light-grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cfc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cfc-white);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cfc-white);
  text-transform: uppercase;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--cfc-grey);
}

/* ============================================
   COMMUNITY
   ============================================ */
.community {
  padding: var(--section-pad) 0;
  background: var(--cfc-white);
}

.community-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.community-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.community-content h2 { margin-bottom: 16px; }
.community-content > p {
  font-size: 1.05rem;
  color: var(--cfc-mid-grey);
  line-height: 1.7;
  margin-bottom: 24px;
}

.community-highlights { display: grid; gap: 16px; }

.community-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.community-highlight svg {
  width: 22px; height: 22px;
  fill: var(--cfc-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.community-highlight span {
  font-size: 0.95rem;
  color: var(--cfc-mid-grey);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--cfc-black);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cfc-white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-about p {
  font-size: 0.9rem;
  color: var(--cfc-grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.site-footer h4 {
  font-size: 0.95rem;
  color: var(--cfc-white);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.footer-links a,
.footer-links .menu-item a {
  display: block;
  font-size: 0.9rem;
  color: var(--cfc-grey);
  padding: 4px 0;
  transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-links .menu-item a:hover {
  color: var(--cfc-red);
  padding-left: 6px;
}

/* WordPress footer menu reset */
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { list-style: none; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 18px; height: 18px;
  fill: var(--cfc-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.9rem;
  color: var(--cfc-grey);
  line-height: 1.5;
}

.footer-contact-item a { color: var(--cfc-grey); }
.footer-contact-item a:hover { color: var(--cfc-red); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--cfc-grey);
}

.footer-bottom a { color: var(--cfc-red); }

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--cfc-grey);
  transition: fill 0.2s;
}

.footer-social-icon:hover {
  background: var(--cfc-red);
}

.footer-social-icon:hover svg {
  fill: var(--cfc-white);
}

.footer-review-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--cfc-yellow) !important;
  font-weight: 600;
  margin-top: 4px;
}

.footer-review-link:hover {
  color: var(--cfc-white) !important;
}

/* ============================================
   PAGE TEMPLATES — GENERAL INNER PAGES
   ============================================ */
.page-hero {
  background: var(--cfc-dark);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(214,46,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--cfc-white);
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  color: var(--cfc-grey);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.page-hero .breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--cfc-grey);
  position: relative;
}

.page-hero .breadcrumbs a { color: var(--cfc-red); }
.page-hero .breadcrumbs a:hover { text-decoration: underline; }

.page-content {
  padding: var(--section-pad) 0;
}

.page-content .container {
  max-width: 900px;
}

/* Content Typography */
.entry-content h2 {
  margin: 40px 0 16px;
  font-size: 1.8rem;
}

.entry-content h3 {
  margin: 32px 0 12px;
  font-size: 1.3rem;
}

.entry-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--cfc-mid-grey);
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}

.entry-content li {
  margin-bottom: 8px;
  color: var(--cfc-mid-grey);
  line-height: 1.7;
  list-style: inherit;
}

.entry-content img {
  border-radius: 8px;
  margin: 24px 0;
}

.entry-content a {
  color: var(--cfc-red);
  text-decoration: underline;
}

.entry-content a:hover { color: var(--cfc-red-dark); }

/* ============================================
   CITY PAGE TEMPLATE
   ============================================ */
.city-hero {
  background: var(--cfc-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.city-hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
}

.city-hero h1 { color: var(--cfc-white); margin-bottom: 16px; }
.city-hero p { color: var(--cfc-light-grey); font-size: 1.1rem; line-height: 1.7; margin-bottom: 24px; }

.city-content-section {
  padding: var(--section-pad) 0;
}

.city-content-section:nth-child(even) {
  background: var(--cfc-off-white);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.pricing-card {
  background: var(--cfc-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border: 2px solid var(--cfc-red);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--cfc-red);
  color: var(--cfc-white);
  padding: 4px 16px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0 0 4px 4px;
}

.pricing-card-header {
  padding: 32px 28px 20px;
  text-align: center;
  border-bottom: 1px solid var(--cfc-off-white);
}

.pricing-card-header h3 { margin-bottom: 8px; }

.pricing-card-header .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cfc-red);
}

.pricing-card-header .price-note {
  font-size: 0.85rem;
  color: var(--cfc-grey);
}

.pricing-card-body {
  padding: 24px 28px 28px;
}

.pricing-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--cfc-mid-grey);
  border-bottom: 1px solid var(--cfc-off-white);
  list-style: none;
}

.pricing-card-body li:last-child { border-bottom: none; }

.pricing-card-body li svg {
  width: 18px; height: 18px;
  fill: var(--cfc-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form .form-group { margin-bottom: 20px; }

.contact-form .btn {
  padding: 16px 40px;
}

.contact-info-cards {
  display: grid;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--cfc-off-white);
  border-radius: 8px;
  align-items: flex-start;
}

.contact-info-card svg {
  width: 24px; height: 24px;
  fill: var(--cfc-red);
  flex-shrink: 0;
}

.contact-info-card h4 { margin-bottom: 4px; }
.contact-info-card p {
  font-size: 0.9rem;
  color: var(--cfc-mid-grey);
  line-height: 1.5;
}

/* ============================================
   BLOG / SINGLE POST
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--cfc-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--cfc-grey);
  margin-bottom: 8px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-card-content h3 a { color: var(--cfc-dark); }
.blog-card-content h3 a:hover { color: var(--cfc-red); }

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--cfc-grey);
  line-height: 1.6;
}

.blog-card-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cfc-red);
}

.blog-card-content .read-more:hover { gap: 10px; }

/* Single post */
.single-post-header {
  max-width: 800px;
  margin: 0 auto 40px;
}

.single-post-header .post-meta {
  font-size: 0.85rem;
  color: var(--cfc-grey);
  margin-bottom: 16px;
}

.single-post-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

.single-post-featured {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 8px;
  overflow: hidden;
}

.single-post-featured img {
  width: 100%;
  height: auto;
}

/* Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.sidebar-widget {
  background: var(--cfc-off-white);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--cfc-dark);
  background: var(--cfc-off-white);
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: var(--cfc-red);
  color: var(--cfc-white);
}

.pagination .current {
  background: var(--cfc-red);
  color: var(--cfc-white);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.about-value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--cfc-off-white);
  border-radius: 8px;
}

.about-value-card svg {
  width: 40px; height: 40px;
  fill: var(--cfc-red);
  margin-bottom: 16px;
}

.about-value-card h3 { margin-bottom: 8px; }
.about-value-card p { font-size: 0.9rem; color: var(--cfc-grey); }

/* ============================================
   USED AUTO PARTS PAGE
   ============================================ */
.parts-intro {
  padding: var(--section-pad) 0;
}

.parts-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.parts-intro-content h2 {
  margin-bottom: 16px;
}

.parts-intro-content > p {
  font-size: 1.05rem;
  color: var(--cfc-mid-grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.parts-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.parts-highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--cfc-dark);
}

.parts-highlight svg {
  width: 18px;
  height: 18px;
  fill: var(--cfc-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.parts-intro-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.parts-intro-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.parts-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.parts-veteran-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cfc-yellow);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cfc-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.parts-veteran-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--cfc-dark);
}

/* Parts Request Bar */
.parts-request-bar {
  background: var(--cfc-dark);
  padding: 0;
  border-top: 3px solid var(--cfc-red);
}

/* Yard Info / Exchange Policy */
.parts-yard-info {
  padding: var(--section-pad) 0;
  background: var(--cfc-white);
}

.yard-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.yard-info-card {
  background: var(--cfc-off-white);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  border-top: 4px solid var(--cfc-red);
}

.yard-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(214, 46, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.yard-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--cfc-red);
}

.yard-info-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.yard-info-card > p {
  color: var(--cfc-mid-grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.yard-info-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yard-info-option {
  background: var(--cfc-white);
  padding: 20px;
  border-radius: 6px;
  border-left: 3px solid var(--cfc-yellow);
}

.yard-info-option strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cfc-dark);
  display: block;
  margin-bottom: 4px;
}

.yard-info-option p {
  font-size: 0.9rem;
  color: var(--cfc-mid-grey);
  line-height: 1.6;
  margin: 0;
}

.yard-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.yard-info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--cfc-mid-grey);
  line-height: 1.6;
}

.yard-info-list-item svg {
  width: 18px;
  height: 18px;
  fill: var(--cfc-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.yard-info-list-item strong {
  color: var(--cfc-dark);
}

.yard-info-note {
  font-size: 0.88rem;
  color: var(--cfc-grey);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .yard-info-grid { grid-template-columns: 1fr; }
  .yard-info-card { padding: 28px 24px; }
}

.parts-request-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.parts-request-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cfc-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.parts-request-subtitle {
  font-size: 0.9rem;
  color: var(--cfc-grey);
  margin-top: 2px;
}

.parts-request-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Parts Category Grid */
.parts-categories {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.parts-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.parts-category-card {
  background: var(--cfc-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.parts-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.parts-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--cfc-dark);
  border-bottom: 3px solid var(--cfc-red);
}

.parts-category-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: rgba(214, 46, 39, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parts-category-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--cfc-red);
}

.parts-category-header h3 {
  color: var(--cfc-white);
  font-size: 1.05rem;
  margin: 0;
}

.parts-category-list {
  padding: 20px 24px;
  list-style: none;
  margin: 0;
}

.parts-category-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--cfc-mid-grey);
  border-bottom: 1px solid var(--cfc-off-white);
}

.parts-category-list li:last-child {
  border-bottom: none;
}

.parts-category-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--cfc-red);
  flex-shrink: 0;
}

/* Parts Editor Content */
.parts-editor-content {
  padding: var(--section-pad) 0;
}

@media (max-width: 1024px) {
  .parts-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .parts-category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .parts-highlights { grid-template-columns: 1fr; }
  .parts-category-grid { grid-template-columns: 1fr; }
  .parts-hero-img { height: 320px; }
  .parts-request-inner { flex-direction: column; text-align: center; padding: 24px 0; }
  .parts-intro-ctas { justify-content: center; }
}

/* ============================================
   SCRAP METAL PRICE CALLOUT
   ============================================ */
.scrap-price-callout {
  margin: 48px 0 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.scrap-price-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--cfc-dark);
  border-radius: 8px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--cfc-yellow);
}

.scrap-price-inner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.04));
  pointer-events: none;
}

.scrap-price-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrap-price-icon svg {
  fill: var(--cfc-yellow);
}

.scrap-price-content {
  flex: 1;
}

.scrap-price-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cfc-yellow);
  margin-bottom: 4px;
}

.scrap-price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cfc-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.scrap-price-value span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cfc-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scrap-price-note {
  font-size: 0.85rem;
  color: var(--cfc-grey);
  line-height: 1.5;
  max-width: 480px;
}

.scrap-price-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .scrap-price-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    border-left: none;
    border-top: 4px solid var(--cfc-yellow);
  }

  .scrap-price-note {
    max-width: none;
  }
}

/* ============================================
   PRICING FACTORS
   ============================================ */
.pricing-factors {
  max-width: 900px;
  margin: 60px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--cfc-off-white);
}

.pricing-factors h2 {
  margin-bottom: 24px;
  text-align: center;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 0;
}

.factor-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--cfc-off-white);
  border-radius: 8px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.factor-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--cfc-shadow-sm, 0 2px 8px rgba(0,0,0,0.15));
}

.factor-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: rgba(214, 46, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.factor-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--cfc-red);
}

.factor-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--cfc-dark);
}

.factor-card p {
  font-size: 0.88rem;
  color: var(--cfc-grey);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--cfc-off-white);
}

.faq-section h2 {
  margin-bottom: 32px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--cfc-off-white);
  padding: 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cfc-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--cfc-red);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--cfc-red);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--cfc-mid-grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   COMPARISON / WHY CFC PAGE
   ============================================ */

/* The Truth Section */
.vs-truth { padding: var(--section-pad) 0; }

.vs-truth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vs-truth-content h2 { margin-bottom: 16px; }
.vs-truth-content > p { font-size: 1rem; color: var(--cfc-mid-grey); line-height: 1.8; margin-bottom: 14px; }

/* Paths Comparison (Their Way vs Our Way) */
.vs-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vs-path {
  border-radius: 10px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.vs-path-bad {
  background: var(--cfc-dark);
  border: 1px solid rgba(214,46,39,0.2);
}

.vs-path-good {
  background: var(--cfc-dark);
  border: 1px solid rgba(39,174,96,0.25);
}

.vs-path-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vs-path-bad .vs-path-label { color: var(--cfc-red-light, #e84840); }
.vs-path-good .vs-path-label { color: #4caf50; }

.vs-path-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.vs-path-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--cfc-light-grey, #ccc);
  line-height: 1.4;
}

.vs-path-num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.vs-path-bad .vs-path-num { background: rgba(214,46,39,0.15); color: var(--cfc-red-light, #e84840); }
.vs-path-good .vs-path-num { background: rgba(39,174,96,0.15); color: #4caf50; }

.vs-path-result {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 6px;
  text-align: center;
}

.vs-path-result-bad { background: rgba(214,46,39,0.1); }
.vs-path-result-good { background: rgba(39,174,96,0.1); }

.vs-path-result-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.vs-path-result-bad .vs-path-result-label { color: var(--cfc-red-light, #e84840); }
.vs-path-result-good .vs-path-result-label { color: #4caf50; }

.vs-path-result-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vs-path-result-bad .vs-path-result-value { color: var(--cfc-red-light, #e84840); }
.vs-path-result-good .vs-path-result-value { color: var(--cfc-yellow); }

/* Comparison Table */
.vs-table-section {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.vs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--cfc-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.vs-table thead th {
  padding: 24px 20px;
  text-align: center;
  vertical-align: bottom;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--cfc-off-white);
}

.vs-table thead th:first-child { width: 24%; }

.vs-table-logo {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.vs-table thead th span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cfc-grey);
  font-weight: 400;
}

.vs-table thead .vs-table-cfc {
  background: var(--cfc-dark);
  color: var(--cfc-white);
  border-bottom-color: var(--cfc-red);
}

.vs-table thead .vs-table-cfc .vs-table-logo { color: var(--cfc-yellow); }
.vs-table thead .vs-table-cfc span { color: var(--cfc-grey); }

.vs-table tbody td {
  padding: 16px 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--cfc-off-white);
  text-align: center;
  vertical-align: middle;
}

.vs-table tbody tr:last-child td { border-bottom: none; }

.vs-table-feature {
  text-align: left !important;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.88rem !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cfc-dark);
}

.vs-table tbody .vs-table-cfc {
  background: rgba(214, 46, 39, 0.03);
  font-weight: 500;
  color: var(--cfc-dark);
}

.vs-table tbody .vs-table-cfc svg { width: 18px; height: 18px; fill: #27ae60; vertical-align: middle; margin-right: 4px; }
.vs-table tbody .vs-table-national svg, .vs-table tbody .vs-table-private svg { width: 18px; height: 18px; fill: var(--cfc-red); vertical-align: middle; margin-right: 4px; }

.vs-table tbody .vs-table-national, .vs-table tbody .vs-table-private {
  color: var(--cfc-mid-grey);
}

/* VS Block Sections */
.vs-national { padding: var(--section-pad) 0; }
.vs-private { padding: var(--section-pad) 0; background: var(--cfc-off-white); }

.vs-block {
  background: var(--cfc-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.vs-private .vs-block { background: var(--cfc-white); }

.vs-block-header {
  background: var(--cfc-dark);
  padding: 36px 40px;
  text-align: center;
}

.vs-block-header h2 { color: var(--cfc-white); margin-bottom: 8px; font-size: clamp(1.4rem, 3vw, 2rem); }

.vs-block-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.vs-block-badge-them { background: rgba(214,46,39,0.15); color: var(--cfc-red-light, #e84840); }

.vs-block-names {
  font-size: 0.85rem;
  color: var(--cfc-grey);
  margin: 0;
}

.vs-block-content { padding: 40px; }

.vs-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vs-block-them, .vs-block-us { }

.vs-block-them h3, .vs-block-us h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.vs-block-them > p, .vs-block-us > p {
  font-size: 0.93rem;
  color: var(--cfc-mid-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.vs-block-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.vs-block-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 6px;
}

.vs-block-list-bad { background: rgba(214,46,39,0.04); color: var(--cfc-mid-grey); }
.vs-block-list-good { background: rgba(39,174,96,0.06); color: var(--cfc-dark); font-weight: 500; }

.vs-block-list-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.vs-block-list-bad svg { fill: var(--cfc-red); }
.vs-block-list-good svg { fill: #27ae60; }

.vs-num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.vs-block-list-bad .vs-num { background: rgba(214,46,39,0.1); color: var(--cfc-red); }
.vs-block-list-good .vs-num { background: rgba(39,174,96,0.12); color: #27ae60; }

.vs-block-note {
  font-size: 0.85rem;
  color: var(--cfc-grey);
  line-height: 1.6;
  padding: 14px 16px;
  background: var(--cfc-off-white);
  border-radius: 6px;
  border-left: 3px solid var(--cfc-red);
  margin-top: 16px;
}

.vs-block-risks h4 {
  font-size: 0.9rem;
  margin: 20px 0 10px;
  color: var(--cfc-red);
}

.vs-block-bottom-line {
  padding: 14px 16px;
  background: rgba(39,174,96,0.06);
  border-radius: 6px;
  border-left: 3px solid #27ae60;
  font-size: 0.9rem;
  color: var(--cfc-dark);
  margin-top: 16px;
  margin-bottom: 0;
}

/* Bottom Line CTA */
.vs-bottom-line {
  padding: var(--section-pad) 0;
  background: var(--cfc-dark);
}

.vs-bottom-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vs-bottom-inner .section-label { color: var(--cfc-yellow); }
.vs-bottom-inner h2 { color: var(--cfc-white); margin-bottom: 16px; }
.vs-bottom-inner > p { color: var(--cfc-grey); font-size: 1.05rem; line-height: 1.7; margin-bottom: 40px; }

.vs-bottom-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.vs-bottom-point {
  text-align: left;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vs-bottom-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,197,24,0.2);
}

.vs-bottom-icon svg { width: 22px; height: 22px; fill: var(--cfc-yellow); }

.vs-bottom-point strong {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cfc-white);
  display: block;
  margin-bottom: 4px;
}

.vs-bottom-point p { font-size: 0.85rem; color: var(--cfc-grey); line-height: 1.5; margin: 0; }

.vs-bottom-cta { margin-top: 8px; }

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

.vs-bottom-cta-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--cfc-grey);
  margin-top: 12px;
}

/* VS FAQ */
.vs-faq {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .vs-truth-grid { grid-template-columns: 1fr; gap: 40px; }
  .vs-block-grid { grid-template-columns: 1fr; gap: 32px; }
  .vs-bottom-points { grid-template-columns: 1fr; gap: 20px; }
  .vs-block-content { padding: 28px 24px; }
  .vs-block-header { padding: 28px 24px; }
}

@media (max-width: 768px) {
  .vs-table { min-width: 700px; }
  .vs-bottom-inner { text-align: left; }
  .vs-bottom-cta { text-align: center; }
  .vs-paths { grid-template-columns: 1fr; }
}

/* ============================================
   FREE JUNK CAR REMOVAL PAGE
   ============================================ */
.removal-intro {
  padding: var(--section-pad) 0;
}

.removal-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.removal-intro-content h2 { margin-bottom: 16px; }
.removal-intro-content > p { font-size: 1.05rem; color: var(--cfc-mid-grey); line-height: 1.8; margin-bottom: 16px; }

.removal-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.removal-stat { text-align: center; flex: 1; }

.removal-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cfc-red);
  line-height: 1;
}

.removal-stat-num span {
  font-size: 1.2rem;
  vertical-align: super;
}

.removal-stat-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-grey);
  margin-top: 6px;
}

.removal-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.removal-intro-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.removal-hero-img { width: 100%; height: 480px; object-fit: cover; }

.removal-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cfc-yellow);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cfc-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.removal-badge svg { width: 18px; height: 18px; fill: var(--cfc-dark); }

/* Removal Timeline */
.removal-timeline {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.removal-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.removal-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 3px;
  background: linear-gradient(to bottom, var(--cfc-red), var(--cfc-yellow));
  border-radius: 3px;
}

.removal-step {
  display: flex;
  gap: 28px;
  padding-bottom: 44px;
  position: relative;
}

.removal-step:last-child { padding-bottom: 0; }

.removal-step-num {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--cfc-dark);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border: 3px solid var(--cfc-off-white);
}

.removal-step-content { padding-top: 6px; }

.removal-step-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cfc-red);
  background: rgba(214, 46, 39, 0.08);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.removal-step-content h3 { margin-bottom: 8px; font-size: 1.2rem; }
.removal-step-content p { font-size: 0.95rem; color: var(--cfc-mid-grey); line-height: 1.7; }

/* Remote Pickup */
.removal-remote {
  padding: var(--section-pad) 0;
}

.removal-remote-card {
  background: var(--cfc-dark);
  border-radius: 12px;
  padding: 48px;
  border-left: 5px solid var(--cfc-yellow);
}

.removal-remote-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.removal-remote-content h2 { color: var(--cfc-white); margin-bottom: 16px; }
.removal-remote-content > p { color: var(--cfc-light-grey, #ccc); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.removal-remote-content .section-label { color: var(--cfc-yellow); }

.removal-remote-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.removal-remote-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cfc-light-grey, #ccc);
  font-size: 0.93rem;
  line-height: 1.6;
}

.removal-remote-step svg { width: 18px; height: 18px; fill: var(--cfc-yellow); flex-shrink: 0; margin-top: 3px; }
.removal-remote-step strong { color: var(--cfc-white); }

.removal-remote-note {
  font-size: 0.85rem;
  color: var(--cfc-grey);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}

.removal-remote-icon-wrap { text-align: center; }

.removal-remote-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(245, 197, 24, 0.2);
}

.removal-remote-icon svg { width: 44px; height: 44px; fill: var(--cfc-yellow); }

.removal-remote-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.removal-remote-payments span {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--cfc-light-grey, #ccc);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Where We Pick Up */
.removal-where {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.removal-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.removal-location-card {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.removal-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.removal-location-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 46, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.removal-location-icon svg { width: 20px; height: 20px; fill: var(--cfc-red); }

.removal-location-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.removal-location-card p { font-size: 0.9rem; color: var(--cfc-mid-grey); line-height: 1.6; }

.removal-anywhere-note {
  text-align: center;
  color: var(--cfc-mid-grey);
  font-size: 0.95rem;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--cfc-white);
  border-radius: 8px;
  border-left: 4px solid var(--cfc-red);
}

.removal-anywhere-note strong { color: var(--cfc-dark); }

/* Coverage Area */
.removal-coverage {
  padding: var(--section-pad) 0;
}

.removal-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.removal-coverage-content h2 { margin-bottom: 16px; }
.removal-coverage-content > p { font-size: 1.05rem; color: var(--cfc-mid-grey); line-height: 1.8; margin-bottom: 20px; }

.removal-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.removal-city-tag {
  display: inline-block;
  background: var(--cfc-off-white);
  color: var(--cfc-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s;
}

.removal-city-tag:hover {
  background: var(--cfc-red);
  color: var(--cfc-white);
  border-color: var(--cfc-red);
}

.removal-coverage-note {
  font-size: 0.88rem;
  color: var(--cfc-grey);
  font-style: italic;
}

.removal-coverage-map { position: relative; }

.removal-map-embed {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.removal-map-embed iframe { width: 100%; height: 100%; }

.removal-map-overlay { position: absolute; top: 16px; left: 16px; }

.removal-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cfc-dark);
  color: var(--cfc-white);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.removal-map-badge svg { width: 16px; height: 16px; fill: var(--cfc-red); }

/* What We Pick Up Grid */
.removal-vehicles {
  padding: var(--section-pad) 0;
  background: var(--cfc-dark);
}

.removal-vehicles .section-label { color: var(--cfc-red-light, #e84840); }
.removal-vehicles .section-header h2 { color: var(--cfc-white); }
.removal-vehicles .section-header p { color: var(--cfc-grey); }

.removal-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.removal-vehicle-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cfc-dark-grey, #2d2d2d);
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.removal-vehicle-item:hover {
  border-color: rgba(214, 46, 39, 0.3);
  transform: translateY(-2px);
}

.removal-vehicle-item svg { width: 22px; height: 22px; fill: var(--cfc-red); flex-shrink: 0; margin-top: 2px; }
.removal-vehicle-item strong { font-family: var(--font-heading); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cfc-white); display: block; margin-bottom: 4px; }
.removal-vehicle-item p { font-size: 0.88rem; color: var(--cfc-grey); line-height: 1.5; margin: 0; }

/* What to Have Ready */
.removal-docs {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.removal-docs-inner {
  background: var(--cfc-white);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-top: 4px solid var(--cfc-red);
}

.removal-docs-header {
  text-align: center;
  margin-bottom: 36px;
}

.removal-docs-header h2 { margin-bottom: 8px; }
.removal-docs-header p { color: var(--cfc-grey); font-size: 1rem; }

.removal-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.removal-doc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.removal-doc-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--cfc-red);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.removal-doc-item strong { font-family: var(--font-heading); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cfc-dark); display: block; margin-bottom: 4px; }
.removal-doc-item p { font-size: 0.88rem; color: var(--cfc-mid-grey); line-height: 1.6; margin: 0; }

/* Removal FAQ */
.removal-faq {
  padding: var(--section-pad) 0;
}

/* Meet Our Drivers */
.removal-drivers {
  padding: var(--section-pad) 0;
  background: var(--cfc-dark);
}

.removal-drivers .section-label { color: var(--cfc-red-light, #e84840); }
.removal-drivers .section-header h2 { color: var(--cfc-white); }
.removal-drivers .section-header p { color: var(--cfc-grey); }

.removal-drivers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.removal-driver-card {
  text-align: center;
}

.removal-driver-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.removal-driver-card:hover .removal-driver-photo {
  border-color: var(--cfc-red);
  transform: scale(1.04);
}

.removal-driver-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.removal-driver-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cfc-dark-grey, #2d2d2d), #3a3a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
}

.removal-driver-info h3 {
  color: var(--cfc-white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.removal-driver-role {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cfc-yellow);
}

.removal-drivers-note {
  text-align: center;
  color: var(--cfc-grey);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 1024px) {
  .removal-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .removal-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .removal-coverage-grid { grid-template-columns: 1fr; }
  .removal-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .removal-remote-grid { grid-template-columns: 1fr; }
  .removal-remote-icon-wrap { display: flex; align-items: center; gap: 20px; justify-content: flex-start; }
  .removal-remote-icon { margin: 0; width: 72px; height: 72px; }
  .removal-remote-icon svg { width: 32px; height: 32px; }
  .removal-driver-photo { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
  .removal-stats { gap: 16px; }
  .removal-stat-num { font-size: 1.8rem; }
  .removal-hero-img { height: 320px; }
  .removal-ctas { justify-content: center; }
  .removal-intro-content { text-align: center; }
  .removal-steps::before { left: 28px; }
  .removal-locations-grid { grid-template-columns: 1fr; }
  .removal-vehicles-grid { grid-template-columns: 1fr; }
  .removal-docs-inner { padding: 32px 24px; }
  .removal-docs-grid { grid-template-columns: 1fr; }
  .removal-remote-card { padding: 32px 24px; }
  .removal-map-embed { height: 280px; }
  .removal-drivers-grid { grid-template-columns: 1fr; gap: 40px; }
  .removal-driver-photo { width: 180px; height: 180px; }
}

/* ============================================
   CATALYTIC CONVERTER PAGE
   ============================================ */
.cat-intro {
  padding: var(--section-pad) 0;
}

.cat-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.cat-intro-content h2 { margin-bottom: 16px; }
.cat-intro-content > p { font-size: 1.05rem; color: var(--cfc-mid-grey); line-height: 1.8; margin-bottom: 16px; }

.cat-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}

.cat-highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--cfc-dark);
}

.cat-highlight svg { width: 18px; height: 18px; fill: var(--cfc-red); flex-shrink: 0; margin-top: 2px; }

.cat-intro-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.cat-intro-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.cat-hero-img { width: 100%; height: 460px; object-fit: cover; }

.cat-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cfc-yellow);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cfc-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.cat-badge svg { width: 18px; height: 18px; fill: var(--cfc-dark); }

/* How We Price */
.cat-pricing-section {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.cat-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-pricing-card {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: all 0.3s ease;
}

.cat-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.cat-pricing-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cfc-red);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cat-pricing-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.cat-pricing-card p { font-size: 0.93rem; color: var(--cfc-mid-grey); line-height: 1.7; }

.cat-pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cfc-dark);
  color: var(--cfc-light-grey, #ccc);
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 32px;
  font-size: 0.93rem;
  line-height: 1.7;
  border-left: 4px solid var(--cfc-yellow);
}

.cat-pricing-note strong { color: var(--cfc-yellow); display: block; margin-bottom: 4px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.95rem; }

.cat-pricing-note-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-pricing-note-icon svg { width: 20px; height: 20px; fill: var(--cfc-yellow); }

/* On-Site Cutting */
.cat-cutting {
  padding: var(--section-pad) 0;
}

.cat-cutting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cat-cutting-content h2 { margin-bottom: 16px; }
.cat-cutting-content > p { font-size: 1.05rem; color: var(--cfc-mid-grey); line-height: 1.8; margin-bottom: 16px; }

.cat-cutting-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.cat-cutting-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cfc-off-white);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cfc-dark);
  border-left: 3px solid var(--cfc-red);
}

.cat-cutting-step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--cfc-red);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-cutting-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.cat-cutting-img { width: 100%; height: 400px; object-fit: cover; }

/* What We Buy & ID Requirements */
.cat-details {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.cat-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.cat-details-card {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 36px 32px;
  border-top: 4px solid var(--cfc-red);
}

.cat-details-alert {
  border-top-color: var(--cfc-yellow);
  background: var(--cfc-dark);
}

.cat-details-alert h3 { color: var(--cfc-white); }
.cat-details-alert p { color: var(--cfc-light-grey, #ccc); }
.cat-details-alert .cat-details-list li { color: var(--cfc-light-grey, #ccc); border-bottom-color: rgba(255,255,255,0.06); }
.cat-details-alert .cat-details-list li strong { color: var(--cfc-yellow); }

.cat-details-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 46, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cat-details-icon svg { width: 20px; height: 20px; fill: var(--cfc-red); }

.cat-details-alert .cat-details-icon { background: rgba(245, 197, 24, 0.12); }
.cat-details-alert .cat-details-icon svg { fill: var(--cfc-yellow); }

.cat-details-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.cat-details-card > p { font-size: 0.93rem; color: var(--cfc-mid-grey); line-height: 1.7; margin-bottom: 16px; }

.cat-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-details-list li {
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--cfc-mid-grey);
  line-height: 1.6;
  border-bottom: 1px solid var(--cfc-off-white);
}

.cat-details-list li:last-child { border-bottom: none; }
.cat-details-list li strong { color: var(--cfc-dark); }

.cat-details-warning {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 12px 16px;
  background: rgba(214, 46, 39, 0.1);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cfc-red-light, #e84840);
  border-left: 3px solid var(--cfc-red);
}

/* Cat FAQ */
.cat-faq {
  padding: var(--section-pad) 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .cat-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-pricing-grid { grid-template-columns: 1fr; }
  .cat-cutting-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-details-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cat-highlights { grid-template-columns: 1fr; }
  .cat-hero-img { height: 320px; }
  .cat-cutting-img { height: 300px; }
  .cat-intro-ctas { justify-content: center; }
  .cat-intro-content { text-align: center; }
  .cat-details-card { padding: 28px 24px; }
}

/* ============================================
   NO TITLE JUNK CARS PAGE
   ============================================ */
.notitle-intro {
  padding: var(--section-pad) 0;
}

.notitle-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.notitle-intro-content h2 {
  margin-bottom: 16px;
}

.notitle-intro-content > p {
  font-size: 1.05rem;
  color: var(--cfc-mid-grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.notitle-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.notitle-intro-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.notitle-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Requirements Cards */
.notitle-requirements {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.notitle-req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.notitle-req-card {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.notitle-req-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.notitle-req-yes {
  border-top: 4px solid var(--cfc-red);
}

.notitle-req-info {
  border-top: 4px solid var(--cfc-yellow);
}

.notitle-req-badge {
  display: inline-block;
  background: var(--cfc-red);
  color: var(--cfc-white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.notitle-req-badge-alt {
  background: var(--cfc-yellow);
  color: var(--cfc-dark);
}

.notitle-req-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 46, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.notitle-req-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--cfc-red);
}

.notitle-req-info .notitle-req-icon {
  background: rgba(245, 197, 24, 0.12);
}

.notitle-req-info .notitle-req-icon svg {
  fill: var(--cfc-yellow-dark, #d4a80f);
}

.notitle-req-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.notitle-req-card p {
  font-size: 0.93rem;
  color: var(--cfc-mid-grey);
  line-height: 1.7;
}

/* Process Steps (Timeline) */
.notitle-process {
  padding: var(--section-pad) 0;
}

.notitle-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.notitle-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 3px;
  background: linear-gradient(to bottom, var(--cfc-red), var(--cfc-yellow));
  border-radius: 3px;
}

.notitle-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.notitle-step:last-child {
  padding-bottom: 0;
}

.notitle-step-num {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--cfc-dark);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.notitle-step-content {
  padding-top: 10px;
}

.notitle-step-content h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.notitle-step-content p {
  font-size: 0.95rem;
  color: var(--cfc-mid-grey);
  line-height: 1.7;
}

/* Situations Grid */
.notitle-situations {
  padding: var(--section-pad) 0;
  background: var(--cfc-dark);
}

.notitle-situations .section-label {
  color: var(--cfc-red-light, #e84840);
}

.notitle-situations .section-header h2 {
  color: var(--cfc-white);
}

.notitle-situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.notitle-sit-card {
  background: var(--cfc-dark-grey, #2d2d2d);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.notitle-sit-card:hover {
  border-color: rgba(214, 46, 39, 0.3);
  transform: translateY(-2px);
}

.notitle-sit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cfc-yellow);
  margin-bottom: 8px;
}

.notitle-sit-card p {
  font-size: 0.93rem;
  color: var(--cfc-light-grey, #cccccc);
  line-height: 1.7;
}

/* No Title FAQ */
.notitle-faq {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .notitle-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .notitle-req-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .notitle-req-grid { grid-template-columns: 1fr; }
  .notitle-situations-grid { grid-template-columns: 1fr; }
  .notitle-hero-img { height: 300px; }
  .notitle-ctas { justify-content: center; }
  .notitle-intro-content { text-align: center; }
  .notitle-steps::before { left: 24px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.alignwide { max-width: calc(var(--container) + 100px); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }

/* WordPress block alignment */
.wp-block-image.alignleft { float: left; margin-right: 24px; margin-bottom: 12px; }
.wp-block-image.alignright { float: right; margin-left: 24px; margin-bottom: 12px; }
.wp-block-image.aligncenter { text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .why-grid,
  .what-we-buy .container,
  .area-layout,
  .community-layout,
  .about-story,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .area-map { order: -1; }
  .community-image { order: -1; }
  .purchases-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .city-hero .container { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .factors-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .top-bar .top-bar-left { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone { font-size: 0.95rem; }
  .nav-phone svg { width: 16px; height: 16px; margin-right: 4px; }
  .nav-phone-number { display: none; }
  .nav-quote-btn { padding: 8px 14px !important; font-size: 0.78rem !important; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--cfc-dark);
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    z-index: 998;
  }
  .nav-links.active > ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-links.active .menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links.active .menu-item > a {
    padding: 14px 24px;
    width: 100%;
    display: block;
    font-size: 0.95rem;
  }

  /* Mobile: parent item with dropdown */
  .nav-links.active .has-dropdown {
    position: relative;
  }
  .nav-links.active .has-dropdown > a {
    padding-right: 50px;
  }
  .nav-links.active .dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cfc-grey);
    z-index: 2;
    transition: transform 0.25s, color 0.25s;
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.active .dropdown-toggle svg {
    width: 16px;
    height: 16px;
  }
  .nav-links.active .has-dropdown.open > .dropdown-toggle {
    transform: rotate(180deg);
    color: var(--cfc-yellow);
  }

  /* Mobile submenu: hidden by default, accordion style */
  .nav-links.active .sub-menu {
    display: none;
    position: static;
    min-width: 0;
    background: rgba(0,0,0,0.25);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    opacity: 1;
    transform: none;
  }
  .nav-links.active .has-dropdown.open > .sub-menu {
    display: flex;
    flex-direction: column;
    animation: mobileDropIn 0.25s ease;
  }
  @keyframes mobileDropIn {
    from { opacity: 0; max-height: 0; }
    to   { opacity: 1; max-height: 500px; }
  }
  .nav-links.active .sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .nav-links.active .sub-menu li:last-child {
    border-bottom: none;
  }
  .nav-links.active .sub-menu a {
    padding: 12px 24px 12px 36px !important;
    font-size: 0.85rem !important;
    color: var(--cfc-grey) !important;
    border-left: 3px solid transparent;
    transition: all 0.15s;
  }
  .nav-links.active .sub-menu a:hover {
    color: var(--cfc-white) !important;
    background: rgba(255,255,255,0.04) !important;
    border-left-color: var(--cfc-red);
  }
  .nav-links.active .sub-menu .current-menu-item a {
    color: var(--cfc-yellow) !important;
    border-left-color: var(--cfc-yellow);
  }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-phone-strip { transform: none; }
  .hero-phone-strip > * { transform: none; }
  .hero-phone-strip .number { font-size: 1.6rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .purchases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .buy-list { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; gap: 16px; }
  .why-image img, .what-we-buy-img img { height: 300px; }
  .area-map iframe { height: 300px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-features { flex-direction: column; gap: 12px; }
  .hero-form-card { padding: 28px 20px; }
  .city-grid { grid-template-columns: 1fr; }
  .purchases-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REVIEWS PAGE
   ============================================ */

.reviews-platforms { padding: var(--section-pad) 0; }

.reviews-platforms-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.reviews-platforms-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.reviews-platforms-text p { color: var(--cfc-grey); font-size: 1rem; }

.reviews-platform-cards { display: flex; gap: 16px; flex-shrink: 0; }

.reviews-platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border: 2px solid var(--cfc-off-white);
  border-radius: 8px;
  transition: all 0.2s;
  min-width: 240px;
}

.reviews-platform-card:hover {
  border-color: var(--cfc-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.reviews-platform-icon { width: 32px; height: 32px; flex-shrink: 0; }
.reviews-platform-card strong { display: block; font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.reviews-platform-card span { font-size: 0.78rem; color: var(--cfc-grey); }
.reviews-platform-arrow { width: 20px; height: 20px; fill: var(--cfc-grey); margin-left: auto; flex-shrink: 0; }

.reviews-section { padding: var(--section-pad) 0; background: var(--cfc-off-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.04);
}

.review-card-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-card-stars svg { width: 18px; height: 18px; fill: var(--cfc-yellow); }

.review-card blockquote {
  font-size: 0.92rem;
  color: var(--cfc-mid-grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card-footer { display: flex; align-items: center; gap: 12px; }

.review-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cfc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cfc-white);
}

.review-card-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cfc-dark);
  text-transform: uppercase;
}

.review-card-source { font-size: 0.78rem; color: var(--cfc-grey); }

@media (max-width: 1024px) {
  .reviews-platforms-inner { flex-direction: column; text-align: center; }
  .reviews-platform-cards { flex-direction: column; width: 100%; max-width: 360px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.page-hero-compact { padding: 60px 0 48px; }

.ty-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #27ae60;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Steps */
.ty-steps { padding: var(--section-pad) 0; }

.ty-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.ty-step-card {
  background: var(--cfc-off-white);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.ty-step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cfc-red);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ty-step-icon { margin-bottom: 12px; }
.ty-step-icon svg { width: 32px; height: 32px; fill: var(--cfc-dark); }

.ty-step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.ty-step-card p { font-size: 0.9rem; color: var(--cfc-mid-grey); line-height: 1.6; margin-bottom: 12px; }

.ty-step-time {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-red);
}

.ty-steps-callout {
  text-align: center;
  background: var(--cfc-dark);
  border-radius: 8px;
  padding: 20px 32px;
}

.ty-steps-callout p { color: var(--cfc-grey); margin: 0 0 4px; font-size: 0.92rem; }
.ty-steps-callout span { color: var(--cfc-white); font-weight: 600; }
.ty-steps-callout a { color: var(--cfc-yellow); font-weight: 700; }

/* Portal Link */
.ty-portal { padding: 48px 0 0; }
.ty-portal.ty-portal-top { padding: 0; margin-top: -20px; position: relative; z-index: 2; }

.ty-portal-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #bbf7d0;
  border-radius: 12px;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ty-portal-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ty-portal-icon svg { fill: white; }

.ty-portal-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ty-portal-content p { color: var(--cfc-mid-grey); font-size: 0.92rem; margin-bottom: 16px; }
.ty-portal-content .btn { font-size: 0.85rem; padding: 12px 28px; }
.ty-portal-note { font-size: 0.82rem !important; color: var(--cfc-grey) !important; margin-top: 8px !important; margin-bottom: 0 !important; }

.ty-spam-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 4px;
}

.ty-spam-notice svg {
  flex-shrink: 0;
  fill: #d97706;
  margin-top: 1px;
}

.ty-spam-notice p {
  color: #92400e !important;
  font-size: 0.85rem !important;
  margin: 0 !important;
  line-height: 1.5;
}

.ty-spam-notice strong {
  color: #78350f;
}

@media (max-width: 600px) {
  .ty-portal-card { flex-direction: column; text-align: center; align-items: center; }
  .ty-portal-content .btn { width: 100%; justify-content: center; }
  .ty-spam-notice { text-align: left; }
}

/* Video */
.ty-video { padding: var(--section-pad) 0; background: var(--cfc-off-white); }

.ty-video-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.ty-video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; }
.ty-video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.ty-video-placeholder {
  background: var(--cfc-dark);
  border-radius: 10px;
  padding: 80px 40px;
  text-align: center;
  color: var(--cfc-grey);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ty-video-placeholder svg { fill: var(--cfc-grey); opacity: 0.3; }
.ty-video-placeholder p { font-size: 1rem; font-weight: 600; margin: 0; }
.ty-video-placeholder-note { font-size: 0.8rem; max-width: 300px; line-height: 1.5; }

.ty-video-text h2 { margin-bottom: 16px; }
.ty-video-text p { color: var(--cfc-mid-grey); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }

/* Price Match */
.ty-price-match { padding: var(--section-pad) 0; }

.ty-price-match-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--cfc-dark);
  border-radius: 12px;
  padding: 48px;
}

.ty-price-match-badge {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--cfc-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.ty-price-match-badge svg { width: 28px; height: 28px; fill: var(--cfc-dark); }

.ty-price-match-content h2 {
  color: var(--cfc-white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.ty-price-match-content > p {
  color: var(--cfc-grey);
  font-size: 1rem;
  line-height: 1.7;
}

.ty-price-match-terms {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}

.ty-price-match-term {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cfc-light-grey);
  font-size: 0.9rem;
}

.ty-price-match-term svg { width: 18px; height: 18px; fill: #27ae60; flex-shrink: 0; }

.ty-price-match-action { color: var(--cfc-grey); font-size: 0.9rem; }
.ty-price-match-action a { color: var(--cfc-yellow); font-weight: 600; }

/* Comparison Table */
.ty-compare { padding: var(--section-pad) 0; background: var(--cfc-off-white); }

.ty-compare-table-wrap { overflow-x: auto; }

.ty-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--cfc-white);
  border-radius: 8px;
  overflow: hidden;
}

.ty-compare-table thead th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--cfc-dark);
  color: var(--cfc-grey);
  text-align: center;
  border-bottom: 2px solid var(--cfc-dark);
}

.ty-compare-table thead th.ty-compare-us {
  background: var(--cfc-red);
  color: var(--cfc-white);
  font-size: 0.95rem;
}

.ty-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--cfc-off-white);
  text-align: center;
  color: var(--cfc-mid-grey);
}

.ty-compare-table td.ty-compare-label {
  text-align: left;
  font-weight: 600;
  color: var(--cfc-dark);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ty-compare-table td.ty-compare-us {
  background: rgba(214,46,39,0.03);
  color: var(--cfc-dark);
  font-weight: 600;
}

.ty-compare-table td.ty-compare-us svg { width: 16px; height: 16px; fill: #27ae60; vertical-align: middle; margin-right: 4px; }

.ty-compare-table tr:last-child td { border-bottom: none; }

@media (max-width: 1024px) {
  .ty-video-layout { grid-template-columns: 1fr; gap: 32px; }
  .ty-price-match-inner { flex-direction: column; padding: 32px 28px; }
}

@media (max-width: 768px) {
  .ty-steps-grid { grid-template-columns: 1fr; }
  .ty-compare-table { font-size: 0.8rem; }
  .ty-compare-table th, .ty-compare-table td { padding: 10px 12px; }
}

/* ============================================
   QUOTE FORM PAGE
   ============================================ */

.quote-page { padding: var(--section-pad) 0; }

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* Progress Bar */
.quote-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--cfc-off-white);
  border-radius: 8px;
}

.quote-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.quote-progress-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cfc-white);
  border: 2px solid var(--cfc-light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cfc-grey);
  transition: all 0.3s;
}

.quote-progress-step span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cfc-grey);
  transition: color 0.3s;
}

.quote-progress-step.active .quote-progress-num {
  background: var(--cfc-red);
  border-color: var(--cfc-red);
  color: var(--cfc-white);
}

.quote-progress-step.active span { color: var(--cfc-dark); }

.quote-progress-step.completed .quote-progress-num {
  background: #27ae60;
  border-color: #27ae60;
  color: var(--cfc-white);
}

.quote-progress-step.completed span { color: #27ae60; }

.quote-progress-line {
  flex: 1;
  height: 2px;
  background: var(--cfc-light-grey);
  margin: 0 12px;
}

/* Steps */
.quote-step { display: none; }
.quote-step.active { display: block; animation: fadeIn 0.35s ease; }

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

.quote-step-header { margin-bottom: 28px; }
.quote-step-header h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 8px; }
.quote-step-header p { color: var(--cfc-grey); font-size: 0.95rem; }

/* Fields */
.quote-field { margin-bottom: 20px; }

.quote-field label, .quote-field-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cfc-dark);
  margin-bottom: 6px;
}

.quote-field .req { color: var(--cfc-red); }
.quote-field .optional { font-weight: 400; color: var(--cfc-grey); text-transform: none; font-size: 0.8rem; letter-spacing: 0; }

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cfc-dark);
  background: var(--cfc-white);
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.quote-field select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23888' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--cfc-red);
  box-shadow: 0 0 0 3px rgba(214,46,39,0.1);
}

.quote-field input.error,
.quote-field select.error,
.quote-field textarea.error,
.quote-condition-grid.error {
  border-color: var(--cfc-red) !important;
  box-shadow: 0 0 0 3px rgba(214,46,39,0.15);
}

.quote-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-field-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.quote-char-count {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--cfc-grey);
  margin-top: 4px;
}

/* Condition Cards */
.quote-condition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 2px;
}

.quote-condition-card {
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.quote-condition-card:hover {
  border-color: var(--cfc-dark);
  background: var(--cfc-off-white);
}

.quote-condition-card.active {
  border-color: var(--cfc-red);
  background: rgba(214,46,39,0.04);
}

.quote-condition-icon {
  margin-bottom: 8px;
}

.quote-condition-icon svg { width: 28px; height: 28px; fill: var(--cfc-grey); }
.quote-condition-card.active .quote-condition-icon svg { fill: var(--cfc-red); }

.quote-condition-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cfc-dark);
  margin-bottom: 4px;
}

.quote-condition-desc {
  font-size: 0.8rem;
  color: var(--cfc-grey);
  line-height: 1.4;
}

/* Title Toggle */
.quote-title-section { margin-bottom: 24px; }
.quote-title-section .quote-field-label { margin-bottom: 10px; }

.quote-title-options {
  display: flex;
  gap: 10px;
}

.quote-title-option {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--cfc-dark);
}

.quote-title-option:hover { border-color: var(--cfc-dark); }

.quote-title-option.active {
  border-color: var(--cfc-red);
  background: rgba(214,46,39,0.04);
  color: var(--cfc-red);
}

.quote-title-note {
  font-size: 0.82rem;
  color: var(--cfc-grey);
  margin-top: 8px;
  font-style: italic;
}

/* Step Actions */
.quote-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--cfc-off-white);
}

.quote-back-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cfc-grey);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}

.quote-back-btn:hover { color: var(--cfc-dark); }

.quote-submit-btn { min-width: 240px; justify-content: center; }

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quote-disclaimer {
  font-size: 0.78rem;
  color: var(--cfc-grey);
  margin-top: 16px;
  line-height: 1.5;
}

/* Feedback */
.quote-feedback { margin-bottom: 12px; font-size: 0.9rem; }
.quote-feedback-error { color: var(--cfc-red); font-weight: 600; }

/* Success State */
.quote-success {
  text-align: center;
  padding: 48px 24px;
  background: var(--cfc-off-white);
  border-radius: 12px;
}

.quote-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #27ae60;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.quote-success h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #27ae60;
}

.quote-success > p {
  color: var(--cfc-grey);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.quote-success-details {
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quote-success-detail strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.quote-success-detail p { color: var(--cfc-mid-grey); font-size: 0.92rem; margin: 0; }

.quote-success-or {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.quote-success-or span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cfc-grey);
}

/* Sidebar */
.quote-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-sidebar-card {
  border-radius: 10px;
  padding: 24px;
}

.quote-sidebar-phone {
  background: var(--cfc-dark);
  padding: 0;
}

.quote-sidebar-phone .quote-sidebar-card-inner {
  padding: 28px 24px;
  text-align: center;
}

.quote-sidebar-phone h3 {
  color: var(--cfc-white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.quote-sidebar-phone p { color: var(--cfc-grey); font-size: 0.9rem; margin-bottom: 16px; }

.quote-sidebar-hours {
  display: block;
  font-size: 0.8rem;
  color: var(--cfc-grey);
  margin-top: 10px;
}

.quote-sidebar-card:not(.quote-sidebar-phone) {
  background: var(--cfc-off-white);
}

.quote-sidebar-card h4 {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* Sidebar Steps */
.quote-sidebar-steps { display: flex; flex-direction: column; gap: 16px; }

.quote-sidebar-step {
  display: flex;
  gap: 12px;
}

.quote-sidebar-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--cfc-red);
  color: var(--cfc-white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.quote-sidebar-step strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.quote-sidebar-step p { font-size: 0.82rem; color: var(--cfc-grey); margin: 0; line-height: 1.5; }

/* Trust */
.quote-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-sidebar-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--cfc-mid-grey);
}

.quote-sidebar-check svg { width: 18px; height: 18px; fill: #27ae60; flex-shrink: 0; }

/* Quote responsive */
@media (max-width: 1024px) {
  .quote-layout { grid-template-columns: 1fr; gap: 40px; }
  .quote-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .quote-sidebar-phone { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .quote-field-row, .quote-field-row-3 { grid-template-columns: 1fr; }
  .quote-condition-grid { grid-template-columns: 1fr; }
  .quote-sidebar { grid-template-columns: 1fr; }
  .quote-progress-step span { display: none; }
  .quote-progress { justify-content: center; }
  .quote-title-options { flex-direction: column; }
}

/* ============================================
   LOCATIONS HUB PAGE
   ============================================ */

.loc-overview { padding: var(--section-pad) 0; }

.loc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.loc-overview-left h2 { margin-bottom: 16px; }
.loc-overview-left > p { color: var(--cfc-mid-grey); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }

.loc-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
}

.loc-stat { text-align: center; }

.loc-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cfc-dark);
  line-height: 1;
}

.loc-stat-num span {
  font-size: 1rem;
  color: var(--cfc-red);
}

.loc-stat-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-grey);
  margin-top: 4px;
}

.loc-map-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.loc-map-wrap iframe { width: 100%; height: 100%; }

.loc-map-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--cfc-dark);
  color: var(--cfc-yellow);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--cfc-shadow-md, 0 4px 20px rgba(0,0,0,0.25));
}

.loc-map-badge svg { width: 16px; height: 16px; fill: var(--cfc-yellow); }

/* Directory */
.loc-directory {
  padding: var(--section-pad) 0;
  background: var(--cfc-off-white);
}

.loc-region { margin-bottom: 48px; }
.loc-region:last-child { margin-bottom: 0; }

.loc-region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cfc-red);
}

.loc-region-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--cfc-dark);
  margin: 0;
}

.loc-region-header h3 svg { width: 20px; height: 20px; fill: var(--cfc-red); }

.loc-region-count {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-grey);
}

.loc-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.loc-city-card {
  display: flex;
  flex-direction: column;
  background: var(--cfc-white);
  border-radius: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  cursor: pointer;
}

.loc-city-card:hover {
  border-color: var(--cfc-red);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.loc-city-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.loc-city-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cfc-dark);
}

.loc-city-pop {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cfc-grey);
  white-space: nowrap;
}

.loc-city-desc {
  font-size: 0.88rem;
  color: var(--cfc-mid-grey);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
}

.loc-city-arrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.loc-city-arrow svg { width: 14px; height: 14px; fill: var(--cfc-red); }

.loc-city-card:hover .loc-city-arrow { gap: 8px; }

/* Not Listed */
.loc-not-listed { padding: var(--section-pad) 0; }

.loc-not-listed-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--cfc-dark);
  border-radius: 12px;
  padding: 40px 48px;
}

.loc-not-listed-content h2 {
  color: var(--cfc-white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.loc-not-listed-content p {
  color: var(--cfc-grey);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* Locations responsive */
@media (max-width: 1024px) {
  .loc-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-city-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-not-listed-inner { flex-direction: column; text-align: center; padding: 32px 28px; }
  .loc-not-listed-content p { max-width: none; }
}

@media (max-width: 768px) {
  .loc-city-grid { grid-template-columns: 1fr; }
  .loc-stats { gap: 20px; }
  .loc-stat-num { font-size: 1.8rem; }
  .loc-map-wrap { height: 300px; }
}

/* ============================================
   SINGLE BLOG POST
   ============================================ */

.single-post { padding: var(--section-pad) 0; }

.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Header */
.single-post-header { margin-bottom: 32px; }

.single-post-cats a {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cfc-white);
  background: var(--cfc-red);
  padding: 4px 12px;
  border-radius: 3px;
  margin-right: 6px;
  margin-bottom: 12px;
}

.single-post-cats a:hover { background: var(--cfc-red-dark, #b8231d); }

.single-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--cfc-grey);
}

.single-post-sep { color: var(--cfc-light-grey); }

/* Featured Image */
.single-post-featured {
  margin-bottom: 36px;
  border-radius: 8px;
  overflow: hidden;
}

.single-post-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body Content */
.single-post-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 40px 0 16px;
  padding-top: 12px;
}

.single-post-body h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 32px 0 12px;
}

.single-post-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cfc-mid-grey, #444);
  margin-bottom: 18px;
}

.single-post-body ul, .single-post-body ol {
  margin: 0 0 18px 24px;
  list-style: disc;
}

.single-post-body ol { list-style: decimal; }

.single-post-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cfc-mid-grey, #444);
  margin-bottom: 8px;
}

.single-post-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--cfc-red);
  background: var(--cfc-off-white);
  border-radius: 0 6px 6px 0;
}

.single-post-body blockquote p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cfc-dark);
  margin: 0;
}

.single-post-body strong { color: var(--cfc-dark); }

.single-post-body a {
  color: var(--cfc-red);
  text-decoration: underline;
  text-decoration-color: rgba(214,46,39,0.3);
  text-underline-offset: 2px;
}

.single-post-body a:hover {
  text-decoration-color: var(--cfc-red);
}

/* Callout box for blog posts */
.blog-callout {
  background: var(--cfc-dark);
  color: var(--cfc-white);
  padding: 28px 32px;
  border-radius: 8px;
  margin: 32px 0;
}

.blog-callout h3 {
  color: var(--cfc-yellow);
  margin: 0 0 8px !important;
  padding: 0 !important;
  font-size: 1.1rem !important;
}

.blog-callout p {
  color: var(--cfc-light-grey) !important;
  margin-bottom: 12px !important;
}

.blog-callout p:last-child { margin-bottom: 0 !important; }

.blog-callout a {
  color: var(--cfc-yellow) !important;
  text-decoration-color: rgba(245,197,24,0.3) !important;
}

/* Tags */
.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--cfc-off-white);
}

.single-post-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cfc-mid-grey);
  background: var(--cfc-off-white);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all 0.2s;
}

.single-post-tag:hover { background: var(--cfc-dark); color: var(--cfc-white); }

/* Share */
.single-post-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--cfc-off-white);
}

.single-post-share-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cfc-grey);
}

.single-post-share-links { display: flex; gap: 8px; }

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cfc-off-white);
  color: var(--cfc-mid-grey);
  transition: all 0.2s;
}

.share-btn svg { width: 18px; height: 18px; fill: currentColor; }
.share-btn:hover { background: var(--cfc-dark); color: var(--cfc-white); }

/* Post Navigation */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--cfc-off-white);
}

.single-post-nav-link {
  display: block;
  padding: 16px 20px;
  background: var(--cfc-off-white);
  border-radius: 6px;
  transition: all 0.2s;
}

.single-post-nav-link:hover {
  background: var(--cfc-dark);
}

.single-post-nav-link:hover .single-post-nav-dir,
.single-post-nav-link:hover .single-post-nav-title { color: var(--cfc-white); }

.single-post-nav-next { text-align: right; }

.single-post-nav-dir {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-red);
  margin-bottom: 4px;
}

.single-post-nav-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cfc-dark);
  line-height: 1.3;
}

/* Sidebar */
.single-post-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-cta {
  background: var(--cfc-dark);
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-cta-inner { padding: 28px 24px; text-align: center; }

.sidebar-cta h3 {
  color: var(--cfc-white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sidebar-cta p {
  color: var(--cfc-grey);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.sidebar-cta-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--cfc-grey);
  margin-top: 12px;
}

.sidebar-block {
  background: var(--cfc-off-white);
  border-radius: 10px;
  padding: 24px;
}

.sidebar-block h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.sidebar-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--cfc-mid-grey);
}

.sidebar-check-item svg { width: 16px; height: 16px; fill: #27ae60; flex-shrink: 0; }

.sidebar-related {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-related-link {
  display: block;
  padding: 12px 14px;
  background: var(--cfc-white);
  border-radius: 6px;
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-related-link:hover {
  border-color: var(--cfc-red);
  transform: translateY(-1px);
}

.sidebar-related-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--cfc-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.sidebar-related-date {
  font-size: 0.78rem;
  color: var(--cfc-grey);
}

/* Blog responsive */
@media (max-width: 1024px) {
  .single-post-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .single-post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-cta { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .single-post-sidebar { grid-template-columns: 1fr; }
  .single-post-nav { grid-template-columns: 1fr; }
}


/* ============================================
   QUOTE FORM: PHOTO UPLOAD
   ============================================ */

.quote-photo-upload { margin-bottom: 12px; }

.quote-photo-dropzone {
  border: 2px dashed var(--cfc-light-grey);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.quote-photo-dropzone:hover,
.quote-photo-dropzone.dragover {
  border-color: var(--cfc-red);
  background: rgba(214,46,39,0.03);
}

.quote-photo-dropzone p { font-size: 1rem; margin: 8px 0 4px; color: var(--cfc-mid-grey); }
.quote-photo-dropzone span { font-size: 0.8rem; color: var(--cfc-grey); }
.quote-photo-browse { color: var(--cfc-red); font-weight: 600; text-decoration: underline; }

.quote-photo-previews {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.quote-photo-thumb {
  position: relative;
  width: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cfc-off-white);
  border: 1px solid rgba(0,0,0,0.06);
}

.quote-photo-thumb img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  display: block;
}

.quote-photo-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.quote-photo-remove:hover { background: var(--cfc-red); }

.quote-photo-name {
  display: block;
  font-size: 0.72rem;
  color: var(--cfc-grey);
  padding: 4px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* ============================================
   QUOTE FORM: CHECKBOX & CAT TOGGLE
   ============================================ */

.quote-checkbox-field { margin-top: 4px; }

.quote-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--cfc-mid-grey);
  user-select: none;
}

.quote-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.quote-checkbox-custom {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--cfc-grey);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
  background: var(--cfc-white);
}

.quote-checkbox-label:hover .quote-checkbox-custom {
  border-color: var(--cfc-red);
}

.quote-checkbox-label input:checked + .quote-checkbox-custom {
  background: var(--cfc-red);
  border-color: var(--cfc-red);
}

.quote-checkbox-label input:checked + .quote-checkbox-custom::after {
  content: '';
  display: block;
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.quote-cat-options {
  display: flex;
  gap: 10px;
}

.quote-cat-option {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border: 2px solid var(--cfc-off-white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.quote-cat-option:hover { border-color: var(--cfc-red); }
.quote-cat-option.active { background: var(--cfc-red); color: var(--cfc-white); border-color: var(--cfc-red); }

.quote-heard-detail { margin-top: -4px; }

.quote-prefill-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #e8f5e9;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #2e7d32;
  font-weight: 500;
  margin-bottom: 20px;
}

.quote-prefill-notice svg { flex-shrink: 0; fill: #2e7d32; }

.page-hero-compact { padding: 40px 0 32px; }

.quote-feedback-success {
  color: #27ae60;
  font-weight: 600;
  padding: 8px 0;
}


/* ============================================
   CUSTOMER PORTAL PAGE
   ============================================ */

.portal-page { padding: var(--section-pad) 0; }

.portal-no-token {
  text-align: center;
  padding: 60px 0;
}

.portal-no-token h2 { margin-bottom: 12px; }
.portal-no-token p { color: var(--cfc-grey); margin-bottom: 24px; }

.portal-loading {
  text-align: center;
  padding: 80px 0;
  color: var(--cfc-grey);
}

.portal-loading svg { margin-bottom: 12px; }

.portal-error {
  text-align: center;
  padding: 60px 0;
}

.portal-error h2 { margin-bottom: 12px; }
.portal-error p { color: var(--cfc-grey); margin-bottom: 24px; }

.portal-status-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cfc-off-white);
  border-radius: 8px;
  border-left: 4px solid var(--cfc-grey);
  margin-bottom: 32px;
}

.portal-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.portal-status-banner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portal-status-banner span {
  font-size: 0.88rem;
  color: var(--cfc-mid-grey);
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.portal-card {
  background: var(--cfc-white);
  border: 1px solid var(--cfc-off-white);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.portal-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cfc-off-white);
}

.portal-card h4 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* Offer card */
.portal-offer {
  background: linear-gradient(135deg, var(--cfc-dark) 0%, #2d2d2d 100%);
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 24px;
}

.portal-offer-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cfc-grey);
  margin-bottom: 4px;
}

.portal-offer-amount {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--cfc-yellow);
  line-height: 1;
  margin-bottom: 12px;
}

.portal-offer p {
  color: var(--cfc-grey);
  font-size: 0.9rem;
  max-width: 400px;
  margin: 0 auto;
}

.portal-accept-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 48px;
  background: #27ae60;
  color: var(--cfc-white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 24px;
}

.portal-accept-btn:hover {
  background: #219a52;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.35);
}

.portal-accept-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.portal-accept-note {
  color: var(--cfc-grey) !important;
  font-size: 0.8rem !important;
  margin-top: 10px !important;
  opacity: 0.8;
}

.portal-accepted-msg {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 24px;
  text-align: left;
}

.portal-accepted-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #27ae60;
  color: var(--cfc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.portal-accepted-msg strong {
  color: #27ae60;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 2px;
}

.portal-accepted-msg p {
  color: var(--cfc-light-grey) !important;
  font-size: 0.85rem !important;
  margin: 2px 0 0 !important;
  max-width: none !important;
  text-align: left !important;
}

.portal-call-request {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 28px 28px;
  margin-bottom: 24px;
}

.portal-call-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #f59e0b;
  color: var(--cfc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-call-icon svg { fill: white; }

.portal-call-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #92400e;
}

.portal-call-content p {
  color: #78350f;
  font-size: 0.92rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.portal-call-content .btn {
  font-size: 0.85rem;
  padding: 12px 28px;
}

@media (max-width: 600px) {
  .portal-call-request { flex-direction: column; align-items: center; text-align: center; }
}

.portal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.portal-info-item {
  background: var(--cfc-off-white);
  border-radius: 6px;
  padding: 12px;
}

.portal-info-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cfc-grey);
  margin-bottom: 4px;
}

.portal-info-item span:last-child {
  font-weight: 600;
  color: var(--cfc-dark);
}

.portal-photos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.portal-photo-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--cfc-off-white);
}

/* Cancel */
.portal-cancel-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: none;
  border: 2px solid #e74c3c;
  border-radius: var(--radius);
  color: #e74c3c;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}

.portal-cancel-btn:hover {
  background: #e74c3c;
  color: white;
}

.portal-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.portal-modal-inner {
  background: white;
  border-radius: 12px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
}

.portal-modal-inner h3 { margin-bottom: 8px; }
.portal-modal-inner p { color: var(--cfc-grey); margin-bottom: 16px; }

.portal-cancel-dismiss {
  background: none;
  border: 2px solid var(--cfc-light-grey);
  border-radius: var(--radius);
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.portal-cancelled {
  text-align: center;
  padding: 60px 0;
}

.portal-cancelled h2 { margin-bottom: 12px; }
.portal-cancelled p { color: var(--cfc-grey); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }

@media (max-width: 1024px) {
  .portal-grid { grid-template-columns: 1fr; }
  .portal-sidebar { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .portal-sidebar .portal-card { margin-bottom: 0; }
}

@media (max-width: 768px) {
  .portal-info-grid { grid-template-columns: 1fr 1fr; }
  .portal-sidebar { grid-template-columns: 1fr; }
  .quote-cat-options { flex-direction: column; }
}


/* =========================================================
   BRAND HOMEPAGE
   ========================================================= */

/* Force light text on dark backgrounds — overrides base theme body color */
body.home {
  background: var(--cfc-dark);
  color: var(--cfc-white);
}

.brand-hero,
.brand-services,
.brand-about,
.brand-trust,
.brand-testimonials,
.brand-cta {
  color: var(--cfc-white);
}

.brand-hero h1,
.brand-services h2,
.brand-services h3,
.brand-about h2,
.brand-testimonials h2,
.brand-cta h2,
.brand-svc-body h3,
.brand-section-title,
.brand-review-card strong,
.brand-about-value strong {
  color: var(--cfc-white);
}

.brand-hero h1 .highlight,
.brand-section-title .highlight,
.brand-about-text h2 .highlight,
.brand-cta h2 .highlight {
  color: var(--cfc-yellow);
}

.brand-hero h1 .red {
  color: var(--cfc-red);
}

/* ── Hero ── */
.brand-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cfc-dark);
}

.brand-hero-bg {
  position: absolute;
  inset: 0;
}

.brand-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.85) 35%,
    rgba(10,10,10,.55) 60%,
    rgba(10,10,10,.25) 100%
  );
}

.brand-hero .container {
  position: relative;
  z-index: 2;
}

.brand-hero-content {
  max-width: 60%;
}

.brand-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
}

.brand-hero h1 .red {
  color: var(--cfc-red);
}

.brand-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cfc-light-grey);
  max-width: 600px;
  margin-bottom: 36px;
}

.brand-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--cfc-white);
  color: var(--cfc-white);
}

.btn-outline-white:hover {
  background: var(--cfc-white);
  color: var(--cfc-dark);
}

.btn-lg {
  font-size: .95rem;
  padding: 18px 36px;
}

.brand-hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.brand-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cfc-yellow);
  line-height: 1;
}

.brand-hero-stat-label {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cfc-grey);
  margin-top: 4px;
}

/* ── Section Labels ── */
.brand-section-label {
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cfc-red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.brand-section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--cfc-red);
}

.brand-section-label svg {
  display: none;
}

.brand-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.brand-section-desc {
  color: var(--cfc-grey);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Services Grid ── */
.brand-services {
  padding: 100px 0;
  background: var(--cfc-darker, #111);
  position: relative;
}

.brand-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,46,39,.3), transparent);
}

.brand-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-svc-card {
  background: var(--cfc-card-bg, #222);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  overflow: hidden;
  transition: all .35s;
}

.brand-svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,46,39,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.brand-svc-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #2a2a2a;
}

.brand-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.brand-svc-card:hover .brand-svc-img img {
  transform: scale(1.05);
}

.brand-svc-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--cfc-card-bg, #222));
}

.brand-svc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
  color: var(--cfc-grey);
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  gap: 8px;
}

.brand-svc-placeholder svg {
  width: 32px;
  height: 32px;
  opacity: .3;
}

.brand-svc-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  color: var(--cfc-white);
  text-transform: uppercase;
  letter-spacing: .1em;
  background: rgba(0,0,0,.6);
  padding: 5px 12px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.brand-svc-body {
  padding: 28px 28px 32px;
}

.brand-svc-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.brand-svc-body p {
  color: var(--cfc-grey);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.brand-svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.brand-svc-features li {
  font-size: .85rem;
  color: var(--cfc-light-grey);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.brand-svc-features li:last-child {
  border-bottom: none;
}

.brand-svc-check {
  color: var(--cfc-yellow);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}

.brand-svc-body .btn {
  width: 100%;
  justify-content: center;
}

/* ── About ── */
.brand-about {
  padding: 100px 0;
  background: var(--cfc-dark);
}

.brand-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  aspect-ratio: 3 / 4;
}

.brand-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-about-est {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cfc-yellow);
  background: rgba(0,0,0,.7);
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.brand-about-flag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(0,0,0,.7);
  padding: 10px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cfc-yellow);
  border: 1px solid rgba(245,197,24,.15);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.brand-about-text p {
  color: var(--cfc-light-grey);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.brand-about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.brand-about-value {
  background: rgba(255,255,255,.03);
  padding: 20px;
  border-radius: 4px;
  border-left: 3px solid var(--cfc-red);
}

.brand-about-value strong {
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.brand-about-value span {
  font-size: .85rem;
  color: var(--cfc-grey);
}

/* ── Trust Bar ── */
.brand-trust {
  padding: 0;
  background: var(--cfc-red);
  position: relative;
  overflow: hidden;
}

.brand-trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.1) 0%, transparent 100%);
}

.brand-trust .container {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 100%;
}

.brand-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.brand-trust-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: background .25s;
}

.brand-trust-item:last-child {
  border-right: none;
}

.brand-trust-item:hover {
  background: rgba(0,0,0,.1);
}

.brand-trust-item strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  letter-spacing: .04em;
}

.brand-trust-item span {
  font-size: .88rem;
  opacity: .8;
  line-height: 1.5;
}

/* ── Testimonials ── */
.brand-testimonials {
  padding: 80px 0;
  background: var(--cfc-darker, #111);
}

.brand-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.brand-review-card {
  background: var(--cfc-card-bg, #222);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 28px;
}

.brand-review-stars {
  color: var(--cfc-yellow);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.brand-review-card p {
  color: var(--cfc-light-grey);
  font-size: .92rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}

.brand-review-card strong {
  font-family: var(--font-heading);
  font-size: .85rem;
  text-transform: uppercase;
  display: block;
}

.brand-review-card span {
  font-size: .78rem;
  color: var(--cfc-grey);
}

/* ── CTA ── */
.brand-cta {
  padding: 80px 0;
  background: var(--cfc-dark);
  text-align: center;
  position: relative;
}

.brand-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214,46,39,.06) 0%, transparent 70%);
  border-radius: 50%;
}

.brand-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.brand-cta p {
  color: var(--cfc-grey);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
}

.brand-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.brand-cta-phone {
  margin-top: 24px;
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-cta-phone a {
  color: var(--cfc-yellow);
}

.brand-cta-phone a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .brand-hero-content { max-width: 100%; }
  .brand-services-grid { grid-template-columns: 1fr; max-width: 500px; }
  .brand-about-grid { grid-template-columns: 1fr; }
  .brand-about-image { max-width: 400px; }
  .brand-trust-grid { grid-template-columns: 1fr 1fr; }
  .brand-trust-item { border-bottom: 1px solid rgba(255,255,255,.12); }
  .brand-review-grid { grid-template-columns: 1fr; max-width: 500px; }
  .brand-hero-stats { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .brand-hero { min-height: 75vh; }
  .brand-hero-ctas .btn-lg { width: 100%; justify-content: center; }
  .brand-hero-stats { flex-direction: column; gap: 16px; }
  .brand-trust-grid { grid-template-columns: 1fr; }
  .brand-trust-item { border-right: none; }
  .brand-about-values { grid-template-columns: 1fr; }
  .brand-cta-btns .btn-lg { width: 100%; justify-content: center; }
}
