/*
Theme Name: Ingram & Sons Automotive
Theme URI: https://ingramandsonsauto.com
Description: Custom theme for Ingram & Son's Automotive - Premium Automotive Service in Dallas, TX
Version: 2.0
Author: Ingram & Sons
Text Domain: ingramandsons
*/

/* ========== DESIGN SYSTEM VARIABLES ========== */
:root {
  --navy-dark: #0e1a2e;
  --navy: #1b2c58;
  --navy-light: #243a6a;
  --gold: #D4A843;
  --gold-light: #e0bc60;
  --gold-dark: #b8912e;
  --cream: #F8F7F4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --text-light: #8a9bb5;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

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

/* ========== BASE UTILITIES ========== */
.section { padding: 90px 20px; }
.section--cream { background-color: var(--cream); }
.section--white { background-color: var(--white); }
.section--navy { background-color: var(--navy); }

.section__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: center;
}
.section__label--light {
  color: var(--gold-light);
}

.section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section__title--light {
  color: var(--white);
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 16px 38px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 15px 34px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  background: transparent;
  border-radius: 4px;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline--dark {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline--dark:hover {
  border-color: var(--gold-dark);
  color: var(--white);
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--navy-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 12px;
}

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

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar__stars {
  color: var(--gold);
  font-size: 11px;
}

.top-bar__rating-text {
  font-size: 12px;
}

.top-bar__rating-text a {
  color: var(--white);
  text-decoration: underline;
}

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

.top-bar__hours,
.top-bar__address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.top-bar__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s ease;
}

.top-bar__cta:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

/* ========== MAIN HEADER ========== */
.main-header {
  background: var(--navy);
  padding: 16px 0;
  position: relative;
  z-index: 100;
}

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

.header__logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo {
  height: 48px;
  width: auto;
}

/* ========== NAVIGATION ========== */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: block;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--gold);
}

.main-nav__link .dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.main-nav__link.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 200px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.main-nav__item:hover .main-nav__dropdown,
.main-nav__dropdown.show {
  opacity: 1;
  visibility: visible;
}

.main-nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s ease, background-color 0.2s ease;
  font-weight: 500;
}

.main-nav__dropdown a:hover {
  background-color: rgba(255,255,255,0.08);
  color: var(--gold);
}

.main-nav__dropdown {
  max-height: 70vh;
  overflow-y: auto;
}

.main-nav__dropdown::-webkit-scrollbar {
  width: 4px;
}

.main-nav__dropdown::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

.dropdown-label {
  padding: 10px 18px 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  pointer-events: none;
}

.dropdown-label + li a {
  border-top: none;
}

.header-phone {
  white-space: nowrap;
}

.header-phone a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s ease;
}

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

.header-phone i {
  color: var(--gold);
  margin-right: 6px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(14,26,46,0.92) 0%, rgba(14,26,46,0.75) 35%, rgba(14,26,46,0.25) 65%, rgba(14,26,46,0.1) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--navy-dark) 0%, transparent 100%);
  z-index: 1;
}

.hero__pattern {
  display: none;
}

.hero .container {
  max-width: none;
  margin: 0;
  padding: 0 0 0 max(40px, calc((100vw - 1200px) / 2));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 500px;
}

.hero__est {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--navy-dark);
  padding: 40px 20px;
  border-top: 2px solid var(--gold);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }

.trust-item__icon {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 10px;
}

.trust-item__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-item__desc {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-text__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.why-text__desc {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-feature__icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.why-feature__text h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.why-feature__text p {
  font-size: 14px;
  color: var(--text-gray);
}

.why-image {
  background: var(--navy);
  border-radius: 6px;
  height: 320px;
  position: relative;
  overflow: hidden;
}

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

.why-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gold);
}

/* ========== WHAT SETS US APART ========== */
.section--navy-dark {
  background-color: var(--navy-dark);
}

.apart-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 40px;
}

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

.apart-item--reverse {
  direction: rtl;
}

.apart-item--reverse > * {
  direction: ltr;
}

.apart-item__img {
  border-radius: 10px;
  overflow: hidden;
}

.apart-item__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.apart-item:hover .apart-item__img img {
  transform: scale(1.03);
}

.apart-item__text {
  padding: 10px 0;
}

.apart-item__title {
  font-family: 'Barlow Condensed', 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.apart-item__text p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.apart-item__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.apart-item__link:hover {
  color: var(--gold-light);
}

.apart-item__link i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.apart-item__link:hover i {
  transform: translateX(3px);
}

/* ========== TESTIMONIALS (Homepage) ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(27,44,88,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 28px;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

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

.testimonial-card__badge {
  font-size: 10px;
  color: #2e7d32;
  margin-top: 4px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.015) 10px,
    rgba(255,255,255,0.015) 20px
  );
  pointer-events: none;
}

.cta-banner__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-banner__text {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  position: relative;
}

.cta-banner .btn-gold {
  padding: 20px 48px;
  font-size: 16px;
}

.cta-banner__phone {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.cta-banner__phone:hover {
  color: var(--gold-light);
}

/* Page Hero (sub-pages) */
.page-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero--short {
  height: 200px;
}

.page-404 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.page-404 .section__text {
  margin-bottom: 30px;
}

.service-card--text-only {
  min-height: 180px;
}
.service-card--text-only .service-card__bg {
  background-color: var(--navy);
}

.page-hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* Vehicle Hero */
.vehicle-hero {
  background-color: var(--navy);
  padding: 40px 0;
}

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

.vehicle-hero__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

/* ========== CONTENT SECTIONS ========== */
.section--gray {
  background-color: var(--cream);
}

.section__text {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.services-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(14,26,46,0.25);
}

.service-card__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
}

.service-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(14,26,46,0.95) 0%, rgba(14,26,46,0.4) 50%, rgba(14,26,46,0.1) 100%);
}

.service-card__content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}

.service-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card__link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border: 1.5px solid transparent;
  border-radius: 20px;
  transition: border-color 0.3s;
}
.service-card:hover .service-card__link {
  border-color: var(--gold);
}

/* ========== APPOINTMENT FORM ========== */
.appointment-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.appointment-info {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 600;
}

.appointment-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.form-steps {
  display: flex;
  background: var(--cream);
  border-bottom: 1px solid #e0e0e0;
}

.form-step {
  flex: 1;
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-gray);
}

.form-step--active {
  background: var(--navy-light);
  color: var(--white);
}

.form-step__number {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  margin-right: 8px;
}

.form-step--active .form-step__number {
  background: rgba(255, 255, 255, 0.4);
}

.form-body {
  padding: 30px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid #e8e8e8;
}

.form-body__heading {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(36, 58, 106, 0.1);
}

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

.form-submit {
  display: inline-block;
  background-color: var(--navy-light);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: var(--navy);
}

/* Form Slider */
.form-slider {
  overflow: hidden;
}

.form-slider__track {
  display: flex;
  width: 200%;
  transition: transform 0.5s ease, height 0.5s ease;
  align-items: flex-start;
}

.form-slider__track.slide-to-2 {
  transform: translateX(-50%);
  height: 350px;
}

.form-slider__panel {
  width: 50%;
  flex-shrink: 0;
}

.form-step {
  transition: background-color 0.4s ease, color 0.4s ease;
}

.form-success {
  text-align: center;
  padding: 50px 40px;
}

.form-success i {
  font-size: 48px;
  color: #27ae60;
  margin-bottom: 16px;
  display: block;
}

.form-success h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto;
  word-wrap: break-word;
}

.form-success a {
  color: var(--navy-light);
  font-weight: 700;
  white-space: nowrap;
}

/* ========== SIDEBAR ========== */
.sidebar-widget {
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.sidebar-widget__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--navy-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.sidebar-widget__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.sidebar-widget__text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ========== CONTACT FORM ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.contact-intro__title {
  font-size: 24px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-intro__text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ========== SPECIAL OFFER CARD ========== */
.special-card {
  display: flex;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.special-card__badge {
  background: var(--navy-light);
  color: var(--white);
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 700;
  padding: 30px 20px;
  text-align: center;
  line-height: 1;
}

.special-card__badge span {
  font-size: 20px;
  font-weight: 400;
}

.special-card__body {
  padding: 30px;
  flex: 1;
}

.special-card__title {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.special-card__text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.special-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.special-card__list li {
  font-size: 15px;
  color: var(--text-dark);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.special-card__list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--navy-light);
  position: absolute;
  left: 0;
  font-size: 13px;
}

.special-card__btn {
  display: inline-block;
  background-color: var(--navy-light);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.special-card__btn:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* Specials Grid */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.special-card--vertical {
  flex-direction: column;
  max-width: none;
  height: 100%;
}

.special-card--vertical .special-card__badge {
  min-width: auto;
  min-height: 100px;
  font-size: 36px;
  padding: 24px 20px;
}

.special-card--vertical .special-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.special-card__footer {
  margin-top: auto;
  padding-top: 8px;
}

.special-card__terms {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 12px;
  line-height: 1.5;
  font-style: italic;
}

/* Specials CTA */
.specials-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.specials-cta__title {
  font-size: 26px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.specials-cta__text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.specials-cta__btn {
  display: inline-block;
  background-color: var(--navy-light);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.specials-cta__btn:hover {
  background-color: var(--navy);
  color: var(--white);
}

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

  .special-card {
    flex-direction: column;
  }

  .special-card__badge {
    min-width: auto;
    padding: 20px;
  }
}

/* ========== REVIEWS SECTION ========== */
.reviews-intro {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
}

/* Overall Rating */
.reviews-overall {
  text-align: center;
  margin-top: 30px;
}

.reviews-overall__stars {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 8px;
}

.reviews-overall__score {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.reviews-overall__count {
  font-size: 14px;
  color: var(--text-gray);
}

/* Reviews Horizontal Scroll */
.reviews-masonry {
  column-count: 3;
  column-gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 3px solid var(--gold);
  break-inside: avoid;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--navy-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.review-card__meta {
  font-size: 13px;
  color: var(--text-gray);
}

.review-card__stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 10px;
}

.review-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.review-card__text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.review-card__badge {
  font-size: 12px;
  color: #27ae60;
  font-weight: 600;
}

.review-card__badge i {
  margin-right: 4px;
}

@media (max-width: 900px) {
  .reviews-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .reviews-masonry {
    column-count: 1;
  }
}

/* ========== VEHICLES GRID ========== */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-card__img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

.vehicle-card__img--placeholder {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.vehicle-card__body {
  padding: 20px;
}

.vehicle-card__name {
  font-family: 'Barlow Condensed', 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.vehicle-card__origin {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.vehicle-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-card__link i {
  margin-left: 4px;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.vehicle-card:hover .vehicle-card__link i {
  transform: translateX(3px);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-dark);
  padding: 56px 20px 28px;
  border-top: 1px solid var(--gold);
}

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

.footer__logo {
  height: 40px;
  margin-bottom: 12px;
}

.footer__desc {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.7;
}

.footer-col__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: var(--text-light);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact-item {
  display: flex;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer__contact-item i {
  color: var(--gold);
  flex-shrink: 0;
}

.footer__contact-item a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom__copy {
  color: var(--text-light);
  font-size: 11px;
}

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

.footer-bottom__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-bottom__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.service-detail__sidebar {
  position: sticky;
  top: 20px;
}

.service-detail__intro {
  margin-bottom: 40px;
}

.service-detail__intro p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
}

.service-detail__services {
  margin-bottom: 40px;
}

.service-detail__services-title {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion__item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.accordion__header:hover {
  background-color: var(--cream);
}

.accordion__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.accordion__icon {
  font-size: 13px;
  color: var(--navy-light);
  transition: transform 0.3s ease;
}

.accordion__item.active .accordion__icon {
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__item.active .accordion__body {
  max-height: 600px;
}

.accordion__desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  padding: 0 20px 12px;
}

.accordion__list {
  list-style: none;
  padding: 0 20px 12px;
}

.accordion__list li {
  font-size: 14px;
  color: var(--text-dark);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

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

.accordion__list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--navy-light);
  position: absolute;
  left: 0;
  font-size: 12px;
}

.accordion__pricing {
  font-size: 13px;
  color: var(--text-gray);
  padding: 10px 20px 16px;
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
}

.accordion__pricing i {
  color: var(--navy-light);
  margin-right: 6px;
}

.accordion__pricing a {
  color: var(--navy-light);
  font-weight: 700;
}

.service-detail__cta-block {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.service-detail__cta-block h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-detail__cta-block p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.service-detail__cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.service-detail__cta-phone i {
  font-size: 18px;
  color: var(--navy-light);
}

.service-detail__cta-phone a {
  color: var(--navy-light);
  font-weight: 700;
  font-size: 20px;
}

.service-detail__cta {
  display: inline-block;
  background-color: var(--navy-light);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.service-detail__cta:hover {
  background-color: var(--navy);
  color: var(--white);
}

.sidebar-widget__amenities {
  list-style: none;
  padding: 0;
}

.sidebar-widget__amenities li {
  font-size: 14px;
  color: var(--text-gray);
  padding: 6px 0;
}

.sidebar-widget__amenities li i {
  color: var(--navy-light);
  width: 20px;
  margin-right: 8px;
}

/* ========== FALLBACK BACKGROUNDS ========== */
.hero__bg,
.page-hero__bg,
.service-card__bg {
  background-color: var(--navy);
}

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

/* Tablet & smaller desktop */
@media (max-width: 992px) {
  .services-grid,
  .services-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .apart-item,
  .apart-item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .apart-item__img img {
    height: 260px;
  }

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

  .appointment-layout,
  .contact-layout,
  .service-detail-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero__title {
    font-size: 52px;
  }
  .hero {
    min-height: 70vh;
  }

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

/* Mobile */
@media (max-width: 768px) {
  /* Top bar mobile */
  .top-bar__hours,
  .top-bar__address {
    display: none;
  }

  .top-bar .container {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Header mobile */
  .main-header .container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .header__logo-link {
    order: 1;
  }

  .header-phone {
    order: 3;
  }

  /* Nav mobile — vertical, hidden by default */
  .main-nav {
    order: 4;
    width: 100%;
  }

  .main-nav__list {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: var(--navy-dark);
    padding: 10px 0;
  }

  .main-nav__list.active {
    display: flex;
  }

  .main-nav__link {
    padding: 14px 20px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .main-nav__link--active {
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 17px;
  }

  .main-nav__dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.15);
    min-width: auto;
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .main-nav__item:hover .main-nav__dropdown {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .main-nav__dropdown.show,
  .main-nav__item:hover .main-nav__dropdown.show {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
  }

  .main-nav__dropdown a {
    padding: 10px 20px 10px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .main-nav__dropdown a:last-child {
    border-bottom: none;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: 60px 0;
    background: var(--navy);
  }

  .hero__bg,
  .hero__overlay,
  .hero__pattern,
  .hero::after {
    display: none;
  }

  .hero .container {
    padding: 0 20px;
  }

  .hero__title {
    font-size: 44px;
  }

  /* Trust strip mobile */
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA banner mobile */
  .cta-banner__actions {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .services-grid,
  .services-grid--three {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero__title {
    font-size: 36px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  .cta-banner__title {
    font-size: 32px;
  }

  .cta-banner .btn-gold {
    padding: 16px 32px;
  }

  .vehicle-hero__title {
    font-size: 28px;
  }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-child.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-child.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-child.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-child.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-child.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-child.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-child.visible > *:nth-child(7) { transition-delay: 0.48s; }

/* ================================================================
   VEHICLE PAGE (VP) — Rich Brand Pages
   ================================================================ */

/* ── Hero ── */
.vp-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
}

.vp-hero__inner {
  position: relative;
  z-index: 2;
  padding: 70px 20px;
}

.vp-hero__content {
  max-width: 650px;
}

.vp-hero__title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.vp-hero__tagline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-style: italic;
}

.vp-hero__breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.vp-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.vp-hero__breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

.vp-hero__breadcrumb span {
  margin: 0 6px;
}

/* ── Buttons ── */
.vp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.vp-btn--primary {
  background-color: var(--navy-light);
  color: var(--white);
  border-color: var(--navy-light);
}

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

.vp-btn--outline {
  background: transparent;
  color: var(--navy-light);
  border-color: var(--navy-light);
}

.vp-btn--outline:hover {
  background-color: var(--navy-light);
  color: var(--white);
}

.vp-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ── Brand Overview ── */
.vp-overview {
  max-width: 900px;
  margin: 0 auto;
}

.vp-overview__header {
  margin-bottom: 24px;
}

.vp-overview__headline {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.vp-overview__meta-inline {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-gray);
}

.vp-overview__meta-inline i {
  color: var(--navy-light);
  margin-right: 6px;
}

.vp-overview__desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 30px;
}

.vp-overview__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Models Grid ── */
.vp-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.vp-model-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vp-model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vp-model-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  transition: border-color 0.3s;
}

.vp-model-card:hover .vp-model-card__icon {
  border-color: currentColor;
}

.vp-model-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.vp-model-card__type {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

/* ── Expertise Banner ── */
.vp-expertise {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.vp-expertise__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.vp-expertise__title {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
}

.vp-expertise__text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.85;
}

/* ── Services Grid ── */
.vp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.vp-service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vp-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vp-service-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(36, 58, 106, 0.1);
  color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.vp-service-item__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── Why Choose Us Section ── */
.vp-why-section {
  background: var(--navy);
  padding: 70px 0;
}

.vp-why-section__title {
  font-size: 30px;
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
}

.vp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vp-why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: background 0.3s ease;
}

.vp-why-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.vp-why-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.vp-why-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.vp-why-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ── CTA Block ── */
.vp-cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.vp-cta-block__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.vp-cta-block__text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.vp-cta-block__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.vp-cta-block__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.vp-cta-block__phone i {
  color: var(--navy-light);
}

.vp-cta-block__phone a {
  color: var(--navy);
}

.vp-cta-block__phone a:hover {
  color: var(--navy-light);
}

.vp-cta-block__hours {
  font-size: 14px;
  color: var(--text-gray);
  margin-top: 10px;
}

.vp-cta-block__hours i {
  color: var(--navy-light);
  margin-right: 4px;
}

/* ── Vehicle Page Responsive ── */
@media (max-width: 992px) {
  .vp-hero {
    min-height: 340px;
  }

  .vp-hero__title {
    font-size: 38px;
  }

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

@media (max-width: 600px) {
  .vp-hero {
    min-height: 280px;
  }

  .vp-hero__inner {
    padding: 40px 20px;
  }

  .vp-hero__title {
    font-size: 30px;
    letter-spacing: 1px;
  }

  .vp-hero__tagline {
    font-size: 15px;
  }

  .vp-overview__headline {
    font-size: 22px;
  }

  .vp-models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vp-model-card {
    padding: 20px 14px;
  }

  .vp-services-grid {
    grid-template-columns: 1fr;
  }

  .vp-why-grid {
    grid-template-columns: 1fr;
  }

  .vp-why-section {
    padding: 50px 0;
  }

  .vp-why-section__title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .vp-cta-block__title {
    font-size: 22px;
  }

  .vp-overview__cta-row {
    flex-direction: column;
  }

  .vp-btn {
    justify-content: center;
    width: 100%;
  }
}
