/* Mr. Rooter Plumbing of Charlotte - Main Stylesheet */
/* Fonts: Lexend Deca (headings) + Cabin (body) */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;500;600;700;800;900&family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --primary: #407ec9;
  --primary-dark: #2d63a5;
  --primary-light: #6b9fd4;
  --secondary: #f5c200;
  --secondary-dark: #d4a800;
  --dark: #1f2927;
  --dark-alt: #2a3533;
  --gray: #5e6e6b;
  --gray-light: #e8eceb;
  --light: #f4f7f6;
  --white: #ffffff;
  --red: #c0392b;
  --shadow: 0 4px 20px rgba(31,41,39,0.1);
  --shadow-md: 0 8px 32px rgba(31,41,39,0.15);
  --shadow-lg: 0 16px 48px rgba(31,41,39,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cabin', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

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

img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }

/* Emergency Banner */
.emergency-banner {
  background: var(--secondary);
  color: var(--dark);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.emergency-banner a {
  color: var(--dark);
  text-decoration: underline;
  font-weight: 700;
}
.emergency-banner a:hover { color: var(--primary-dark); }

/* Header */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 42px; width: auto; }
.logo-text { color: white; font-family: 'Lexend Deca', sans-serif; font-size: 1rem; font-weight: 700; }

nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
nav a:hover, nav a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.header-cta {
  background: var(--secondary);
  color: var(--dark) !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.9375rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(245,194,0,0.4);
}
.header-cta:hover {
  background: var(--secondary-dark) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,194,0,0.5) !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: white;
}
.menu-toggle svg { width: 28px; height: 28px; }

/* Hero */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31,41,39,0.95) 45%, rgba(31,41,39,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: white;
  font-weight: 900;
  max-width: 700px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero h1 span { color: var(--secondary); }
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Lexend Deca', sans-serif;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(64,126,201,0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(64,126,201,0.5);
}

.btn-gold {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(245,194,0,0.4);
}
.btn-gold:hover {
  background: var(--secondary-dark);
  color: var(--dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,194,0,0.5);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: white;
}

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

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Stats Band */
.stats-band {
  background: var(--primary);
  padding: 3rem 1.5rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  text-align: center;
}
.stat-item { color: white; }
.stat-number {
  display: block;
  font-family: 'Lexend Deca', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-top: 0.375rem;
}

/* Section Layout */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: rgba(64,126,201,0.1);
  color: var(--primary);
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Featured Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(64,126,201,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(64,126,201,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; color: var(--primary); }
.service-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.625rem; }
.service-card p { color: var(--gray); font-size: 0.9375rem; line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1rem;
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Value Props */
.value-props {
  background: var(--light);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-icon svg { width: 30px; height: 30px; color: white; }
.value-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* Testimonials */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-header h2 { color: white; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.6); }
.testimonials-section .section-tag { background: rgba(245,194,0,0.15); color: var(--secondary); }

.testimonial-carousel { position: relative; max-width: 800px; margin: 0 auto; }
.tc-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.tc-slide {
  min-width: 100%;
  padding: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
}
.tc-stars { color: var(--secondary); font-size: 1.25rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
.tc-quote {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tc-cite {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  font-style: normal;
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.tc-dot.active { background: var(--secondary); width: 28px; border-radius: 5px; }

/* Before/After Slider */
.ba-section { background: var(--light); }
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.ba-text p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }

/* Service Area */
.map-section { padding: 5rem 1.5rem; }
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.map-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.map-text p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.area-chip {
  background: rgba(64,126,201,0.1);
  color: var(--primary-dark);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}
#service-area-map {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* FAQ */
.faq-section { background: var(--light); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--dark);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--primary); }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-body { padding: 0 1.5rem 1.25rem; color: var(--gray); line-height: 1.7; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta-section h2 { color: white; font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.0625rem; max-width: 560px; margin: 0 auto 2rem; }

/* Image Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
#lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.about-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.rich-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.rich-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.rich-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rich-letter {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rich-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--primary); }
.rich-card p { color: var(--gray); font-size: 0.9375rem; line-height: 1.6; }

/* Services Page */
.services-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.services-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.services-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }

.service-category { margin-bottom: 3.5rem; }
.service-category h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  border-bottom: 3px solid var(--secondary);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-category h2 svg { width: 24px; height: 24px; }
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.service-pill {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
}
.service-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(64,126,201,0.04);
  transform: translateX(4px);
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.contact-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.contact-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; font-size: 1.0625rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-box h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(64,126,201,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-detail-text strong { display: block; font-weight: 700; margin-bottom: 0.25rem; color: var(--dark); }
.contact-detail-text span, .contact-detail-text a { color: var(--gray); font-size: 0.9375rem; }
.contact-detail-text a:hover { color: var(--primary); }

.contact-form-box {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.375rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--dark);
  transition: border-color var(--transition);
  background: white;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(64,126,201,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-submit:focus-visible { outline: 3px solid var(--secondary); outline-offset: 3px; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #1a7a3a;
  background: #e8f5e9;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 4rem 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  color: white;
  font-family: 'Lexend Deca', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--secondary); }
.neighborly-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.8125rem;
}
.neighborly-badge img { height: 18px; filter: brightness(0) invert(1) opacity(0.7); }

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--secondary);
  color: var(--dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245,194,0,0.5);
  text-decoration: none;
  transition: all var(--transition);
}
.floating-cta:hover {
  transform: scale(1.1);
  color: var(--dark);
  box-shadow: 0 6px 28px rgba(245,194,0,0.65);
}
.floating-cta svg { width: 26px; height: 26px; }
@media (min-width: 768px) { .floating-cta { width: 68px; height: 68px; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* Page hero shared */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.875rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 960px) {
  .ba-wrap { grid-template-columns: 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 1rem; gap: 0.25rem; z-index: 50; }
  nav.open { display: flex; }
  nav a { width: 100%; padding: 0.75rem 1rem; }
  .menu-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: 70vh; }
}
@media (max-width: 480px) {
  section { padding: 3.5rem 1rem; }
  .hero-content { padding: 3.5rem 1rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.9375rem; }
}

/* Responsive utility grids */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .three-col-grid { grid-template-columns: 1fr; }
}

/* Print/reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
