/* 
  RCRS River City Roofing Services
  Custom Premium Design System
  Tailored Contractor Aesthetic: Navy Charcoal, Warm Copper Orange, Slate, and Pearl Gray
*/

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

/* --- CUSTOM VARIABLES --- */
:root {
  /* Brand Palette */
  --primary-copper: #E05A10;
  --primary-copper-hover: #C24E0D;
  --secondary-charcoal: #0F172A;
  --secondary-charcoal-hover: #1E293B;
  --slate-dark: #0F172A;
  --slate-gray: #475569;
  --slate-light: #F8FAFC;
  --silver-gray: #F1F5F9;
  --border-light: #E2E8F0;
  --white: #FFFFFF;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Utilities */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --max-width: 1200px;
}

/* --- RESET AND BASIC STYLES --- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--slate-gray);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-dark);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; margin-top: 0; }

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.section-light {
  background-color: var(--slate-light);
}

.section-charcoal {
  background-color: var(--secondary-charcoal);
  color: var(--white);
}

.section-charcoal h2, 
.section-charcoal h3,
.section-charcoal p {
  color: var(--white);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-copper { color: var(--primary-copper); }

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- BUTTONS AND INTERACTIVES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-copper);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-copper-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-copper);
  color: var(--primary-copper);
}

.btn-secondary:hover {
  background-color: var(--primary-copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--secondary-charcoal);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* --- TOP BAR AND HEADER --- */
.top-bar {
  background-color: var(--secondary-charcoal);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    display: block;
  }
}

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

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.logo-link svg {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--secondary-charcoal);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary-copper);
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--slate-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-copper);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--slate-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-right: var(--space-sm);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-copper);
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--slate-dark);
  font-size: 1.75rem;
  cursor: pointer;
  display: block;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* --- MOBILE NAVIGATION --- */
.mobile-nav {
  position: fixed;
  top: 73px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 73px);
  background-color: var(--white);
  z-index: 99;
  transition: var(--transition-normal);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  overflow-y: auto;
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-dark);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: var(--space-xs);
}

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

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background-color: var(--secondary-charcoal);
  color: var(--white);
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-eyebrow {
  font-family: var(--font-heading);
  color: var(--primary-copper);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.hero-headline {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.25rem;
  }
}

.hero-subheadline {
  color: var(--border-light);
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-copper);
}

/* --- LEAD CAPTURE FORM CARD --- */
.form-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--primary-copper);
  color: var(--slate-dark);
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.form-subtext {
  font-size: 0.9rem;
  color: var(--slate-gray);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--slate-dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-copper);
  box-shadow: 0 0 0 3px rgba(224, 90, 16, 0.15);
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--slate-gray);
  text-align: center;
  margin-top: var(--space-sm);
}

/* --- TRUST TICKER (SCROLLING STRIP) --- */
.trust-strip {
  background-color: var(--silver-gray);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}

.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--slate-dark);
}

.trust-strip-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-copper);
}

/* --- SECTION HEADERS --- */
.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-xl) auto;
}

.section-label {
  font-family: var(--font-heading);
  color: var(--primary-copper);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--slate-gray);
}

/* --- SERVICES CARDS --- */
.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-light);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  background-color: var(--primary-copper);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: var(--slate-light);
  color: var(--primary-copper);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  transition: var(--transition-fast);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-copper);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--primary-copper);
}

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

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.service-body {
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-copper);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
}

.service-link svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-copper);
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* --- MATERIALS COMPARISON TABLE --- */
.table-container {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th {
  background-color: var(--secondary-charcoal);
  color: var(--white);
  padding: 1rem var(--space-md);
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem var(--space-md);
  border-bottom: 1px solid var(--border-light);
  background-color: var(--white);
}

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

.comparison-table tr:nth-child(even) td {
  background-color: var(--slate-light);
}

.local-note {
  font-size: 0.85rem;
  color: var(--slate-gray);
  margin-top: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.local-note svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- WHY CHOOSE US (TRUST PILLARS) --- */
.why-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .why-section {
    grid-template-columns: 1fr 1.2fr;
  }
}

.why-illustration {
  background-color: var(--secondary-charcoal);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 350px;
}

.why-illustration-logo {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.why-illustration-logo svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-copper);
}

.why-badge {
  background-color: var(--primary-copper);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-heading);
}

.why-badge .years {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.why-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-feature {
  display: flex;
  gap: var(--space-sm);
}

.why-feature-icon {
  font-size: 1.5rem;
  color: var(--primary-copper);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-copper);
}

.why-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--slate-dark);
}

.why-feature-desc {
  font-size: 0.9rem;
}

/* --- FULL-WIDTH PHOTO DIVIDER --- */
.photo-divider {
  height: 400px;
  background-color: var(--secondary-charcoal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.photo-divider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7));
  z-index: 1;
}

.photo-divider-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.photo-divider-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.photo-divider-desc {
  font-size: 1.1rem;
  color: var(--border-light);
}

/* --- PROJECT GALLERY PREVIEW --- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  background-color: var(--silver-gray);
  border: 1px solid var(--border-light);
  color: var(--slate-gray);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-copper);
  border-color: var(--primary-copper);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  padding: var(--space-md);
  text-align: center;
  transition: var(--transition-normal);
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-copper);
  margin-bottom: var(--space-xs);
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
  color: var(--white);
  padding: var(--space-md);
  z-index: 2;
  text-align: left;
}

.gallery-tag {
  background-color: var(--primary-copper);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.gallery-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

/* --- PROCESS STEPS --- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  text-align: center;
  position: relative;
  padding: var(--space-md);
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-copper);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto var(--space-md) auto;
  box-shadow: var(--shadow-md);
}

.process-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--slate-gray);
}

/* --- TESTIMONIALS --- */
.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--slate-dark);
}

.reviews-summary svg {
  width: 20px;
  height: 20px;
  fill: #FBBF24;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #FBBF24;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.testimonial-meta {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-dark);
}

.testimonial-tag {
  font-size: 0.75rem;
  color: var(--primary-copper);
  font-weight: 600;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-trigger svg {
  width: 18px;
  height: 18px;
  fill: var(--slate-gray);
  transition: var(--transition-fast);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-content-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--slate-gray);
}

.faq-item.active .faq-trigger svg {
  transform: rotate(45deg);
  fill: var(--primary-copper);
}

.faq-item.active .faq-content {
  max-height: 250px;
}

/* --- SERVICE AREA DIRECTORY (CLUSTERS) --- */
.location-clusters {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location-clusters { grid-template-columns: repeat(2, 1fr); }
}

.cluster-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.cluster-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  border-bottom: 2px solid var(--primary-copper);
  padding-bottom: var(--space-xs);
}

.cluster-county {
  font-size: 0.85rem;
  color: var(--slate-gray);
  margin-bottom: var(--space-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.city-link {
  font-size: 0.95rem;
  color: var(--slate-gray);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.city-link:hover {
  color: var(--primary-copper);
}

.city-link svg {
  width: 12px;
  height: 12px;
  fill: var(--primary-copper);
}

.fallback-line {
  font-size: 0.95rem;
  color: var(--slate-gray);
  text-align: center;
  margin-top: var(--space-xl);
}

.fallback-line a {
  color: var(--primary-copper);
  font-weight: 700;
}

/* --- FOOTER --- */
.footer {
  background-color: var(--secondary-charcoal);
  color: var(--white);
  padding: var(--space-xxl) 0 var(--space-lg) 0;
  border-top: 4px solid var(--primary-copper);
}

.footer h2,
.footer h3,
.footer h4,
.footer p,
.footer a {
  color: #E2E8F0;
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-col-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-copper);
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-copper);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-copper);
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-copper);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.85rem;
  color: var(--slate-gray);
}

.footer-copyright a {
  color: var(--primary-copper);
  font-weight: 600;
}

/* --- STICKY MOBILE CTA BAR --- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(15, 23, 42, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 99;
}

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

.mobile-cta-bar a {
  padding: 0.9rem 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.mobile-cta-call {
  background-color: var(--secondary-charcoal);
  color: var(--white) !important;
}

.mobile-cta-estimate {
  background-color: var(--primary-copper);
  color: var(--white) !important;
}

.mobile-cta-bar svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* --- LIGHTBOX OVERLAY --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-sm);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* --- FOUND story AND Spotlight --- */
.about-hero {
  background-color: var(--secondary-charcoal);
  color: var(--white);
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
}

.spotlight-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 768px) {
  .spotlight-grid { grid-template-columns: 1fr 1.5fr; }
}

.spotlight-avatar {
  background-color: var(--secondary-charcoal);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  position: relative;
}

.spotlight-avatar svg {
  width: 64px;
  height: 64px;
  fill: var(--primary-copper);
}

.spotlight-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--slate-dark);
}

.spotlight-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-copper);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

/* --- FORM FEEDBACK CARD --- */
.form-feedback {
  display: none;
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  border-radius: var(--radius-sm);
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}
