/* ============================================================
   AMERICAN Bus & Truck Specialist — Main Stylesheet
   Style: Technical / Commercial
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #C0202A;
  --red-dark:   #8B0000;
  --blue:       #1A2E5A;
  --blue-mid:   #1E4080;
  --blue-light: #2E5FA3;
  --white:      #FFFFFF;
  --gray-light: #F4F4F4;
  --gray-mid:   #CCCCCC;
  --gray-dark:  #444444;
  --black:      #1A1A1A;
  --earth:      #7B5B3A;

  --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Roboto', 'Segoe UI', Arial, sans-serif;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.15);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.35);

  --radius:    6px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
ul  { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--blue);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p  { font-size: 1rem; color: var(--gray-dark); margin-bottom: 1rem; }

.text-red   { color: var(--red); }
.text-blue  { color: var(--blue); }
.text-white { color: var(--white); }

.fs-24 { font-size: 24px; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--gray-light);
}

.section-dark {
  background-color: var(--blue);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p { color: var(--white); }

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

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background-color: var(--white);
  color: var(--blue);
}

.btn-outline {
  background-color: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background-color: var(--blue);
  color: var(--white);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--blue);
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.navbar-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.navbar-lang a {
  color: var(--gray-mid);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  transition: all var(--transition);
}

.navbar-lang a:hover,
.navbar-lang a.active {
  background-color: var(--red);
  color: var(--white);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.navbar-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--blue);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--red); }
.hero-content p  { color: var(--gray-mid); font-size: 1.1rem; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.card-body { padding: 1.5rem; }
.card-body h3 { color: var(--blue); margin-bottom: 0.5rem; }
.card-body p  { font-size: 0.95rem; margin-bottom: 1rem; }

/* ── Service Icons ──────────────────────────────────────────── */
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color var(--transition);
}

.service-icon i { font-size: 1.75rem; color: var(--white); }

.service-item:hover .service-icon { background-color: var(--red); }

/* ── Divider ────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 4px;
  background-color: var(--red);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider-center { margin: 1rem auto 1.5rem; }

/* ── Badge / Tag ────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
}

.badge-red  { background-color: var(--red);  color: var(--white); }
.badge-blue { background-color: var(--blue); color: var(--white); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  background-color: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(46, 95, 163, 0.15);
}

textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background-color: var(--black);
  color: var(--gray-mid);
  padding: 4rem 0 0;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.footer p, .footer a { font-size: 0.95rem; color: var(--gray-mid); }
.footer a:hover { color: var(--red); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--gray-dark);
  margin: 2.5rem 0 0;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-nav, .navbar-lang {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--blue);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .navbar-nav.open, .navbar-lang.open { display: flex; }

  .navbar-nav a {
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .navbar-toggle { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Top Bar ────────────────────────────────────────────────── */
.topbar {
  background-color: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  padding: 0.45rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}

.topbar i { margin-right: 0.4rem; }

.topbar-lang {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity var(--transition);
}
.topbar-lang:hover { opacity: 0.8; }

/* Ajuste navbar para dejar espacio al topbar */
.navbar { top: 32px; }

/* ── Hero Slider ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: 102px; /* topbar + navbar */
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,90,0.88) 50%, rgba(26,46,90,0.4) 100%);
}

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

.hero-content { max-width: 640px; }
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 span { color: var(--red); }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }
.hero-prev:hover, .hero-next:hover { background: var(--red); border-color: var(--red); }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--red);
}

.service-card h3 { color: var(--blue); margin-bottom: 0.5rem; font-size: 1.15rem; }

/* ── About Section ──────────────────────────────────────────── */
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 650px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-advantage {
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about-advantage h4 {
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-advantage h4 i { color: var(--red); }

.advantage-list { display: flex; flex-direction: column; gap: 0.5rem; }

.advantage-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.advantage-list li i { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }

/* ── Rounded Image (Tires / Fleet) ─────────────────────────── */
.rounded-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 400px;
}

.lead-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 1rem;
}

/* ── Parts Cards ────────────────────────────────────────────── */
.parts-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--blue);
}

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

.parts-card i {
  font-size: 2.25rem;
  color: var(--blue);
  margin-bottom: 1rem;
  display: block;
  transition: color var(--transition);
}

.parts-card:hover i { color: var(--red); }

.parts-card span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-logo {
  width: auto;
  height: 200px;
  margin: 0 auto;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray-mid);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--red); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-mid);
}
.footer-contact li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: var(--gray-mid); }
.footer-contact a:hover { color: var(--white); }

/* ── Responsive Extras ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { height: auto; min-height: 100svh; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-prev, .hero-next { display: none; }
  .about-img-wrap { max-height: 380px; }
}

/* ── Page Hero (páginas internas) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: 102px; /* topbar + navbar */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,90,0.88) 50%, rgba(26,46,90,0.5) 100%);
}

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

.page-hero-content h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero-content p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin: 0; }

/* ── MVC Cards (Misión, Visión, Compromiso) ─────────────────── */
.mvc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--blue);
}

.mvc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--red);
}

.mvc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background-color var(--transition);
}

.mvc-icon i { font-size: 1.75rem; color: var(--white); }
.mvc-card:hover .mvc-icon { background-color: var(--red); }
.mvc-card h3 { color: var(--blue); font-size: 1.3rem; }

/* ── Advantage Tags ─────────────────────────────────────────── */
.advantage-tag {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.advantage-tag:hover {
  background: rgba(192,32,42,0.2);
  border-color: var(--red);
}

.advantage-tag i {
  font-size: 2.25rem;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

.advantage-tag span {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}

/* ── Preloader───────────────────────────────────────────── */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    .preloader-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.preloader-content {
    text-align: center;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.preloader-content p{
  color: var(--blue-mid);
  text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: spinner-bulqg1 0.8s infinite linear alternate, spinner-oaa3wk 1.6s infinite linear;
    border: 3px solid var(--red);
}

@keyframes spinner-bulqg1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}

@keyframes spinner-oaa3wk {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}

/* ── Category Cards (parts.html) ────────────────────────────── */
.category-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--blue);
}

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

.category-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.category-card:hover .category-icon { background-color: var(--red); }
.category-icon i { font-size: 1.5rem; color: var(--white); }

.category-body h3 { color: var(--blue); font-size: 1.1rem; margin-bottom: 0.25rem; }

/* ── Quote List (parts.html) ────────────────────────────────── */
.quote-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.quote-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

.quote-list li i { color: var(--red); flex-shrink: 0; }

/* ── Workshop Cards ─────────────────────────────────────────── */
.workshop-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 4px solid transparent;
}

.workshop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--red);
}

.workshop-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.workshop-card-header h3 {
  color: var(--blue);
  font-size: 1.1rem;
  margin: 0;
}

.workshop-card:hover .service-icon { background-color: var(--red); }

/* ── Focus List (workshop.html) ─────────────────────────────── */
.focus-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.focus-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.focus-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.focus-icon i { color: var(--red); font-size: 1.1rem; }

.focus-list li:hover .focus-icon {
  background: rgba(192,32,42,0.2);
  border-color: var(--red);
}

.focus-list li span {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* ── Tires Check List ───────────────────────────────────────── */
.tires-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.tires-check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.tires-check-list li i { color: var(--red); font-size: 0.9rem; flex-shrink: 0; }

/* ── Fleet Advantage List ───────────────────────────────────── */
.advantage-tag h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.fleet-advantage-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.fleet-advantage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.fleet-advantage-list li i { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-info-box,
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.contact-info-box h3,
.contact-form-box h3 {
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.contact-info-icon i { color: var(--white); font-size: 1rem; }
.contact-info-list li:hover .contact-info-icon { background-color: var(--red); }

.contact-info-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.2rem;
}

.contact-info-list a,
.contact-info-list span {
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.5;
}

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