/* ===================================================
   XPRESSO OIL AND LUBE CENTER - Custom CSS
   =================================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --navy:    #00316D;
  --blue:    #0082CA;
  --red:     #e51c24;
  --green:   #57C785;
  --dark:    #242C36;
  --dark2:   #363D48;
  --grey:    #4d4d4d;
  --lgrey:   #f5f5f5;
  --white:   #ffffff;
  --shadow:  0 4px 20px rgba(0,0,0,0.10);
  --radius:  6px;
  --max-w:   1200px;
  --trans:   all 0.3s ease;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(32px, 5vw, 52px); }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(18px, 3vw, 24px); }
h4 { font-size: 18px; }

p { color: var(--grey); line-height: 1.75; }

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title p { max-width: 680px; margin: 0 auto; font-size: 17px; }

.divider {
  width: 64px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: 12px auto 20px;
}
.divider-left { margin-left: 0; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.4px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: #006aaa;
  border-color: #006aaa;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,130,202,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: #c5151c;
  border-color: #c5151c;
  transform: translateY(-2px);
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.bg-navy   { background: var(--navy); }
.bg-dark   { background: var(--dark); }
.bg-lgrey  { background: var(--lgrey); }
.bg-blue   { background: var(--blue); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--blue); }
.top-bar .top-links { display: flex; gap: 24px; align-items: center; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo img { height: 52px; width: auto; }
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text span { color: var(--blue); }

nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

nav ul li a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--trans);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--blue);
  background: rgba(0,130,202,0.07);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 30px !important;
}
.nav-cta:hover {
  background: #c5151c !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229,28,36,0.35) !important;
}

/* Dropdown */
nav ul li.dropdown { position: relative; }
nav ul li.dropdown > a::after {
  content: ' ▾';
  font-size: 11px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 240px;
  z-index: 999;
  border-top: 3px solid var(--blue);
  padding: 6px 0;
  flex-direction: column !important;
  gap: 0 !important;
}
.dropdown-menu li a {
  padding: 10px 18px !important;
  font-size: 13.5px !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--lgrey) !important; color: var(--blue) !important; }
nav ul li.dropdown:hover .dropdown-menu { display: flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  padding: 16px 24px 24px;
}
.mobile-nav ul { flex-direction: column; gap: 4px; }
.mobile-nav ul li a { font-size: 16px; padding: 10px 14px; }
.mobile-nav.open { display: block; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #004b9e 60%, #0082ca 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/mechanic-image-resized-1.jpg') center/cover no-repeat;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 60px 0;
}

.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(36px, 5.5vw, 62px);
}
.hero h1 span { color: #5ecbff; }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* =============================================
   QUICK INFO BAR
   ============================================= */
.quick-info {
  background: var(--dark);
  padding: 28px 0;
}
.quick-info .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.qi-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.qi-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.qi-item h4 { color: var(--white); font-size: 15px; margin-bottom: 2px; }
.qi-item p  { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.4; margin: 0; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--trans);
  border-bottom: 3px solid transparent;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--blue);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.service-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.service-card a.learn-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  transition: var(--trans);
}
.service-card a.learn-more:hover { color: var(--navy); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  background: var(--lgrey);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.why-image img { width: 100%; height: 480px; object-fit: cover; }

.why-features { display: flex; flex-direction: column; gap: 28px; }

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

.why-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,130,202,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.why-feature h4 { color: var(--navy); margin-bottom: 6px; font-size: 17px; }
.why-feature p  { font-size: 14.5px; margin: 0; }

/* =============================================
   FEATURED SERVICES (detailed)
   ============================================= */
.featured-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-service.reverse { direction: rtl; }
.featured-service.reverse > * { direction: ltr; }

.featured-service-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.featured-service-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.featured-service-text h2 { margin-bottom: 14px; }
.featured-service-text p  { font-size: 16px; margin-bottom: 18px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--grey);
}
.feature-list li::before {
  content: '✓';
  background: var(--green);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   STATS BANNER
   ============================================= */
.stats-banner {
  background: linear-gradient(135deg, var(--navy), #0060b0);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Open Sans", sans-serif;
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--lgrey);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  border-left: 4px solid var(--blue);
  transition: var(--trans);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  font-size: 72px;
  line-height: 1;
  color: var(--blue);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f5c518;
  font-size: 16px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author h5 { font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.testimonial-author span { font-size: 12.5px; color: #888; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   LOCATIONS / CONTACT INFO
   ============================================= */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.location-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.location-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.14); }

.location-card-header {
  background: var(--navy);
  padding: 24px;
  color: var(--white);
}
.location-card-header h3 { color: var(--white); margin-bottom: 6px; font-size: 18px; }
.location-card-header p  { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }

.location-card-body { padding: 24px; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--grey);
}
.location-detail span:first-child {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.location-card .btn { width: 100%; text-align: center; margin-top: 12px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, var(--navy), #004b9e);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.about-hero h1 { color: white; margin-bottom: 16px; }
.about-hero p  { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.about-story-img img { width: 100%; height: 460px; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-5px); }

.value-icon {
  width: 68px;
  height: 68px;
  background: rgba(0,130,202,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px;
}
.value-icon img { width: 40px; height: 40px; object-fit: contain; }
.value-card h4 { color: var(--navy); margin-bottom: 10px; }
.value-card p  { font-size: 14px; margin: 0; }

/* =============================================
   CAREERS PAGE
   ============================================= */
.careers-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 80px 0;
  text-align: center;
  color: white;
}
.careers-hero h1 { color: white; margin-bottom: 16px; }
.careers-hero p  { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--trans);
  border-top: 4px solid var(--blue);
}
.benefit-card:hover { transform: translateY(-5px); }

.benefit-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 18px;
}
.benefit-card h4 { color: var(--navy); margin-bottom: 10px; }
.benefit-card p  { font-size: 14px; margin: 0; }

.positions-list { display: flex; flex-direction: column; gap: 20px; }

.position-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--trans);
  flex-wrap: wrap;
}
.position-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }

.position-info h4 { color: var(--navy); margin-bottom: 6px; }
.position-info p  { font-size: 14px; margin: 0; }
.position-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pos-tag {
  background: rgba(0,130,202,0.1);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #333;
  transition: var(--trans);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info h3 { color: var(--navy); margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--navy); margin-bottom: 4px; }
.contact-item p  { font-size: 14.5px; margin: 0; line-height: 1.6; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-table td { padding: 8px 12px; font-size: 14.5px; border-bottom: 1px solid #eee; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-open  { color: var(--green); font-weight: 700; }
.hours-closed{ color: var(--red);   font-weight: 700; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--trans);
  color: white;
}
.social-link:hover { background: var(--blue); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--blue); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact li span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 10px;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #004b9e 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/mechanic-image-resized.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 580px; margin: 0 auto 24px; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb span.sep { opacity: 0.5; }
.breadcrumb span.current { color: white; }

/* =============================================
   SERVICE DETAIL SECTIONS
   ============================================= */
.service-detail-hero {
  background: var(--navy);
  padding: 64px 0;
  color: white;
}
.service-detail-hero h1 { color: white; margin-bottom: 16px; }
.service-detail-hero p  { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 600px; margin-bottom: 28px; }

/* =============================================
   ACCORDION / FAQ
   ============================================= */
.accordion { display: flex; flex-direction: column; gap: 12px; }

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: var(--trans);
}
.accordion-header:hover { background: var(--lgrey); }
.accordion-header h4 { color: var(--navy); font-size: 16px; margin: 0; }
.accordion-icon {
  font-size: 20px;
  color: var(--blue);
  transition: var(--trans);
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 0 24px 24px;
}
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 15px; color: #555; margin: 0; }

/* =============================================
   STORE FRONT SECTION
   ============================================= */
.storefront-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.storefront-wrap img {
  border-radius: 12px;
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* =============================================
   SERVICE PAGES — SHARED COMPONENTS
   ============================================= */

/* Page hero with icon + text side by side */
.page-hero-content {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
  margin-top: 24px;
}
.page-hero-content > div { max-width: 600px; }
.page-hero-content h1 { margin-bottom: 12px; }
.page-hero-content p { margin: 0; }

.service-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Breadcrumb override for left-aligned display */
.page-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 0;
  margin-top: 0;
}

/* Featured service: image + content 2-col */
.featured-service {
  background: var(--white);
  padding: 72px 0;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.service-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.service-content h2 { margin-bottom: 18px; }
.service-content h3 { margin: 28px 0 10px; color: var(--navy); }
.service-content p  { margin-bottom: 14px; font-size: 16px; }

/* Coupon / promo callout box */
.coupon-callout,
.fleet-contact-callout {
  background: rgba(0,130,202,0.08);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--grey);
}
.coupon-callout a,
.fleet-contact-callout a {
  color: var(--blue);
  font-weight: 700;
}
.coupon-callout a:hover,
.fleet-contact-callout a:hover { color: var(--navy); }

/* Inspection / feature grid section */
.inspection-section {
  background: var(--lgrey);
  padding: 72px 0;
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 17px; }

.inspection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.inspection-category {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.inspection-category h4 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 17px;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 10px;
}
.inspection-category .feature-list { margin: 0; }

/* Why section (cards) */
.why-section {
  background: var(--white);
  padding: 72px 0;
}
.why-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.why-section .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--lgrey);
  border-radius: 10px;
  padding: 28px 24px;
  border-top: 4px solid var(--blue);
  transition: var(--trans);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-card h4 { color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: 14.5px; margin: 0; }

/* Fluid flush grid (2x2) */
.flush-grid-section {
  background: var(--white);
  padding: 72px 0;
}
.flush-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.flush-card {
  background: var(--lgrey);
  border-radius: 10px;
  padding: 32px 24px;
  border-top: 4px solid var(--blue);
  transition: var(--trans);
}
.flush-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.flush-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}
.flush-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 18px; }
.flush-card p  { font-size: 14.5px; margin-bottom: 14px; }
.flush-card .feature-list { margin: 0; }

.flush-chart {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.flush-chart img { width: 100%; display: block; }

/* Fleet contact section */
.fleet-contact-section {
  background: var(--lgrey);
  padding: 72px 0;
}
.fleet-contact-box {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}
.fleet-contact-box h2 { margin-bottom: 16px; }
.fleet-contact-box p  { font-size: 16px; margin-bottom: 28px; }
.fleet-contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}
.fleet-contact-info a { color: var(--blue); font-weight: 700; }

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .why-grid,
  .featured-service,
  .about-story,
  .contact-grid,
  .storefront-wrap,
  .service-layout,
  .fleet-contact-info { grid-template-columns: 1fr; }

  .featured-service.reverse { direction: ltr; }

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

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

@media (max-width: 680px) {
  .section { padding: 48px 0; }
  .featured-service,
  .inspection-section,
  .why-section,
  .flush-grid-section,
  .fleet-contact-section { padding: 48px 0; }
  .service-image img { height: 260px; }
  .page-hero-content { text-align: center; }
  .page-hero .breadcrumb { justify-content: center; }
  .fleet-contact-box { padding: 28px 20px; }

  nav { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-badges { gap: 18px; }

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

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

  .position-card { flex-direction: column; align-items: flex-start; }

  .top-bar .top-links { display: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .cta-banner .cta-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
