:root {
  --green: #1ea14a;
  --green-dark: #137a36;
  --green-light: #34c759;
  --green-pale: #e8f7ed;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --steel: #2a2d35;
  --gray: #6b6f76;
  --light: #f4f6f4;
  --border: #e3e6e3;
  --white: #ffffff;
  --yellow: #f4c430;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ========= TOP BAR ========= */
.topbar {
  background: var(--black);
  color: #d8e8dd;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 3px solid var(--green);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left span { margin-right: 18px; }
.topbar-left svg { vertical-align: -3px; margin-right: 5px; color: var(--green-light); }
.topbar-right a { color: var(--white); font-weight: 600; margin-left: 14px; }
.topbar-right a:hover { color: var(--green-light); }
.topbar-right .after-hours { color: var(--green-light); font-weight: 700; }

/* ========= HEADER / NAV ========= */
header.main {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 64px; width: auto; }
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text .accent { color: var(--green); }
.logo-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 2px;
  margin-top: 4px;
}
nav ul { display: flex; list-style: none; gap: 26px; align-items: center; }
nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--charcoal);
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--green); }
.cta-btn {
  background: var(--green);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* Dropdown menus for Services and Service Areas */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 4px;
  border-top: 3px solid var(--green);
  padding: 12px 0;
  z-index: 200;
}
.dropdown li { padding: 0; }
.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--green-pale); color: var(--green); }
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown > a.dropdown-toggle::after { content: ' ▾'; font-size: 0.7em; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--black);
}

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.55)),
    url('images/hero-fleet.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 100%;
  background: var(--green);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--green-light); }
.hero .subhead {
  font-size: 1.18rem;
  max-width: 640px;
  margin-bottom: 28px;
  color: #e6eae6;
}
.hero .tagline {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Smaller page banner (for non-home pages) */
.page-banner {
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.7)),
    url('images/shop4.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  border-bottom: 4px solid var(--green);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.page-banner .crumbs {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
}
.page-banner .crumbs a:hover { color: var(--white); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal); }

/* ========= STRIP / FEATURES ========= */
.feature-strip { background: var(--green); color: var(--white); padding: 28px 0; }
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.feature-item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; opacity: 0.95; }
.feature-item svg { margin-bottom: 8px; }

/* ========= SECTION SHARED ========= */
section { padding: 90px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}
.section-title h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section-title .divider { width: 60px; height: 4px; background: var(--green); margin: 18px auto; }
.section-title p {
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========= ABOUT ========= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--green);
  z-index: -1;
}
.about-content .eyebrow {
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}
.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: #444; }
.about-list { list-style: none; margin-top: 20px; }
.about-list li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  font-weight: 600;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 22px; height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  top: 11px;
}

/* ========= SERVICES ========= */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s;
  border-top: 4px solid var(--green);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.service-card .icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: var(--black);
  color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card:hover .icon {
  background: var(--green);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; }
.service-card .learn-more {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--green);
  text-transform: uppercase;
}
.service-card .learn-more:hover { color: var(--green-dark); }
.service-card.linked { cursor: pointer; }

/* ========= USED TIRES BANNER ========= */
.promo-banner {
  background: var(--green);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.promo-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 6px; }
.promo-text p { font-size: 1.05rem; opacity: 0.95; }
.promo-price {
  background: var(--white);
  color: var(--green);
  padding: 16px 30px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transform: rotate(-3deg);
}
.promo-price .from {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  display: block;
}
.promo-price .price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.promo-price .label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  font-weight: 700;
}

/* ========= ROADSIDE CTA BANNER ========= */
.cta-banner {
  background:
    linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)),
    url('images/shop1.jpg') center/cover;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-banner h2 span { color: var(--green-light); }
.cta-banner p {
  font-size: 1.15rem;
  margin-bottom: 26px;
  opacity: 0.9;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.phones { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }
.phone-block { text-align: center; }
.phone-block .label {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: var(--green-light);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.phone-block a {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.phone-block a:hover { color: var(--green-light); }

/* ========= WHY CHOOSE US ========= */
.why { background: var(--black); color: #d8e0d8; }
.why .section-title h2 { color: var(--white); }
.why .section-title p { color: #b8c0b8; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 30px 22px;
  border: 1px solid var(--steel);
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 4px;
}
.why-card:hover { border-color: var(--green); transform: translateY(-5px); }
.why-card .num {
  font-family: 'Oswald', sans-serif;
  color: var(--green-light);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { color: #b8c0b8; font-size: 0.93rem; }

/* ========= GALLERY ========= */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

/* ========= TESTIMONIALS ========= */
.testimonials { background: var(--light); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  color: var(--green);
  line-height: 1;
  opacity: 0.25;
}
.stars { color: var(--yellow); margin-bottom: 12px; font-size: 1.05rem; letter-spacing: 2px; }
.testi-card p { color: #444; font-style: italic; margin-bottom: 18px; }
.testi-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}
.testi-author small {
  display: block;
  color: var(--gray);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ========= CONTACT ========= */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 18px; }
.contact-info .info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-icon {
  width: 46px; height: 46px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item h4 { font-size: 1rem; margin-bottom: 2px; }
.info-item p, .info-item a { color: #444; }
.info-item a:hover { color: var(--green); }

.hours-table {
  background: var(--green-pale);
  padding: 24px;
  border-left: 4px solid var(--green);
  margin-top: 18px;
  border-radius: 4px;
}
.hours-table h4 { margin-bottom: 12px; font-size: 1.1rem; }
.hours-table .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #cfe5d5;
  font-size: 0.95rem;
}
.hours-table .row:last-child { border-bottom: none; }
.hours-table .row .day { font-weight: 600; }
.hours-table .closed { color: var(--green-dark); font-weight: 600; }
.after-hrs-note {
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
  margin-top: 12px;
  border-radius: 4px;
  text-align: center;
  font-size: 0.95rem;
}
.after-hrs-note strong { color: var(--green-light); }

form { display: grid; gap: 16px; }
form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form input, form select, form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d4d6da;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--light);
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
form textarea { resize: vertical; min-height: 130px; }
form button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
form button:hover { background: var(--green-dark); }

/* ========= SERVICE / AREA PAGE STYLES ========= */
.content-page { padding: 80px 0; background: var(--white); }
.content-page .content-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.content-page article h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 30px 0 14px;
  color: var(--black);
}
.content-page article h2:first-child { margin-top: 0; }
.content-page article h3 {
  font-size: 1.25rem;
  margin: 22px 0 10px;
}
.content-page article p {
  margin-bottom: 16px;
  color: #333;
  font-size: 1.05rem;
}
.content-page article ul {
  margin: 14px 0 22px;
  padding-left: 0;
  list-style: none;
}
.content-page article ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #333;
}
.content-page article ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 20px; height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  top: 9px;
  font-weight: 700;
}
/* Related posts list — no checkmarks, cleaner card look */
.content-page article ul.related-posts {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}
.content-page article ul.related-posts li {
  padding: 14px 0;
  padding-left: 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  transition: padding-left 0.2s;
}
.content-page article ul.related-posts li::before {
  content: none;
  display: none;
}
.content-page article ul.related-posts li:hover {
  padding-left: 8px;
}
.content-page article ul.related-posts li a {
  font-weight: 600;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  font-size: 1rem;
}
.content-page article ul.related-posts li a:hover {
  color: var(--green);
}
.content-page article ul.related-posts li small {
  display: block;
  color: var(--gray);
  margin-top: 4px;
  font-size: 0.85rem;
}
.content-page .lead {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.55;
}
.content-page .feature-img {
  border-radius: 6px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.content-page .feature-img img { width: 100%; height: auto; }

.sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--green-pale);
  border: 1px solid #cfe5d5;
  border-radius: 6px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.sidebar-card.dark {
  background: var(--black);
  border-color: var(--steel);
  color: var(--white);
}
.sidebar-card.dark h4 { color: var(--white); }
.sidebar-card.dark a { color: var(--green-light); }
.sidebar-card h4 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}
.sidebar-card ul { list-style: none; }
.sidebar-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid #cfe5d5;
  font-size: 0.95rem;
}
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card.dark ul li { border-bottom-color: var(--steel); }
.sidebar-card a:hover { color: var(--green-dark); }
.sidebar-card.dark a:hover { color: var(--white); }
.sidebar-phone {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin: 6px 0;
}
.sidebar-card.dark .sidebar-phone { color: var(--green-light); }

/* Reviews page list */
.reviews-list { display: grid; gap: 24px; max-width: 880px; margin: 0 auto; }
.review-card {
  background: var(--white);
  padding: 30px 32px;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  border-left: 4px solid var(--green);
}
.review-card .stars { font-size: 1.1rem; }
.review-card p { color: #333; margin: 12px 0; font-size: 1.05rem; line-height: 1.6; }
.review-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--gray);
}
.review-card .meta strong { color: var(--black); font-family: 'Oswald', sans-serif; letter-spacing: 1px; }

/* ========= FOOTER ========= */
footer { background: var(--black); color: #b8c0b8; padding: 70px 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.foot-col h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 10px;
}
.foot-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--green);
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 5px 0; font-size: 0.95rem; }
.foot-col a:hover { color: var(--green-light); }
.foot-col p { font-size: 0.95rem; margin-bottom: 10px; line-height: 1.6; }
.foot-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.foot-logo-wrap img { height: 56px; width: auto; }
.foot-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}
.foot-logo-text .accent { color: var(--green-light); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.copyright {
  border-top: 1px solid var(--steel);
  padding: 22px 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 14px;
    align-items: flex-start;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  nav ul.open { display: flex; }
  .has-dropdown { width: 100%; }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 8px 0 8px 16px;
    margin-top: 8px;
    border-left: 2px solid var(--green);
    border-radius: 0;
    min-width: 0;
    width: 100%;
  }
  .dropdown a { padding: 10px 12px; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a.dropdown-toggle::after {
    content: ' ▾';
    font-size: 0.7em;
    transition: transform 0.2s;
    display: inline-block;
  }
  .has-dropdown.open > a.dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .testi-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-right a { margin: 0 8px; }
  .sidebar { position: static; }
}
@media (max-width: 600px) {
  .feature-strip .container, .why-grid, .foot-grid { grid-template-columns: 1fr; }
  .services-grid, .testi-grid, .gallery-grid { grid-template-columns: 1fr; }
  form .row-2 { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero {
    min-height: 540px;
    background:
      linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.55)),
      url('images/hero-fleet.jpg') center/cover no-repeat;
  }
  .phones { gap: 24px; }
  .logo-wrap img { height: 52px; }
  .logo-text { font-size: 1.1rem; }
}
