:root {
  --bg-primary: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-border: #e8e8e8;
  --red: #D32626;
  --red-dark: #b01e1e;
  --red-light: #fef2f2;
  --red-glow: rgba(211, 38, 38, 0.12);
  --gold: #FFC61A;
  --gold-dark: #e0ab00;
  --gold-light: #fff8e1;
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #888888;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1200px;
  --header-height: 70px;
  --banner-height: 44px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--banner-height) + 20px);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.banner-dismissed {
  --banner-height: 0px;
}

body.banner-dismissed html {
  scroll-padding-top: calc(var(--header-height) + 20px);
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--red-dark); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 38, 38, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(211, 38, 38, 0.2);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* ========== ANIMATE ON SCROLL ========== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PROMO BANNER ========== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--red);
  color: var(--white);
  z-index: 1001;
  height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  padding: 0 3rem 0 1rem;
}

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

.promo-banner span {
  margin-right: 1rem;
  color: var(--white);
}
.promo-banner span strong {
  color: var(--gold);
}

.promo-banner a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
}
.promo-banner a:hover {
  color: var(--white);
}

.promo-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.promo-close:hover { opacity: 1; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: var(--banner-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, top 0.3s ease;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
}

body.banner-dismissed .site-header {
  top: 0;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.header-logo img {
  height: 45px;
  width: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}
.desktop-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
}
.header-phone:hover { color: var(--red); }

.header-cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1003;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.hamburger.active span {
  background: var(--white);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(211, 38, 38, 0.97);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-contact {
  margin-top: 1rem;
  text-align: center;
}
.mobile-menu .mobile-contact a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(var(--banner-height) + var(--header-height) + 2rem);
  padding-bottom: 4rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(211, 38, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 198, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  flex-shrink: 0;
}

.hero-image {
  display: none;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: heroCarFloat 4s ease-in-out infinite;
}

@keyframes heroCarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  background: var(--red-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.hero h1 {
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.05;
  color: var(--text-primary);
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--bg-card-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.trust-badge .badge-star {
  color: var(--gold-dark);
  font-weight: 700;
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  color: var(--white);
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card .learn-more {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s;
}
.service-card .learn-more:hover { gap: 0.65rem; }

/* ========== WHY US ========== */
.why-us {
  background: var(--bg-primary);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.why-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.counter-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

/* ========== PACKAGES ========== */
.packages {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.packages-car-accent {
  display: none;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.package-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(211, 38, 38, 0.3);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-lg);
  transform: scale(1.02);
}
.package-card.featured:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-xl);
}

.package-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 0.35rem 1rem;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.package-price .price-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.package-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--red);
  margin-top: 2px;
}

.package-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.package-card .btn {
  width: 100%;
  text-align: center;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.about-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  box-shadow: var(--shadow-lg);
}
.about-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--bg-alt);
  overflow: hidden;
}

.testimonial-track-wrapper {
  overflow: hidden;
  margin-bottom: 2rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-testimonials 40s linear infinite;
  width: max-content;
}
.testimonial-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
  color: var(--red);
  opacity: 0.2;
  margin-bottom: 1rem;
}
.testimonial-quote-icon svg {
  width: 36px;
  height: 36px;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.75rem;
}
.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--bg-card-border);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.google-review-badge .grb-stars {
  color: var(--gold-dark);
  font-weight: 700;
}
.google-review-badge a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.google-review-badge a:hover {
  color: var(--red);
}

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

/* ========== LOCATIONS ========== */
.locations {
  background: var(--bg-primary);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--red);
}

.location-info {
  list-style: none;
}
.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.location-info li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--red);
  margin-top: 3px;
}
.location-info li a {
  color: var(--text-secondary);
}
.location-info li a:hover { color: var(--red); }

.location-card .btn {
  margin-top: 1.25rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bg-card-border);
  height: 350px;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--red); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  color: var(--red);
}
.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 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #1a1a1a;
  border-top: none;
  padding: 4rem 0 0;
  color: #ccc;
}

.site-footer h4 {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  color: #999;
  transition: all 0.3s;
}
.social-links a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(211, 38, 38, 0.08);
}
.social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
  color: #999;
}
.footer-links a {
  color: #999;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1.5rem 0;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

/* ========== MOBILE CTA BAR ========== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  background: var(--red);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-cta-bar a:hover { color: var(--white); }
.mobile-cta-bar a:first-child {
  border-right: 1px solid rgba(255,255,255,0.2);
}
.mobile-cta-bar a svg {
  width: 18px;
  height: 18px;
}

/* ========== MEDIA QUERIES ========== */
@media (min-width: 768px) {
  section { padding: 5rem 0; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-card { width: 380px; }

  .hero-image { display: block; }
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .header-phone { display: flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-cta-bar { display: none; }

  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }

  .packages-car-accent { display: block; }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 4.5rem; }
  .hero-content { max-width: 600px; }
  .hero-image img { max-width: 620px; }
}
