/* ========================================
   OWENS AUTOMOTIVE - PRODUCTION CSS
   Complete stylesheet matching ALL HTML classes
   ======================================== */

:root {
  --primary: #c41230;
  --dark: #000;
  --light: #fff;
  --bg-dark: #1a1a1a;
  --bg-light: #f8f8f8;
  --text-dark: #333;
  --text-light: #666;
  --border: #ddd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #a00e24;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   TOP BANNER
   ======================================== */

.top-banner {
  background-color: var(--dark);
  color: var(--light);
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.banner-content p {
  margin: 0;
  font-size: 14px;
}

.banner-content a {
  color: var(--light);
  font-weight: 600;
}

.banner-content a:hover {
  text-decoration: underline;
}

.banner-text,
.banner-phone {
  color: var(--light);
  font-size: 14px;
}

.banner-top {
  background-color: var(--dark);
  color: var(--light);
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
}

.banner-top p {
  margin: 5px 0;
  font-size: 14px;
}

.banner-top a {
  color: var(--light);
  font-weight: 600;
}

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

.phone-number {
  color: var(--light);
  margin: 0;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar,
.main-nav {
  background-color: var(--light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1003;
}

.nav-container,
.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 15px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu li.active > a {
  color: var(--primary);
  background-color: var(--bg-light);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--light);
  list-style: none;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999;
  border-radius: 0;
}

.dropdown:hover .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* ========================================
   HAMBURGER MENU
   ======================================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1005;
  }

  .hamburger.active {
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .nav-container,
  .navbar-container {
    position: relative;
    z-index: 1005;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: var(--light);
    display: none;
    z-index: 1004;
    padding: 0;
    padding-top: 80px;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-menu li {
    border-bottom: 1px solid var(--border);
    margin: 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .nav-menu > li > a:hover,
  .nav-menu > li > a.active {
    color: var(--primary);
    background-color: var(--bg-light);
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: var(--bg-light);
    box-shadow: none;
    min-width: 0;
    margin: 0;
    padding: 0;
  }

  .dropdown-menu.active,
  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu li {
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 14px 24px 14px 48px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
  }

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero,
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
}

.hero {
  min-height: 600px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.hero-overlay h1 {
  color: var(--light);
}

.hero-overlay p {
  color: var(--light);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1,
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: var(--light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2,
.hero-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--light);
}

.hero p,
.hero-content p {
  font-size: 18px;
  color: var(--light);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--light);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--light);
}

.badge {
  height: 80px;
  margin: 0 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 20px;
  text-align: center;
}

.hero-quote p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.hero-quote footer {
  font-style: normal;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0;
}

.about-hero {
  background-color: #333;
  overflow: hidden;
  min-height: 400px;
}

.about-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
}

.about-hero .hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.24) 100%);
}

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

.about-hero .hero-content {
  position: relative;
  z-index: 2;
}

.quote-icon {
  color: var(--light);
  opacity: 0.7;
  margin-bottom: 20px;
}

.quote-divider {
  width: 60px;
  border: none;
  border-top: 1px solid var(--light);
  margin: 20px auto;
  opacity: 0.5;
}

.services-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

/* ========================================
   BUTTONS
   ======================================== */

.cta-button,
.btn-primary,
.appointment-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--light);
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button:hover,
.btn-primary:hover,
.appointment-button:hover {
  background-color: #a00e24;
  transform: translateY(-2px);
}

.btn {
  background-color: var(--primary);
  color: var(--light);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #a00e24;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* ========================================
   SECTIONS
   ======================================== */

.intro-text {
  background-color: var(--light);
  padding: 40px 0;
  text-align: center;
}

.intro-text p {
  font-size: 18px;
  color: var(--text-dark);
}

.intro-text a {
  color: var(--primary);
  font-weight: 600;
}

.dark-bg {
  background-color: var(--bg-dark);
  color: var(--light);
  padding: 60px 0;
}

.dark-bg h2 {
  color: var(--light);
}

.dark-bg a {
  color: var(--primary);
}

.dark-bg a.appointment-button {
  color: var(--light);
}

.section-divider {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
}

.section-divider h2 {
  margin-bottom: 0;
  color: var(--light);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.section-divider h2::before,
.section-divider h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   APPOINTMENT SECTION
   ======================================== */

.request-appointment {
  padding: 60px 0;
  text-align: center;
}

.appointment-button-wrapper {
  margin-top: 30px;
}

.appointment-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  text-align: center;
}

.appointment-section h2,
.appointment-section > p:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.appointment-section h2::before,
.appointment-section h2::after,
.appointment-section > p:first-child::before,
.appointment-section > p:first-child::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--text-dark);
}

.appointment-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.reviews-widget {
  text-align: center;
  margin-bottom: 50px;
}

.google-reviews {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  display: inline-block;
  max-width: 300px;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.rating {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

.stars {
  font-size: 20px;
  color: #ffc107;
}

.business-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.review-count {
  font-size: 14px;
  color: var(--text-light);
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.review-card h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 18px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.review-date {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.review-text {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

/* ========================================
   VEHICLES SECTION
   ======================================== */

.vehicles-service,
.vehicles-section {
  background-color: var(--bg-dark);
  padding: 60px 24px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.vehicles-section h2,
.vehicles-section .section-intro,
.vehicles-section .vehicles-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.vehicles-section h2 {
  color: var(--light);
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 16px;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.vehicle-category {
  background-color: transparent;
  padding: 0;
  text-align: center;
}

.vehicle-category h3 {
  color: var(--light);
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vehicle-image {
  margin-bottom: 20px;
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.vehicle-list {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.vehicle-category .categories {
  color: rgba(255, 255, 255, 0.5);
}

.vehicle-category p {
  color: rgba(255, 255, 255, 0.7);
}

.vehicles-section .section-intro {
  color: rgba(255, 255, 255, 0.6);
}

.vehicle-category ul {
  list-style: none;
  margin-left: 0;
  text-align: left;
}

.vehicle-category ul li {
  color: var(--light);
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vehicle-category ul li:last-child {
  border-bottom: none;
}

.categories {
  color: #999;
  font-size: 13px;
  margin-bottom: 15px;
}

/* ========================================
   ASE SEAL SECTION
   ======================================== */

.ase-seal {
  background-color: var(--light);
  padding: 80px 0;
}

.ase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seal-image {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.seal-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.seal-text p {
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
}

.seal-text a {
  color: var(--text-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ase-content {
    grid-template-columns: 1fr;
  }

  .seal-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .seal-text h2 {
    text-align: center;
  }
}

/* ========================================
   LOCATIONS SECTION
   ======================================== */

.locations {
  background-color: var(--light);
  padding: 60px 0;
}

.locations .section-divider h2 {
  color: var(--text-dark);
}

.locations .section-divider h2::before,
.locations .section-divider h2::after {
  background-color: var(--text-dark);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.location-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.location-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.location-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.location-phone {
  margin: 15px 0;
}

.location-phone a {
  color: var(--primary);
  font-weight: 600;
}

.location-link {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.location-link:hover {
  background-color: #a00e24;
}

/* ========================================
   AFFILIATIONS SECTION
   ======================================== */

.affiliations {
  background-color: var(--bg-dark);
  padding: 60px 0;
  text-align: center;
}

.affiliations h2 {
  color: var(--light);
  margin-bottom: 40px;
  font-size: 32px;
}

.affiliations-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.affiliations-carousel img {
  height: 80px;
  width: auto;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.affiliations-carousel img:hover {
  filter: brightness(1.1);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid-section {
  padding: 60px 0;
  background-color: var(--light);
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.main-content {
  padding: 40px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.about-section h1::before,
.about-section h1::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--text-dark);
  max-width: 100vw;
}

.about-subsection {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.alternating-layout.image-left {
  grid-template-columns: 1fr 1fr;
}

.alternating-layout.image-right {
  grid-template-columns: 1fr 1fr;
}

.alternating-layout.image-right {
  direction: rtl;
}

.alternating-layout.image-right > * {
  direction: ltr;
}

.section-image {
  overflow: hidden;
  border-radius: 0;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-content {
  text-align: center;
}

.section-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-content p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 300;
}

.section-content a {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-subsection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .alternating-layout.image-right {
    direction: ltr;
  }
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
  margin-bottom: 60px;
  background-color: var(--light);
  padding: 60px 0;
  margin: 60px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.team-section h2::before,
.team-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--text-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.team-card {
  text-align: center;
  background-color: var(--light);
  padding: 0;
  border-radius: 0;
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 15px;
}

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

.team-card h3 {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 10px;
  color: var(--text-dark);
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  display: inline;
}

.team-card h3::after {
  content: " - ";
}

.team-title {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  display: inline;
}

/* ========================================
   STANDOUT SECTION
   ======================================== */

.standout-section {
  margin-bottom: 60px;
  background-color: var(--light);
  padding: 60px 0;
}

.standout-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.standout-section h2::before,
.standout-section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--text-dark);
}

.standout-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.standout-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-image {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 20px;
}

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

.feature-content {
  text-align: center;
}

.feature-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.feature-content ul,
.feature-content ol {
  list-style: disc;
  text-align: left;
  display: inline-block;
  margin-left: 0;
}

.feature-content li {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .standout-features {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  padding: 30px 0;
  color: var(--text-dark);
}

.content-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.content-section ul {
  margin-left: 1.5rem;
  margin-bottom: 15px;
}

.content-section li {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.highlight-box {
  background-color: var(--bg-light);
  padding: 30px;
  border-left: 4px solid var(--primary);
  border-radius: 5px;
  margin: 30px 0;
}

.highlight-box h2 {
  margin-top: 0;
}

.info-box {
  background-color: #e8f4f8;
  padding: 20px;
  border-left: 4px solid var(--primary);
  border-radius: 5px;
  margin: 20px 0;
}

.info-box p {
  color: var(--text-dark);
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  padding: 40px 0;
}

.cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.phone-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.image-section {
  margin: 40px 0;
}

.image-section figure {
  margin: 0;
  text-align: center;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.image-section figcaption {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero {
  background-color: var(--bg-light);
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
  font-size: 36px;
  color: var(--text-dark);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 5px rgba(196, 18, 48, 0.3);
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #a00e24;
}

.info-block {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.info-block p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 10px;
}

.info-block a {
  color: var(--primary);
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

.hours-block {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.hours-block h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.open-status {
  color: #28a745;
  font-weight: 600;
  margin-top: 10px;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.gallery-hero {
  background-color: var(--bg-dark);
  color: var(--light);
  padding: 60px 0;
  text-align: center;
}

.gallery-hero h1 {
  font-size: 36px;
  color: var(--light);
}

.gallery-section {
  padding: 40px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active,
.lightbox.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--light);
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  transition: opacity 0.3s ease;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 0.7;
}

/* ========================================
   BLOG PAGE
   ======================================== */

.blog-hero {
  position: relative;
  height: 400px;
  background-color: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.blog-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.blog-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
  font-size: 48px;
}

.blog-content {
  padding: 40px 0;
}

.blog-container {
  text-align: center;
}

.coming-soon {
  font-size: 18px;
  color: var(--text-light);
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-header {
  text-align: center;
  padding: 40px 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.privacy-header h1 {
  font-size: 36px;
  color: var(--text-dark);
}

.privacy-content {
  color: var(--text-dark);
}

.privacy-content h2 {
  font-size: 22px;
  margin: 30px 0 15px 0;
  color: var(--text-dark);
}

.privacy-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.privacy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 15px;
}

.privacy-content li {
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-block {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.contact-block p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-block a {
  color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer,
.site-footer {
  background-color: var(--bg-dark);
  color: var(--light);
  padding: 40px 0 20px 0;
}

.footer-container,
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section,
.links-section,
.social-section,
.business-info,
.service-area,
.links,
.social {
  margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--light);
  font-size: 18px;
  margin-bottom: 15px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-section p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
}

.social-links svg {
  width: 20px;
  height: 20px;
  color: var(--light);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 13px;
  margin: 5px 0;
}

.service-area {
  color: var(--text-light);
  font-size: 13px;
}

.powered-by {
  color: var(--text-light);
  font-size: 12px;
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--light);
  padding: 20px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  flex: 1;
}

.cookie-content h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

.cookie-accept {
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept:hover {
  background-color: #a00e24;
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: var(--light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background-color: #a00e24;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .banner-content {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .badge {
    height: 60px;
  }

  .services-grid,
  .reviews-cards,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .section-divider {
    padding: 20px 0;
  }

  .section-divider h2 {
    font-size: 24px;
  }

  .appointment-section {
    padding: 40px 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .cookie-accept {
    width: 100%;
  }
}

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

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

  .hero h1 {
    font-size: 24px;
  }

  .affiliations-carousel {
    gap: 20px;
  }

  .affiliations-carousel img {
    height: 60px;
  }

  .cta-button,
  .btn-primary,
  .appointment-button {
    width: 100%;
    padding: 12px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.active {
  color: var(--primary);
  font-weight: 600;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ========================================
   HEADER VARIATIONS
   ======================================== */

.site-header {
  background-color: var(--light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header {
  background-color: var(--light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header {
  background-color: var(--light);
}
