/*
Theme Name: Cahaba Heating & Cooling
Theme URI: https://cahabahvac.com
Author: Cahaba Heating & Cooling
Description: Custom WordPress theme for Cahaba Heating & Cooling HVAC services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary
Text Domain: cahaba-theme
*/

/* ============================================================
   DESIGN TOKENS — sourced from DESIGN.md
   ============================================================ */
:root {
  /* Brand Colors */
  --color-primary:       #1c355e;  /* Navy  */
  --color-secondary:     #e31837;  /* Red   */
  --color-tertiary:      #00a4e4;  /* Cyan  */
  --color-neutral-light: #f4f7f6;
  --color-neutral-dark:  #231f20;
  --color-surface:       #ffffff;
  --color-gold:          #ffc107;

  /* Typography */
  --font-headline: 'Oswald', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Spacing — 8px base rhythm */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 120px;
  --gutter:    24px;

  /* Border Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1280px;
}

/* ============================================================
   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(--color-neutral-dark);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-pad { padding-block: var(--space-2xl); }

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

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 24px; }

.label-caps {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary   { background: var(--color-secondary); color: var(--color-surface); }
.btn-secondary { background: var(--color-primary);   color: var(--color-surface); }
.btn-outline   { background: transparent; color: var(--color-surface); border: 2px solid var(--color-surface); }
.btn-full      { width: 100%; display: block; }

/* ============================================================
   SITE HEADER — Two-tone: white top bar + navy nav bar
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* ── Top bar: white, logo + contact ── */
.header-top-bar {
  background: var(--color-surface);
  border-bottom: 1px solid #e5e7eb;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  gap: var(--space-lg);
}

.site-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-dark);
  transition: color 0.2s;
}

.header-contact-item:hover { color: var(--color-primary); }

.header-contact-item svg {
  width: 16px; height: 16px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.header-contact-divider {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1;
}

.header-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: var(--color-surface);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-phone-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.header-phone-cta svg {
  width: 17px; height: 17px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Nav bar: navy, links + CTA ── */
.header-nav-bar {
  background: var(--color-primary);
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0;
  gap: var(--space-lg);
}

/* Primary Nav */
.primary-nav ul {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.primary-nav li a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px var(--space-md);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.primary-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--space-md); right: var(--space-md);
  height: 3px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.primary-nav li a:hover         { color: var(--color-surface); background: rgba(255,255,255,0.06); }
.primary-nav li a:hover::after  { transform: scaleX(1); }

/* Nav CTA */
.header-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13px;
  flex-shrink: 0;
  margin-block: 6px;
}

.header-nav-cta svg { width: 15px; height: 15px; fill: currentColor; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-surface);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Footer logo — blend mode dissolves white bg into dark navy */
.footer-logo-link img {
  mix-blend-mode: screen;
  opacity: 0.92;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 53, 94, 0.82) 0%,
    rgba(28, 53, 94, 0.60) 45%,
    rgba(28, 53, 94, 0.18) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-xl);
  align-items: center;
  padding-block: var(--space-2xl);
  width: 100%;
}

/* Hero copy */
.hero-copy .eyebrow {
  display: inline-block;
  color: var(--color-tertiary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--color-secondary);
  padding-left: var(--space-sm);
}

.hero-copy h1 { color: var(--color-surface); margin-bottom: var(--space-md); }
.hero-copy h1 span { color: var(--color-secondary); }

.hero-copy .hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
}

/* Trust badges below copy */
.hero-trust {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-surface);
}

.trust-badge svg {
  width: 30px; height: 30px;
  fill: var(--color-tertiary);
  flex-shrink: 0;
}

.trust-badge-text strong { display: block; font-size: 15px; font-weight: 700; }
.trust-badge-text span   { font-size: 13px; opacity: 0.78; }

/* ============================================================
   LEAD CAPTURE FORM CARD
   ============================================================ */
.hero-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.38), 0 2px 8px rgba(0,0,0,0.15);
  border-top: 4px solid var(--color-secondary);
}

.hero-form-card .form-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero-form-card .form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-form-card .form-group { margin-bottom: var(--space-md); }

.hero-form-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-neutral-dark);
  background: var(--color-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(28,53,94,0.12);
}

.hero-form-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231c355e' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.hero-form-card .form-privacy {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.5;
}

.hero-form-card .form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================================
   TRUST BAR (below hero)
   ============================================================ */
.trust-bar {
  background: var(--color-neutral-light);
  padding-block: var(--space-lg);
  border-top: 3px solid var(--color-secondary);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex: 1;
  min-width: 200px;
}

.trust-item-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg { width: 26px; height: 26px; fill: var(--color-surface); }

.trust-item-copy strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.2;
}

.trust-item-copy span { font-size: 14px; color: #555; }

.trust-bar-divider { width: 1px; height: 52px; background: #ccc; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; }
  .hero-form-card      { max-width: 520px; width: 100%; }
  :root                { --space-2xl: 80px; }
}

@media (max-width: 768px) {
  /* Hide email in top bar on tablet/mobile to keep it clean */
  .header-contact-item   { display: none; }
  .header-contact-divider { display: none; }

  /* Collapse nav into hamburger */
  .primary-nav         { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-primary); padding: var(--space-md) var(--gutter); z-index: 999; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul      { flex-direction: column; gap: 0; }
  .nav-toggle          { display: flex; }
  .header-top-inner    { flex-wrap: wrap; gap: var(--space-sm); }
  .trust-bar-inner     { flex-direction: column; align-items: flex-start; }
  .trust-bar-divider   { display: none; }
  .hero-ctas           { flex-direction: column; }
  .hero-ctas .btn      { text-align: center; }
  .hero-trust          { gap: var(--space-md); }
  :root                { --space-2xl: 64px; }
}

@media (max-width: 480px) {
  .site-logo img          { height: 64px; }
  .header-phone-cta       { font-size: 14px; padding: 8px 16px; }
  .hero-form-card         { padding: var(--space-md); }
}

/* Show nav toggle on mobile; hide nav CTA in favour of top bar phone */
@media (max-width: 768px) {
  .nav-toggle       { display: flex; }
  .header-nav-cta   { display: none; }
  .header-nav-inner { justify-content: space-between; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-primary); color: rgba(255,255,255,0.8); }

.footer-top  { padding-block: var(--space-xl); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.footer-brand .footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-block: var(--space-md);
  max-width: 280px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-surface);
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--color-tertiary); }

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

.footer-heading {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-surface);
  margin-bottom: var(--space-md);
}

.footer-links ul li {
  margin-bottom: var(--space-sm);
  font-size: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-tertiary); }

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: var(--space-sm);
  transition: color 0.2s;
}

.footer-email:hover { color: var(--color-tertiary); }
.footer-email 
/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-top: 3px solid var(--color-primary);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

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

.service-card--emergency {
  border-top-color: var(--color-secondary);
  background: #fff8f8;
}

.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.service-card--emergency .service-card-icon { background: var(--color-secondary); }

.service-card-icon svg { width: 28px; height: 28px; fill: var(--color-surface); }

.service-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  flex: 1;
  margin-bottom: var(--space-md);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  transition: color 0.2s, gap 0.2s;
  margin-top: auto;
}

.service-card-link:hover { color: var(--color-secondary); gap: 10px; }

.emergency-link { color: var(--color-secondary); }
.emergency-link svg { width: 15px; height: 15px; fill: currentColor; }

/* ============================================================
   SECTION SHARED HEADER STYLES
   ============================================================ */
.section-header { margin-bottom: var(--space-xl); }

.section-eyebrow {
  display: inline-block;
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
}

.section-header h2 { color: var(--color-primary); }

.section-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  max-width: 620px;
  margin: var(--space-md) auto 0;
}

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

/* ============================================================
   WHY CAHABA SECTION
   ============================================================ */
.why-section { background: var(--color-neutral-light); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.why-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--color-secondary);
  color: var(--color-surface);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.why-image-badge .badge-number {
  display: block;
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.why-image-badge .badge-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 4px;
  opacity: 0.9;
}

.why-copy .section-eyebrow { display: block; margin-bottom: var(--space-sm); }
.why-copy h2 { color: var(--color-primary); margin-bottom: var(--space-md); }
.why-copy .section-sub { margin: 0 0 var(--space-lg) 0; text-align: left; max-width: none; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.why-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.why-list-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon { width: 20px; height: 20px; fill: var(--color-surface); }

.why-list-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.why-list-copy span { font-size: 15px; color: #555; line-height: 1.55; }

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.how-section { background: var(--color-primary); }

.how-section .section-eyebrow { color: var(--color-tertiary); }
.how-section h2               { color: var(--color-surface); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  position: relative;
  text-align: center;
  color: var(--color-surface);
  transition: background 0.2s;
}

.step-card:hover { background: rgba(255,255,255,0.13); }

.step-number {
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
}

.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.step-svg { width: 30px; height: 30px; fill: var(--color-surface); }

.step-card h3 {
  font-size: 20px;
  color: var(--color-surface);
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.80);
}

.step-card p a { color: var(--color-tertiary); text-decoration: underline; }

.how-cta {
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.how-cta-or {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-outline-navy {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  background: transparent;
  color: var(--color-surface);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-navy:hover { opacity: 0.85; border-color: var(--color-surface); transform: translateY(-1px); }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.reviews-section { background: var(--color-surface); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.review-card {
  background: var(--color-neutral-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
}

.review-card--featured {
  background: var(--color-primary);
  color: var(--color-surface);
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(28,53,94,0.25);
}

.review-card--featured blockquote { color: rgba(255,255,255,0.88); }
.review-card--featured .review-author strong { color: var(--color-surface); }
.review-card--featured .review-author span   { color: rgba(255,255,255,0.6); }

.review-stars { display: flex; gap: 3px; }

.star-icon { width: 18px; height: 18px; fill: var(--color-gold); }

.review-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  flex: 1;
}

.review-card blockquote::before {
  content: '"';
  font-size: 40px;
  line-height: 0.8;
  color: var(--color-tertiary);
  font-style: normal;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 8px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.review-card--featured .review-author { border-top-color: rgba(255,255,255,0.15); }

.review-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-surface);
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 15px; color: var(--color-primary); }
.review-author span   { font-size: 13px; color: #777; }

.reviews-cta { margin-top: var(--space-xl); }

/* ============================================================
   FLEET STRIP
   ============================================================ */
.fleet-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.fleet-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 53, 94, 0.88) 0%,
    rgba(28, 53, 94, 0.65) 55%,
    rgba(28, 53, 94, 0.15) 100%
  );
}

.fleet-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl);
  max-width: 600px;
}

.fleet-copy .section-eyebrow { display: block; margin-bottom: var(--space-sm); }
.fleet-copy h2 { margin-bottom: var(--space-md); }
.fleet-copy p  { margin-bottom: var(--space-lg); font-size: 17px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-secondary);
  padding-block: var(--space-xl);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-banner-copy h2 {
  color: var(--color-surface);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: var(--space-sm);
}

.cta-banner-copy p {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.cta-banner-actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-lg { font-size: 16px; padding: 18px 36px; }

.btn-icon { width: 16px; height: 16px; fill: currentColor; vertical-align: middle; }

/* ============================================================
   FOOTER — RESPONSIVE SUPPLEMENT
   ============================================================ */
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: var(--space-lg);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--color-surface); }

/* ============================================================
   FULL RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner     { grid-template-columns: 1fr; }
  .why-image     { max-width: 560px; margin-inline: auto; }
  .why-image img { height: 360px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .review-card--featured { transform: scale(1); }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-copy p { max-width: 100%; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  .services-grid  { grid-template-columns: 1fr; }
  .steps-grid     { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .hero-inner     { grid-template-columns: 1fr; padding-block: var(--space-xl); }
  .hero-form-card { max-width: 100%; }
  .how-cta        { flex-direction: column; gap: var(--space-md); }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { text-align: center; width: 100%; }
  .fleet-inner    { padding-block: var(--space-xl); }
  .fleet-inner h2 { font-size: clamp(24px, 6vw, 36px); }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .step-card { padding: var(--space-xl) var(--space-md) var(--space-md); }
  .review-card { padding: var(--space-md); }
  .footer-grid { gap: var(--space-lg); }
}
