/* SAPC — Standard Asphalt Paving Contractor — Main Stylesheet */
/* Mobile-first, SEO-optimized, no framework dependencies */

/* ============================================
   RESET & BASE
   ============================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root {
  --primary: #0a1e3d;
  --primary-dark: #071528;
  --primary-light: #e4eaf3;
  --primary-50: rgba(10,30,61,0.05);
  --primary-10: rgba(10,30,61,0.1);
  --secondary: #c0232e;
  --secondary-dark: #9b1c25;
  --secondary-light: #fce8ea;
  --secondary-50: rgba(192,35,46,0.05);
  --accent: #f0b429;
  --accent-dark: #d49e20;
  --accent-light: #fef3d1;
  --dark: #061224;
  --dark-2: #0c1c33;
  --dark-3: #132a45;
  --text: #1a1a2e;
  --text-light: #3d4a5c;
  --text-muted: #4d5e70;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --bg-dark: #061224;
  --border: #dce3ed;
  --border-light: #e8eef5;
  --success: #38a169;
  --warning: #d69e2e;
  --danger: #dc3545;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-red: 0 10px 40px rgba(192,35,46,0.3);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   LICENSE BANNER
   ============================================ */
.license-banner {
  background: var(--secondary);
  color: #fff;
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
}
.license-banner a { color: #fff; text-decoration: underline; }
.license-banner a:hover { color: var(--accent); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  padding: 14px 28px;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; font-weight: 800; border-radius: var(--radius-lg); letter-spacing: 0.3px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10,30,61,0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
  overflow: visible;
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
}
/* Nav logo icon — appears when header becomes sticky/scrolled */
.nav-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  display: none;
  transition: opacity 0.2s ease;
}
.header.scrolled .nav-logo-icon { display: block; }

.logo-img { height: 40px; width: auto; }
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 18px;
}
.logo-text {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text strong { font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
.nav-link {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--secondary);
  background: var(--secondary-50);
}
.nav-link.active { color: var(--secondary); background: var(--secondary-50); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 10;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  color: #fff;
  overflow: hidden;
}
.hero.hero-secondary {
  padding: 64px 0 56px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,35,46,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(10,30,61,0.15) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(192,35,46,0.2);
  border: 1px solid rgba(192,35,46,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.text-secondary { color: #e8737f; }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   HERO SPLIT LAYOUT (image + text)
   ============================================ */
.hero-split { padding: 120px 0 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  object-fit: cover;
  max-height: 520px;
}

/* ============================================
   PROMINENT PHONE CTA
   ============================================ */
.hero-cta-phone { margin-bottom: 20px; }

.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-red);
  border: 2px solid transparent;
}
.btn-phone-hero:hover {
  background: linear-gradient(135deg, var(--secondary-dark), #5e1019);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,35,46,0.45);
  color: #fff;
}
.btn-phone-hero-light {
  background: linear-gradient(135deg, #b32d3f, var(--secondary));
  box-shadow: 0 4px 20px rgba(192,35,46,0.4);
}
.btn-phone-hero-light:hover {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  box-shadow: 0 8px 28px rgba(192,35,46,0.5);
  color: #fff;
}

.phone-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
  animation: phone-ring 2s ease-in-out infinite;
}
@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(12deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-6deg); }
  50% { transform: rotate(0deg); }
}

.phone-text { display: flex; flex-direction: column; }
.phone-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.phone-number {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 10px 0;
  transition: color var(--transition);
}
.btn-phone-inline:hover { color: var(--secondary-dark); }
.btn-phone-inline svg { flex-shrink: 0; }

.cta-phone-block { margin-bottom: 4px; }
.cta-phone-block .btn-phone-hero { font-size: 16px; }

/* ============================================
   IMAGE + TEXT ROW SECTIONS
   ============================================ */
.section-image-band { padding: 64px 0; overflow: hidden; }

.image-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.image-text-row.reverse { direction: rtl; }
.image-text-row.reverse > * { direction: ltr; }

.image-text-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 400px;
}

.image-text-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text);
}
.image-text-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}
.trust-item svg { color: var(--secondary); flex-shrink: 0; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.section-gradient {
  background: linear-gradient(180deg, var(--primary) 0%, #0d2850 50%, var(--primary) 100%);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.section-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-badge-light {
  background: rgba(240,180,41,0.15);
  color: var(--accent);
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SERVICE CARDS GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  align-items: flex-start;
}
.service-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--secondary-50);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  white-space: nowrap;
}
.service-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.service-card-link:hover { color: inherit; }

/* ============================================
   FEATURES GRID (Why Choose Us)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--secondary);
}
.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   COMMITMENT / CALLOUT BOX
   ============================================ */
.commitment-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #fff;
  text-align: center;
  margin-top: 48px;
}
.commitment-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}
.commitment-box p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 16px;
}
.commitment-tagline {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.process-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 20px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.process-connector {
  display: flex;
  align-items: center;
  padding-top: 20px;
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  background: var(--bg);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 24px 18px; }
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT / ESTIMATE FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}
.contact-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: #fff;
  transition: all var(--transition);
}
.contact-method:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.contact-method svg { flex-shrink: 0; color: var(--accent); }
.contact-method strong { display: block; font-size: 15px; }
.contact-method span { display: block; font-size: 12px; color: rgba(255,255,255,0.5); }
.contact-note {
  padding: 14px 18px;
  background: rgba(240,180,41,0.1);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--radius);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(192,35,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.file-upload {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.file-upload:hover { border-color: var(--secondary); background: var(--secondary-50); }
.file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-upload-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.file-upload-content svg { color: var(--text-muted); }
.file-upload-content span { font-size: 13px; color: var(--text-muted); }
.file-upload-content small { font-size: 11px; color: var(--text-muted); opacity: 0.7; }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.area-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}
.area-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.area-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-text { color: #fff; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col .footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-col li:not(:has(a)) { font-size: 14px; }

.footer-logo-img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-grid-5 { grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-sitemap {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-sitemap .footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.sitemap-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.sitemap-links a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Section CTA link */
.section-cta { text-align: center; margin-top: 32px; }

/* Page header (for sub-pages) */
.page-header {
  padding: 120px 0 64px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  color: #fff;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumb a:hover { color: var(--accent); }

/* Content section for sub-pages */
.content-section { padding: 80px 0; }
.content-section h2 { font-size: 26px; font-weight: 800; margin-bottom: 18px; margin-top: 40px; }
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { font-size: 19px; font-weight: 700; margin: 28px 0 10px; }
.content-section p { margin-bottom: 18px; color: var(--text-light); line-height: 1.8; font-size: 16px; }
.content-section ul, .content-section ol { margin: 0 0 18px 24px; color: var(--text-light); }

/* Service sub-page specific styles */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.service-detail-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.service-detail-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.service-detail-card .sdc-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--secondary);
}
.service-detail-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.service-detail-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose section for service pages */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-card .wc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--secondary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Process steps for service pages — mirrors service-detail-grid card pattern */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.process-step .step-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.process-step h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Modifier classes for service-detail-grid column counts */
.service-detail-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-detail-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stats-row.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 700px; margin: 0 auto 48px; }

/* Service page CTA - more specific than generic */
.service-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.service-cta h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 24px;
}
.service-cta .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
}
.content-section li { margin-bottom: 6px; line-height: 1.7; }

/* ============================================
   LOGO HERO (big centered logo like legacy)
   ============================================ */
.logo-hero {
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 40%, #f8f9fb 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.logo-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 300px;
  height: 300px;
  background: rgba(192,35,46,0.04);
  border-radius: 50%;
  filter: blur(60px);
}
.logo-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(10,30,61,0.04);
  border-radius: 50%;
  filter: blur(60px);
}
.logo-hero-img {
  height: clamp(280px, 50vw, 480px);
  width: auto;
  max-width: 95%;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.12));
  transition: filter 0.3s ease;
  position: relative;
  z-index: 1;
}
.logo-hero-img:hover {
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}
.logo-hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
/* Bigger, rounder hero CTA buttons matching legacy */
.btn-hero-cta {
  padding: 20px 44px;
  font-size: 18px;
  font-weight: 800;
  border-radius: var(--radius-xl);
  min-width: 240px;
  justify-content: center;
  letter-spacing: 0.3px;
  text-transform: none;
}

/* ============================================
   SERVICE ICONS STRIP (carousel-style)
   ============================================ */
.service-icons-strip {
  background: linear-gradient(180deg, #f5f7fa 0%, #fff 100%);
  border-top: 2px solid #e9ecef;
  border-bottom: 2px solid #e9ecef;
  padding: 24px 0;
}
.service-icons-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  min-width: 120px;
}
.service-icon-item:hover {
  border-color: rgba(192,35,46,0.3);
  background: rgba(192,35,46,0.05);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}
.service-icon-item .sicon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f2f5, #e9ecef);
  border-radius: var(--radius-xl);
  color: var(--secondary);
  transition: all var(--transition);
}
.service-icon-item:hover .sicon {
  background: linear-gradient(135deg, rgba(192,35,46,0.1), rgba(192,35,46,0.15));
}
.service-icon-item span {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.service-icons-cta {
  text-align: center;
  margin-top: 12px;
}
.service-icons-cta a {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
}
.service-icons-cta a:hover { text-decoration: underline; }

/* ============================================
   PATRIOTIC GRADIENT BAR
   ============================================ */
.patriotic-bar {
  height: 6px;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--primary));
}

/* ============================================
   HOMEPAGE SERVICE AREA STRIP
   ============================================ */
.service-area-strip {
  padding: 48px 0;
}
.area-pills {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.area-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}
.area-pill:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
  color: var(--secondary);
}
.area-pill svg { color: var(--secondary); flex-shrink: 0; }
.area-pill strong { font-size: 14px; }

/* ============================================
   CALLOUT BOX (SEO "right team")
   ============================================ */
.callout-box {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 32px 40px;
  background: rgba(192,35,46,0.03);
  border: 1px solid rgba(192,35,46,0.1);
  border-radius: var(--radius-xl);
  text-align: center;
}
.callout-box p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}
.callout-box p .text-secondary { color: var(--secondary); font-weight: 700; }
.callout-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 12px;
}

/* ============================================
   FOOTER SOCIAL ICONS
   ============================================ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--secondary);
  color: #fff;
}

/* Footer compliance */
.footer-compliance {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-compliance a { color: var(--secondary); }
.footer-compliance a:hover { color: #e8737f; }

/* ============================================
   HEADER — NAVY STYLE (matching legacy)
   ============================================ */
.header-navy {
  background: var(--primary);
  border-bottom: 4px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.header-navy .nav-logo { color: #fff; }
.header-navy .logo-text { color: #fff; }
.header-navy .nav-link { color: rgba(255,255,255,0.8); }
.header-navy .nav-link:hover { color: var(--secondary); background: rgba(255,255,255,0.05); }
.header-navy .nav-link.active { color: var(--secondary); background: rgba(255,255,255,0.08); }
.header-navy .nav-toggle span { background: #fff; }
.header-navy .btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.header-navy .btn-signin:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.sitemap-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.sitemap-page-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-page-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--text-muted);
}
.sitemap-page-list a {
  color: var(--text);
  font-weight: 500;
}
.sitemap-page-list a:hover { color: var(--secondary); }

/* ============================================
   ABOUT PAGE — STATS & INFO CARDS
   ============================================ */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat {
  padding: 32px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.about-stat-number {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.info-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}
.info-card-icon {
  width: 52px;
  height: 52px;
  background: var(--secondary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--secondary);
}
.info-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   VIDEO HERO — background autoplay (legacy style)
   ============================================ */
.video-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dark);
}
.video-hero-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.video-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 30, 61, 0.82);
  backdrop-filter: blur(2px);
}
.video-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 88px 0;
  max-width: 780px;
  margin: 0 auto;
}
.video-hero-content h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.video-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
}

/* Red accent borders matching legacy — clean solid red stripes */
.video-hero-accent-top,
.video-hero-accent-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 3;
  background: var(--secondary);
}
.video-hero-accent-top {
  top: 0;
}
.video-hero-accent-bottom {
  bottom: 0;
}

/* ============================================
   HERO CTA STRIP — directly under video hero
   ============================================ */
.hero-cta-strip {
  background: var(--primary);
  padding: 28px 0;
  border-top: 4px solid var(--secondary);
}
.hero-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================
   TRUST SIGNALS — credibility grid
   ============================================ */
.trust-signals-section {
  background: var(--bg-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.trust-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  margin-bottom: 20px;
}
.trust-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.trust-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   STATS ROW (legacy-style big numbers)
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}
.stat-card .stat-number {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   ESTIMATE CTA WITH PHOTO BACKGROUND (legacy)
   ============================================ */
.estimate-cta-photo {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  color: #fff;
  overflow: hidden;
}
.estimate-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(192,35,46,0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 70% 30%, rgba(240,180,41,0.08) 0%, transparent 60%);
}
.estimate-cta-photo h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.estimate-cta-photo > .container > p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.estimate-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================
   CALLOUT BOX WRAP
   ============================================ */
.callout-box-wrap {
  padding: 40px 0;
  background: var(--bg-alt);
}

/* ============================================
   SERVICE ICON RED VARIANT (legacy red circles)
   ============================================ */
.service-icon-red {
  background: var(--secondary-light);
  color: var(--secondary);
}
.service-card:hover .service-icon-red {
  background: var(--secondary);
  color: #fff;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-link { padding: 6px 8px; font-size: 12px; }
  .nav-links { gap: 1px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid, .footer-grid-5 { grid-template-columns: 1fr 1fr; gap: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }

  /* Mobile header — shrink logo text so full name fits */
  .logo-text {
    font-size: 12px;
    letter-spacing: -0.5px;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    line-height: 1.2;
  }

  .nav {
    position: relative;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 12px 0; font-size: 16px; }

  /* Service area pills — clean 2-column grid on mobile */
  .area-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: stretch;
  }
  .area-pill {
    justify-content: center;
    padding: 10px 12px;
    font-size: 13px;
  }
  .area-pill strong { font-size: 13px; }

  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .hero { padding: 60px 0; }
  .hero-split { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .hero-image img { max-height: 280px; border-radius: var(--radius-lg); }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }

  .btn-phone-hero { padding: 14px 20px; width: 100%; justify-content: center; }
  .phone-number { font-size: 20px; }
  .phone-icon-wrap { width: 40px; height: 40px; }

  .image-text-row { grid-template-columns: 1fr; gap: 24px; }
  .image-text-media img { max-height: 260px; }
  .section-image-band { padding: 48px 0; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 24px; max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 22px; }
  .service-tag { font-size: 10px; padding: 4px 10px; }
  .service-tags { gap: 5px; }
  .features-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }

  .service-detail-grid { grid-template-columns: 1fr !important; }
  .service-detail-grid.cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .service-detail-grid.cols-3 { grid-template-columns: 1fr !important; }
  .process-steps { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr !important; }
  .stats-row.cols-3 { grid-template-columns: 1fr !important; max-width: 100%; }

  .process-grid { flex-direction: column; align-items: center; gap: 24px; }
  .process-connector { transform: rotate(90deg); }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .commitment-box { padding: 32px 24px; }

  .footer-grid, .footer-grid-5 { grid-template-columns: 1fr; gap: 24px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { padding: 24px 16px; }
  .hero-cta-strip { padding: 20px 0; }
  .hero-cta-strip-inner { flex-direction: column; gap: 12px; }
  .hero-cta-strip-inner .btn { width: 100%; justify-content: center; }
  .logo-hero { padding: 32px 0; }
  .hero.hero-secondary { padding: 48px 0 40px; }
  .video-hero { min-height: 320px; }
  .video-hero-content { padding: 48px 0; }
  .video-hero-content h1 { font-size: 24px; }
  .video-hero-content p { font-size: 15px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card .stat-number { font-size: 28px; }
  .btn-hero-cta { min-width: 0; width: 100%; padding: 14px 24px; }

  /* Navy header mobile dropdown needs dark bg */
  .header-navy .nav-links {
    background: var(--primary);
    border-bottom: 4px solid var(--secondary);
  }
  .header-navy .nav-links .nav-link { color: rgba(255,255,255,0.85); }
  .header-navy .nav-links .nav-link:hover { color: #fff; }
}

@media (max-width: 480px) {
  .logo-text { font-size: 11px; }
  .hero h1 { font-size: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-items { flex-direction: column; gap: 12px; align-items: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-pills { grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-pill { padding: 8px 10px; font-size: 12px; gap: 6px; }
  .area-pill strong { font-size: 12px; }
  .area-pill svg { width: 14px; height: 14px; }
  .btn-phone-hero { gap: 10px; padding: 12px 16px; }
  .phone-number { font-size: 18px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid.cols-4 { grid-template-columns: 1fr !important; }
  .service-card { padding: 18px; }
  .service-tag { font-size: 9px; padding: 3px 8px; letter-spacing: 0.2px; }
  .service-tags { gap: 4px; padding-top: 10px; }
}
