/* ============================================
   Towing Service Queens NYC - Main Stylesheet
   Bold Dark Design with Orange/Red Accents
   Inspired by towtruck.nyc style
   ============================================ */


:root {
  --primary: #a8dbc2;
  --primary-dark: #6ec39a;
  --primary-light: #c5e5d2;
  --secondary: #1d2a4e;
  --dark: #1d2a4e;
  --dark-mid: #2d3e6b;
  --dark-light: #3d4e7b;
  --red: #a8dbc2;
  --red-dark: #6ec39a;
  --white: #ffffff;
  --light: #f8f8f8;
  --gray: #888888;
  --gray-light: #e5e5e5;
  --gray-dark: #555555;
  --shadow: 0 4px 24px rgba(0,0,0,0.2);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.3);
  --radius: 6px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ MOBILE BOTTOM BAR — Two Big CTA Buttons ============ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  gap: 0;
}
.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.mbb-call { background: #16a34a; color: #fff !important; }
.mbb-chat { background: #2563eb; color: #fff !important; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
  text-transform: none;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TOP BAR (Red Gradient) ============ */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

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

.top-bar a {
  color: var(--white);
  font-weight: 700;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
}

.top-bar .urgent-btn {
  background: var(--white);
  color: var(--primary);
  padding: 6px 16px;
  font-weight: 800;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar .urgent-btn:hover {
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
}

/* ============ HEADER (Dark) ============ */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 800;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray);
  text-transform: none;
}

/* Navigation */
.nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-list > li > a {
  padding: 18px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--dark-light);
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-height: 450px;
  overflow-y: auto;
  z-index: 1001;
  padding: 4px 0;
  border-top: 3px solid var(--primary);
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--gray);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-dropdown-content a:hover {
  background: var(--dark-light);
  color: var(--primary);
}

.header-cta {
  display: none;
}

.header-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-cta a:hover {
  background: var(--primary-light);
}

/* Mobile Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
}

/* ============ HERO (Full-width dark overlay) ============ */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 0;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-style: italic;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.05;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero h1 .accent {
  color: var(--primary);
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255,74,17,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

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

.btn-dark:hover {
  background: var(--dark-light);
}

.btn-cta {
  background: var(--primary);
  color: var(--white);
  font-size: 1.15rem;
  padding: 16px 36px;
}

.btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(255,74,17,0.5);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.learn-more-btn:hover {
  background: var(--primary-dark);
}

/* ============ SECTIONS ============ */
.section {
  padding: 70px 0;
}

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

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

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

.section-red {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.section-red h2 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2 .highlight {
  background: var(--primary);
  color: var(--white);
  padding: 2px 12px;
  display: inline;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 700px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ============ SERVICES GRID (Image Cards like towtruck.nyc) ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--gray-light);
}

.service-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card-image {
  width: 100%;
  height: 200px;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-image .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
}

.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}

/* ============ NEIGHBORHOODS ============ */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.neighborhood-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  padding: 14px 18px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.neighborhood-card:hover {
  border-left-color: var(--primary);
  background: var(--dark-light);
}

.neighborhood-card .pin {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.neighborhood-card .name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.neighborhood-card .nickname {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  color: var(--gray);
  display: block;
  text-transform: none;
  font-weight: 400;
  font-style: italic;
}

/* Region Groups */
.region-group {
  margin-bottom: 35px;
}

.region-group h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
  padding-bottom: 8px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

/* ============ WHY CHOOSE US ============ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,160,23,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--primary);
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
  font-style: italic;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.8;
  margin-bottom: 25px;
}

.cta-banner .phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 20px;
}

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

.faq-item {
  background: var(--white);
  border-left: 4px solid var(--primary);
  margin-bottom: 4px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 18px 24px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background: var(--dark);
  color: var(--white);
}

.faq-item.active .faq-question::after {
  content: '\2212';
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 20px 24px;
  color: var(--gray-dark);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--dark);
  padding: 30px;
  border-top: 4px solid var(--primary);
  color: var(--white);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
  text-transform: uppercase;
}

.footer a {
  color: rgba(255,255,255,0.6);
}

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

.footer-links li {
  margin-bottom: 8px;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--primary);
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  background: var(--dark-light);
  padding: 12px 0;
  font-size: 0.82rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--gray);
}

.breadcrumbs-list li::after {
  content: '>';
  margin-left: 8px;
  color: var(--gray);
}

.breadcrumbs-list li:last-child::after {
  display: none;
}

.breadcrumbs-list li:last-child {
  color: var(--primary);
}

.breadcrumbs-list a {
  color: var(--gray);
}

.breadcrumbs-list a:hover {
  color: var(--primary);
}

/* ============ PAGE HERO (Inner Pages) ============ */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-style: italic;
}

.page-hero h1 .accent {
  color: var(--primary);
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 700px;
  line-height: 1.7;
}

.page-hero .hero-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
  display: inline-block;
}

/* ============ CONTENT AREA ============ */
.content-area {
  padding: 50px 0;
}

.content-area h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  margin-top: 35px;
  color: var(--dark);
}

.content-area h2:first-child {
  margin-top: 0;
}

.content-area h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  margin-top: 25px;
}

.content-area p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #555;
  font-size: 0.95rem;
}

.content-area ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.content-area ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #555;
  padding-left: 20px;
  position: relative;
}

.content-area ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
}

/* Content + Sidebar */
.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* ============ SIDEBAR ============ */
.sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-widget {
  background: var(--white);
  padding: 24px;
  margin-bottom: 20px;
  border-top: 4px solid var(--primary);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-light);
}

.sidebar-widget ul li {
  margin-bottom: 6px;
}

.sidebar-widget a {
  font-size: 0.85rem;
  color: #555;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-widget a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.sidebar-cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.sidebar-cta h3 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.sidebar-cta .phone {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

/* (mobile-call-bar replaced by mobile-bottom-bar — see above) */

/* ============ GOOGLE REVIEWS BADGE ============ */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-badge .stars {
  color: #fbbc04;
  font-size: 1.1rem;
}

.google-badge .rating {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.google-badge .label {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

/* ============ RESPONSIVE ============ */
@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero { min-height: 550px; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 80px 0; }
  .section-header h2 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 2fr 1fr; }
  .header-cta { display: block; }
  .mobile-bottom-bar { display: none !important; }
  .page-hero h1 { font-size: 2.8rem; }
  .cta-banner .phone-number { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .hero { min-height: 600px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .menu-toggle { display: none; }
  .nav-list { display: flex !important; }
}

@media (max-width: 1023px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 8px;
    gap: 0;
    border-top: 3px solid var(--primary);
  }

  .nav-list.active { display: flex; }

  .nav-list > li > a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 0;
  }

  .nav-dropdown-content {
    position: static;
    box-shadow: none;
    border-top: none;
    padding-left: 20px;
    display: none;
    background: rgba(255,255,255,0.03);
  }

  .nav-dropdown.active .nav-dropdown-content { display: block; }
}

@media (max-width: 767px) {
  .mobile-bottom-bar { display: flex; }
  .top-bar-left { display: none; }
  body { padding-bottom: 62px; }
  .hero h1 { font-size: 2rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .service-card-image { height: 180px; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* Accessibility - Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Skip to Content */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  z-index: 10000;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.skip-to-content:focus {
  top: 0;
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-accent { color: var(--primary); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
