/* ============================================
   Legacy Towing & Transport LLC — Global Styles
   Dark theme with red accents
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary-bg: #111111;
  --secondary-bg: #1a1a1a;
  --surface: #222222;
  --surface-hover: #2a2a2a;
  --red: #CC0000;
  --red-hover: #e60000;
  --red-dark: #990000;
  --white: #ffffff;
  --text: #f0f0f0;
  --text-muted: #888888;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-dark: #333333;
  --border: #333333;
  --overlay: rgba(0, 0, 0, 0.7);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--red-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

section {
  padding: 80px 0;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.section-subtitle {
  color: var(--red);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.section-title {
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(204, 0, 0, 0.4);
}

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

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.2rem;
}

/* --- Phone Link --- */
.phone-link {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color var(--transition);
}
.phone-link:hover {
  color: var(--red);
}

.phone-huge {
  font-size: clamp(2rem, 6vw, 3.5rem);
  display: block;
  margin: 0.5rem 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 55px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  display: none;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
}

.header-phone a {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
}

.header-phone a:hover {
  color: var(--red);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}

/* Navigation */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary-bg);
  padding: 100px 30px 30px;
  transition: right var(--transition);
  overflow-y: auto;
  z-index: 999;
  border-left: 1px solid var(--border);
}

.main-nav.open {
  right: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}

.nav-overlay.show {
  display: block;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-nav ul li a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--red);
  padding-left: 10px;
}

.main-nav .nav-has-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav .nav-has-dropdown > a::after {
  content: '+';
  font-size: 1.3rem;
  transition: transform var(--transition);
}

.main-nav .nav-has-dropdown.open > a::after {
  content: '−';
}

.nav-dropdown {
  display: none;
  padding-left: 15px;
}

.nav-has-dropdown.open .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  font-size: 0.95rem;
  padding: 10px 0;
  color: var(--gray-light);
}

.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  color: var(--red);
}

.nav-cta {
  margin-top: 20px;
}

.nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition);
}

.nav-cta a:hover {
  background: var(--red-hover);
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 20px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(17, 17, 17, 0.7) 50%,
    rgba(17, 17, 17, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-phone {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   SERVICE CARDS GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  background: var(--surface-hover);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--red);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  transition: gap var(--transition);
}

.service-card:hover .card-arrow {
  gap: 12px;
}

/* ============================================
   ROADSIDE ASSISTANCE SECTION
   ============================================ */
.roadside-section {
  background: var(--secondary-bg);
}

.roadside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.roadside-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.roadside-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.roadside-content h2 {
  margin-bottom: 1rem;
}

.roadside-content p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.roadside-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 2rem;
}

.roadside-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.roadside-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
  flex-shrink: 0;
}

/* ============================================
   STATEWIDE SECTION
   ============================================ */
.statewide-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statewide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.statewide-section .container {
  position: relative;
  z-index: 1;
}

.statewide-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.statewide-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.statewide-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.statewide-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.statewide-stat .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

/* ============================================
   TRUST SIGNALS
   ============================================ */
.trust-section {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.trust-item {
  padding: 20px;
}

.trust-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--red);
}

.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.trust-item p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-section {
  background: var(--primary-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  fill: #f5a623;
}

.review-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.review-source {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section h2 {
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--primary-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ============================================
   SERVICE PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: var(--secondary-bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

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

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray-light);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

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

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

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

.breadcrumbs .current {
  color: var(--red);
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-content {
  padding: 80px 0;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}

.service-main h2 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-main h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.service-main p {
  color: var(--gray-light);
  margin-bottom: 1.25rem;
}

.service-main ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.service-main ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.6rem;
  color: var(--gray-light);
}

.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-services-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--gray-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  transition: all var(--transition);
}

.sidebar-services-list a::before {
  content: '›';
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 700;
}

.sidebar-services-list a:hover,
.sidebar-services-list a.active {
  color: var(--red);
  padding-left: 6px;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border: none;
  text-align: center;
}

.sidebar-cta h3 {
  border: none;
  color: var(--white);
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.sidebar-cta .phone-link {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
}

.sidebar-hours {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-hours svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
  vertical-align: middle;
  margin-right: 4px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--red);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--red);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--red);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-light);
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--red);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-info-text p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-text a {
  color: var(--gray-light);
  transition: color var(--transition);
}

.contact-info-text a:hover {
  color: var(--red);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0.5rem;
}

.payment-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--gray-light);
}

/* ============================================
   SERVICE AREA PAGE
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.area-card h3 {
  margin-bottom: 1rem;
}

.area-card p {
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}

.area-city-tag {
  background: rgba(204, 0, 0, 0.1);
  border: 1px solid rgba(204, 0, 0, 0.3);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-light);
  transition: fill var(--transition);
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--gray);
}

.footer-contact-item a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: var(--gray);
  font-size: 0.85rem;
}

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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 20px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.15);
  border-radius: 50%;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--red);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
  .logo-text {
    display: block;
  }
  .header-phone {
    display: flex;
  }
}

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

  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    overflow: visible;
  }

  .main-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .main-nav ul li a {
    padding: 8px 14px;
    border-bottom: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    padding-left: 14px;
    color: var(--red);
  }

  .nav-has-dropdown {
    position: relative;
  }

  .nav-has-dropdown > a {
    padding-bottom: 20px;
    margin-bottom: -12px;
  }

  .nav-has-dropdown > a::after {
    content: '▾' !important;
    font-size: 0.7rem;
    margin-left: 4px;
  }

  .nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: -10px;
    background: var(--secondary-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 250px;
    padding: 8px 0;
    box-shadow: var(--shadow-lg);
    z-index: 100;
  }

  /* Invisible bridge to prevent gap hover loss */
  .nav-has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
    display: none;
  }

  .nav-has-dropdown:hover::after {
    display: block;
  }

  .nav-has-dropdown:hover .nav-dropdown,
  .nav-has-dropdown.open .nav-dropdown {
    display: block;
  }

  .nav-dropdown li a {
    padding: 10px 20px;
    border-bottom: none;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
  }

  .nav-dropdown li a:hover {
    background: var(--surface);
    color: var(--red);
    padding-left: 20px;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 10px;
  }

  .nav-cta a {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .nav-overlay {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }

  .hero {
    min-height: 85vh;
  }

  .roadside-grid,
  .about-grid,
  .contact-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .statewide-stats {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-lg {
    padding: 14px 30px;
    font-size: 1.05rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .roadside-features {
    grid-template-columns: 1fr;
  }
}
