/* 
 * High-Level Auto Body Shop - Premium Light Theme
 * Theme: Orange + White / Clean Industrial
 */

:root {
  /* Color Palette */
  --primary-orange: #F47C20;
  --deep-orange: #D96314;
  --light-orange-tint: #FFF2E8;
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFAFA;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --border-color: #E7E7E7;

  /* Gradients & Accents */
  --grad-orange: linear-gradient(135deg, var(--primary-orange), #FF9F43);
  --overlay-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  /* Tall, Bold */
  --font-body: 'Manrope', sans-serif;
  /* Clean, Modern */

  /* Spacing & Layout */
  --nav-height: 80px;
  --container-width: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

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

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

/* Texture Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--overlay-noise);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  /* Bebas Neue is bold by default */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

p {
  max-width: 65ch;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.text-orange {
  color: var(--primary-orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  z-index: 1;
}

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

.btn-primary:hover {
  background: var(--deep-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(244, 124, 32, 0.2);
}

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

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

.section-padding {
  padding: 6rem 0;
  position: relative;
}

.bg-off-white {
  background-color: var(--bg-off-white);
}

/* Card Style */
.card-light {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-orange);
}

/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary-orange);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-150%);
  transition: transform 0.4s var(--ease-out);
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
  min-height: 90vh;
  /* Slightly shorter for cleaner look */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
}

/* Animated gradient blob */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(244, 124, 32, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  animation: blob-float 10s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-20px, 40px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--light-orange-tint);
  color: var(--primary-orange);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--text-dark);
}

.hero p {
  color: var(--text-muted);
  font-size: 1.25rem;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.trust-row {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-row .separator {
  color: var(--border-color);
}

/* ---------------------------------------------------------
   PRICING & SERVICES
--------------------------------------------------------- */
.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-orange);
  color: white;
  border-color: var(--primary-orange);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
}

.p-category {
  font-size: 0.8rem;
  color: var(--primary-orange);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  margin-bottom: 0.5rem;
}

.p-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--text-dark);
  margin: 0.5rem 0 1rem;
}

.p-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center buttons */
  gap: 1rem;
}

.p-actions .btn {
  width: auto;
  /* Remove full width */
  min-width: 150px;
  /* Ensure consistent minimum size */
  padding: 0.6rem 2rem;
  font-size: 0.9rem;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-card.hidden {
  display: none;
}

/* ---------------------------------------------------------
   PROCESS TIMELINE
--------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: white;
  border: 3px solid var(--primary-orange);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.timeline-content {
  width: 45%;
  padding: 2rem;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 24px;
  }

  .timeline-dot {
    left: 24px;
  }

  .timeline-item {
    justify-content: flex-end !important;
  }

  .timeline-content {
    width: 85%;
    margin-left: auto !important;
  }

}

/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--bg-off-white);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ---------------------------------------------------------
   MARQUEE REVIEWS
--------------------------------------------------------- */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0 4rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

/* Removed hover pause as requested */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }

  /* Moves half way (duplicate width) */
}

/* Card Style Modern */
.review-card-modern {
  width: 350px;
  background: white;
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary-orange);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.review-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(244, 124, 32, 0.15);
}

.rc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.rc-avatar {
  width: 42px;
  height: 42px;
  background: var(--light-orange-tint);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.rc-info h4 {
  font-size: 1rem;
  margin: 0;
  color: var(--text-color);
}

.rc-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rc-stars {
  color: #fbbc04;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rc-tags {
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rc-tag {
  font-size: 0.7rem;
  background: var(--light-orange-tint);
  color: var(--deep-orange);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.rc-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  /* Standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rc-text.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.rc-read-more {
  background: none;
  border: none;
  color: var(--primary-orange);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.rc-services {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-chip {
  font-size: 0.7rem;
  background: var(--bg-off-white);
  color: var(--text-muted);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

/* Checklist Card Styles */
.checklist-card ul {
  list-style: none;
  /* Remove default bullets */
  padding: 0;
  margin: 1rem 0 0 0;
}

.checklist-card li {
  display: flex;
  align-items: center;
  /* Align icon vertically */
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-color);
}

.checklist-card .icon-sm {
  min-width: 18px;
  /* Prevent squishing */
  color: var(--primary-orange);
  /* Make checkmark ORANGE instead of green/default */
  /* If using currentColor in SVG, define color here. */
  stroke: var(--primary-orange);
  /* For SVGs that use stroke */
  fill: none;
}

/* CTA Strip */
.reviews-cta-strip {
  background: var(--primary-orange);
  padding: 1rem 0;
  margin-top: 2rem;
}

.cta-link {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  transition: opacity 0.3s;
}

.cta-link:hover {
  opacity: 0.8;
  color: white;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none;
    overflow-x: auto;
    width: 100%;
    padding-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .review-card-modern {
    width: 280px;
  }
}

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

@media (max-width: 900px) {
  .grid-2-col {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.faq-question:hover {
  background: var(--bg-off-white);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 300px;
}

.toggle {
  color: var(--primary-orange);
  transition: transform 0.3s;
}

.faq-item.open .toggle {
  transform: rotate(45deg);
}

/* ---------------------------------------------------------
   CONTACT & FOOTER
--------------------------------------------------------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  background: white;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1.5fr;
  }

  .map-container {
    display: none;
    /* Hide map on smaller desktop/tablet to keep form priority or stack below? */
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    display: block;
    height: 300px;
  }
}

.contact-info {
  background: var(--primary-orange);
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  color: white;
  margin-bottom: 1rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
}

.info-item {
  margin-top: 2rem;
}

.info-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: white;
}

.info-item a {
  color: white;
}

.contact-form {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 2rem;
  }
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-off-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.9rem;
}

footer {
  background: var(--bg-off-white);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-brand h3 {
  color: var(--primary-orange);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--light-orange-tint);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: var(--primary-orange);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-item span {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.image-zoom-wrapper {
  overflow: hidden;
  height: 100%;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}

.about-image:hover .about-img {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .about-img {
    transition: none !important;
    transform: none !important;
  }
}

/* 24/7 Towing Styles */
.towing-note {
  font-size: 0.9rem;
  color: var(--primary-orange);
  background: var(--light-orange-tint);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: 2;
  }
}

/* Footer Layout Refinement */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-credit {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
}

.apex-glow {
  color: var(--primary-orange);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(244, 124, 32, 0);
}

.apex-glow:hover {
  color: var(--deep-orange);
  text-shadow: 0 0 15px rgba(244, 124, 32, 0.6);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}