﻿/* ==========================================================================
   DOFIXES PREMIUM ROOFING CONTRACTOR DESIGN SYSTEM
   Modern, High-Converting, Location-Flexible Roofing Template
   Developed by DoFixes IT Agency
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - "Storm Shield" */
  --primary-accent: #0B2545;       /* Storm Navy */
  --primary-dark: #13315C;         /* Deep Navy */
  --primary-hover: #13315C;        /* Deep Navy */
  --primary-glow: rgba(11, 37, 69, 0.25);
  
  --secondary-accent: #F59E0B;     /* Safety Amber */
  --secondary-hover: #EA580C;      /* Ember Orange */
  --secondary-glow: rgba(245, 158, 11, 0.25);
  --ember-orange: #EA580C;         /* Ember Orange */
  
  --action-accent: #16A34A;        /* Shield Green */
  --danger-accent: #DC2626;        /* Alert Red */
  
  /* Background & Surface Colors */
  --bg-dark: #F8FAFC;              /* Cloud White Page Background */
  --bg-main: #F8FAFC;              /* Cloud White */
  --bg-surface: #1E293B;           /* Roof Slate */
  --bg-surface-elevated: #334155;  /* Light Slate */
  --bg-light: #FFFFFF;             /* Pure White */
  --bg-card-light: #FFFFFF;
  
  /* Glassmorphism Fill & Borders */
  --glass-fill: rgba(30, 41, 59, 0.85);        /* Roof Slate with glass transparency */
  --glass-fill-hover: rgba(51, 65, 85, 0.92);  /* Light Slate hover */
  --glass-border: rgba(11, 37, 69, 0.15);      /* Storm Navy soft border */
  --glass-border-glow: rgba(11, 37, 69, 0.45); /* Storm Navy glow border */
  --glass-border-amber: rgba(245, 158, 11, 0.45);
  --glass-blur: 16px;
  
  /* Typography Colors */
  --text-main: #0F172A;            /* Charcoal */
  --text-dark: #0F172A;            /* Charcoal */
  --text-light: #F8FAFC;           /* Cloud White for dark cards */
  --text-muted: #64748B;          /* Steel Gray */
  --text-dim: #94A3B8;
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-glass: 0 8px 32px 0 rgba(11, 37, 69, 0.12);
  --shadow-glow: 0 0 25px rgba(11, 37, 69, 0.25);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  padding-bottom: 60px; /* Space for mobile sticky action bar */
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

/* Floating Ambient Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11, 37, 69, 0.25) 0%, transparent 70%);
}

.orb-2 {
  top: 700px;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  opacity: 0.25;
}

.orb-3 {
  bottom: 800px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.2) 0%, transparent 70%);
  opacity: 0.2;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 2.25rem 0;
}

.section-padding-light {
  padding: 2.25rem 0;
  background-color: #F1F5F9;
}

.text-gradient {
  background: linear-gradient(135deg, #0F172A 0%, #0B2545 50%, #13315C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-amber { color: var(--secondary-accent); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-center { text-align: center; }

/* Section Headers */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(11, 37, 69, 0.08);
  border: 1px solid var(--glass-border-glow);
  color: var(--primary-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.25rem auto;
}

/* Glass Card Base */
.glass-card {
  background: var(--glass-fill);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4, .glass-card h5, .glass-card h6 {
  color: #FFFFFF;
}

.glass-card .text-muted,
.glass-card p {
  color: #CBD5E1;
}

.glass-card .service-link {
  color: #F59E0B;
  font-weight: 700;
}

.glass-card:hover {
  border-color: var(--glass-border-glow);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(11, 37, 69, 0.2);
}

/* High Contrast Overrides for Dark Background Sections Site-Wide */
section[style*="rgba(15, 23, 42"],
section[style*="#1E293B"],
section[style*="#0F172A"] {
  background: #1E293B !important;
  color: #FFFFFF !important;
}

section[style*="rgba(15, 23, 42"] .section-title,
section[style*="#1E293B"] .section-title,
section[style*="#0F172A"] .section-title {
  color: #FFFFFF !important;
}

section[style*="rgba(15, 23, 42"] .section-subtitle,
section[style*="#1E293B"] .section-subtitle,
section[style*="#0F172A"] .section-subtitle {
  color: #CBD5E1 !important;
}

section[style*="rgba(15, 23, 42"] .section-badge,
section[style*="#1E293B"] .section-badge,
section[style*="#0F172A"] .section-badge {
  background: rgba(245, 158, 11, 0.15) !important;
  border: 1px solid rgba(245, 158, 11, 0.4) !important;
  color: #F59E0B !important;
  font-weight: 700 !important;
}

section[style*="rgba(15, 23, 42"] .glass-card,
section[style*="#1E293B"] .glass-card,
section[style*="#0F172A"] .glass-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
}

section[style*="rgba(15, 23, 42"] .glass-card h3,
section[style*="#1E293B"] .glass-card h3,
section[style*="#0F172A"] .glass-card h3 {
  color: #FFFFFF !important;
}

section[style*="rgba(15, 23, 42"] .glass-card p,
section[style*="#1E293B"] .glass-card p,
section[style*="#0F172A"] .glass-card p,
section[style*="rgba(15, 23, 42"] .glass-card .text-muted,
section[style*="#1E293B"] .glass-card .text-muted,
section[style*="#0F172A"] .glass-card .text-muted {
  color: #CBD5E1 !important;
}

section[style*="rgba(15, 23, 42"] .pill-item,
section[style*="#1E293B"] .pill-item,
section[style*="#0F172A"] .pill-item {
  background: rgba(245, 158, 11, 0.15) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  color: #F59E0B !important;
  font-weight: 700 !important;
}

/* Light Card Styling */
.light-card {
  background: #FFFFFF;
  border: 1px solid rgba(11, 37, 69, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.light-card:hover {
  border-color: var(--primary-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.12);
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-accent) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1E3A8A 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(11, 37, 69, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-accent) 0%, var(--ember-orange) 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FBBF24 0%, var(--secondary-accent) 100%);
  color: #0F172A;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(245, 158, 11, 0.5);
}

.btn-outline {
  background: rgba(11, 37, 69, 0.05);
  border: 1px solid var(--glass-border-glow);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--primary-accent);
  background: var(--primary-accent);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-phone {
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.4);
  color: var(--ember-orange);
  font-weight: 700;
}

.btn-phone:hover {
  background: var(--ember-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   HEADER & CAPSULE NAVIGATION (SINGLE LINE LAYOUT)
   ========================================================================== */
/* ==========================================================================
   HEADER & TOP NAVIGATION (WIREFRAME EXACT WHITE BAR)
   ========================================================================== */
.header-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  padding: 0.75rem 0;
}

.capsule-nav {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0B2545;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--secondary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.15rem;
}

.logo span {
  color: var(--secondary-accent);
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: #1E293B;
  white-space: nowrap;
  padding: 0.5rem 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-accent);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary-accent);
  border-radius: 2px;
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 230px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: #1E293B;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.dropdown-link i {
  color: var(--primary-accent);
  font-size: 0.8rem;
  width: 16px;
}

.dropdown-link:hover {
  background: #F1F5F9;
  color: var(--primary-accent);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #0B2545;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: rgba(11, 37, 69, 0.98);
  backdrop-filter: blur(25px);
  z-index: 1001;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--glass-border);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.drawer-link.active,
.drawer-link:hover {
  color: var(--primary-accent);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Sticky Bottom Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--glass-border);
  padding: 0.6rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }
}

/* ==========================================================================
   HERO BANNER SECTION (FULL-WIDTH BACKGROUND IMAGE WITH OVERLAID TEXT)
   ========================================================================== */
.hero-banner-section {
  position: relative;
  min-height: 540px;
  background: url('../images/hero-shingle-installation.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  padding: 5.5rem 0;
  overflow: hidden;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-banner-title {
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: #0B2545;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.hero-banner-subtitle {
  font-size: 1.15rem;
  color: #1E293B;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-banner-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(11, 37, 69, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   PREMIUM SOLUTION CARDS REDESIGN
   ========================================================================== */
.solution-card-premium {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-top: 4px solid var(--secondary-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.solution-card-premium:hover {
  transform: translateY(-8px);
  border-color: #E2E8F0;
  border-top-color: var(--primary-accent);
  box-shadow: 0 20px 40px rgba(11, 37, 69, 0.12);
}

.solution-img-wrapper {
  position: relative;
  height: 190px;
  width: 100%;
  overflow: hidden;
}

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

.solution-card-premium:hover .solution-img-wrapper img {
  transform: scale(1.08);
}

.solution-icon-floating {
  position: absolute;
  bottom: -22px;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0B2545;
  color: var(--secondary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(11, 37, 69, 0.3);
  z-index: 5;
  border: 2px solid #FFFFFF;
}

.solution-card-body {
  padding: 2rem 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.solution-title-premium {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0B2545;
  margin-bottom: 0.75rem;
}

.solution-desc-premium {
  font-size: 0.925rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.solution-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
}

.solution-feature-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1E293B;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-feature-item i {
  color: #16A34A;
  font-size: 0.8rem;
}

.btn-solution-cta {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(11, 37, 69, 0.06);
  border: 1px solid rgba(11, 37, 69, 0.15);
  color: #0B2545;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
  cursor: pointer;
}

.solution-card-premium:hover .btn-solution-cta {
  background: var(--secondary-accent);
  border-color: var(--secondary-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Dual Split Showcase Card */
.dual-split-card {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2.25rem;
  color: #FFFFFF;
}

/* ==========================================================================
   WHY DALLAS TRUSTS DoFixes Roofing SECTION (DRONE AERIAL PHOTO BACKGROUND)
   ========================================================================== */
.why-trust-section-bg {
  position: relative;
  background: url('../images/why-choose-us-bg.jpg') no-repeat center center / cover;
  padding: 5.5rem 0;
  overflow: hidden;
  color: #FFFFFF;
}

.why-trust-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.88) 0%, rgba(11, 37, 69, 0.94) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.why-trust-container {
  position: relative;
  z-index: 2;
}

.feature-card-clean {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 4px solid var(--secondary-accent);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card-clean:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  border-top-color: #0B2545;
}

.feature-icon-box-clean {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--secondary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.feature-title-clean {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B2545;
  margin-bottom: 0.5rem;
}

.feature-desc-clean {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.dual-split-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.dual-split-card:hover .dual-split-card-bg {
  transform: scale(1.05);
}

.dual-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.2) 0%, rgba(11, 37, 69, 0.88) 100%);
  z-index: 1;
}

.dual-split-content {
  position: relative;
  z-index: 2;
}

/* Stat Box Card */
.stat-box-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.stat-box-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0B2545;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.stat-box-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748B;
}

/* City Card */
.city-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: var(--transition-normal);
}

.city-card:hover {
  border-color: #0B2545;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(11, 37, 69, 0.1);
}

/* ==========================================================================
   TRUST STRIP (IMMEDIATELY BELOW HERO)
   ========================================================================== */
.trust-strip-section {
  margin-top: -1rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 10;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-strip-card {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.trust-strip-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid var(--glass-border-glow);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-strip-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-strip-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   ROOF PROBLEM DIAGNOSTIC SECTION
   ========================================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.problem-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.problem-img-wrap {
  height: 180px;
  position: relative;
  overflow: hidden;
}

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

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

.problem-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.problem-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.problem-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   SERVICES SECTION (5 CARDS)
   ========================================================================== */
.services-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-lg {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* ==========================================================================
   RESIDENTIAL VS COMMERCIAL SPLIT SECTION
   ========================================================================== */
.split-res-comm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.split-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.split-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: transform 0.5s ease;
  z-index: 0;
}

.split-card:hover .split-card-bg {
  transform: scale(1.05);
}

.split-card-overlay {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   STATISTICS STRIP
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #0B2545 0%, #13315C 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.5rem 0;
  color: #F8FAFC;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.stat-card {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-accent), transparent);
  opacity: 0.4;
  transition: opacity 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
  background: rgba(30, 41, 59, 0.85);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--glass-border-amber);
  color: var(--secondary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.stat-num {
  font-size: 2.85rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #FFFFFF 0%, #BAE6FD 50%, var(--primary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ==========================================================================
   PROCESS WORKFLOW TIMELINE
   ========================================================================== */
.process-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-node {
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   ROOFING SYSTEMS / MATERIALS
   ========================================================================== */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.system-card {
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-md);
}

.system-icon {
  font-size: 2rem;
  color: var(--secondary-accent);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   ROOF INSPECTION EDUCATION DIAGRAM
   ========================================================================== */
.diagram-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.diagram-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  background: #FFFFFF;
  display: block;
}

.diagram-hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 15px var(--primary-accent);
  transition: transform 0.2s ease;
}

.diagram-hotspot:hover {
  transform: scale(1.25);
}

.hotspot-tag {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9, 13, 22, 0.9);
  border: 1px solid var(--glass-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  white-space: nowrap;
  color: #FFFFFF;
  pointer-events: none;
}

/* ==========================================================================
   BEFORE & AFTER COMPARISON SLIDER
   ========================================================================== */
.before-after-container {
  max-width: 920px;
  margin: 0 auto;
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  border: 1px solid var(--glass-border);
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-after {
  background-image: url('https://images.unsplash.com/photo-1628744876497-eb30460be9f6?auto=format&fit=crop&w=1200&q=80');
}

.ba-before {
  background-image: url('https://images.unsplash.com/photo-1590069261209-f8e9b8642343?auto=format&fit=crop&w=1200&q=80');
  width: 50%;
  border-right: 3px solid var(--primary-accent);
}

.ba-badge {
  position: absolute;
  top: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  z-index: 5;
}

.ba-badge.before { left: 1.25rem; }
.ba-badge.after { right: 1.25rem; border-color: var(--glass-border-glow); color: var(--primary-accent); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-accent);
  cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 15px var(--primary-accent);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(2, 132, 199, 0.8);
  font-size: 0.95rem;
}

/* ==========================================================================
   PORTFOLIO FILTER & CARDS
   ========================================================================== */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.portfolio-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.portfolio-card:hover .portfolio-img-wrap img {
  transform: scale(1.08);
}

.portfolio-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(10px);
  color: var(--primary-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--glass-border-glow);
}

.portfolio-body { padding: 1.5rem; }
.portfolio-title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.portfolio-location { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.35rem; }

/* ==========================================================================
   SERVICE AREAS & LOCATION CARDS
   ========================================================================== */
.location-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.location-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.location-card:hover {
  border-color: var(--primary-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.15);
}

.location-card-primary {
  border-color: var(--glass-border-glow);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.location-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-area-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.surrounding-bar {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.08);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  color: var(--secondary-accent);
  font-weight: 700;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0;
}

.area-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.area-chip {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.area-chip:hover {
  border-color: var(--primary-accent);
  background: rgba(2, 132, 199, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   FAQ ACCORDION COMPONENT
   ========================================================================== */
.faq-container {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-accent);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   ESTIMATE FORM
   ========================================================================== */
/* ==========================================================================
   ESTIMATE FORM
   ========================================================================== */
.estimate-form-card {
  padding: 3rem;
  max-width: 850px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  background: #FFFFFF;
  border: 1px solid rgba(11, 37, 69, 0.2);
  border-radius: var(--radius-sm);
  color: #0F172A;
  font-size: 0.925rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 15px rgba(11, 37, 69, 0.2);
}

.form-select option {
  background: #FFFFFF;
  color: #0F172A;
}

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

.privacy-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.final-cta-banner {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(135deg, #0B2545 0%, #13315C 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  color: #F8FAFC;
}

.final-cta-banner h2,
.final-cta-banner p {
  color: #F8FAFC;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

/* ==========================================================================
   FOOTER ARCHITECTURE (GROUPED COLUMNS)
   ========================================================================== */
.footer {
  background: #0B2545;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 5rem;
  padding-bottom: 2rem;
  position: relative;
  color: #F8FAFC;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.925rem;
  margin: 1.25rem 0 1.75rem 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--secondary-accent);
  border-color: var(--secondary-accent);
  color: #0F172A;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--secondary-accent);
  padding-left: 0.25rem;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-info i {
  color: var(--primary-accent);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: #94A3B8;
  white-space: nowrap;
}

.footer-bottom div {
  white-space: nowrap;
}

.agency-credit {
  color: #CBD5E1 !important;
  white-space: nowrap;
}

.agency-credit a {
  color: #F59E0B !important;
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

.agency-credit a:hover {
  color: #FFFFFF !important;
}

/* ==========================================================================
   ACCREDITATION BADGES BAR (BELOW HERO)
   ========================================================================== */
.accreditation-bar-section {
  padding: 1.5rem 0;
  background: #0B2545;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.accreditation-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.925rem;
  font-weight: 700;
  color: #FFFFFF;
}

.accreditation-item i {
  font-size: 1.25rem;
  color: var(--secondary-accent);
}

/* ==========================================================================
   FEATURE 4-GRID ("WHY DALLAS TRUSTS DoFixes Roofing")
   ========================================================================== */
.features-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-pill-card {
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid rgba(11, 37, 69, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  transition: var(--transition-normal);
}

.feature-pill-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.12);
}

.feature-pill-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem auto;
  border-radius: 12px;
  background: rgba(11, 37, 69, 0.08);
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* ==========================================================================
   CUSTOMER REVIEWS GRID (WHAT OUR CUSTOMERS SAY)
   ========================================================================== */
.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid rgba(11, 37, 69, 0.1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 37, 69, 0.12);
  border-color: var(--secondary-accent);
}

.review-stars {
  color: var(--secondary-accent);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.2rem;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 37, 69, 0.08);
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .nav-menu { gap: 0.8rem; }
  .nav-link { font-size: 0.82rem; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .systems-grid { grid-template-columns: repeat(3, 1fr); }
  .features-4-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .split-res-comm { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .capsule-nav .btn { display: none; }
  .mobile-toggle { display: block; }
  .section-padding { padding: 3.5rem 0; }
  .hero-title { font-size: 2.2rem; }
  .accreditation-grid { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .features-4-grid { grid-template-columns: 1fr; }
  .reviews-grid-3 { grid-template-columns: 1fr; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid-5 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid-4 { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; flex-wrap: wrap; white-space: normal; gap: 0.5rem; }
  .footer-bottom div, .agency-credit { white-space: normal !important; }
}

