/* ===== ROOT VARIABLES ===== */
:root {
  --yellow: #FFCD11;
  --yellow-dark: #c9a800;
  --yellow-light: #fff3b0;
  --black: #1a1a1a;
  --dark: #2d2d2d;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #555555;
  --gray-mid: #777777;
  --gray-light: #e2e2e2;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --font: 'Segoe UI', Arial, sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Light section (default) */
.section { padding: 80px 0; background: var(--white); color: var(--text-dark); }

/* "Dark" sections become light-gray in this theme */
.section-dark {
  background: var(--off-white);
  color: var(--text-dark);
}
.section-dark .section-subtitle,
.section-dark .card p,
.section-dark .fleet-card-body p,
.section-dark p { color: var(--text-body); }
.section-dark h3 { color: var(--text-dark); }
.section-dark .section-title { color: var(--text-dark); }
.section-dark .yellow { color: var(--yellow-dark); }

.section-light { background: #fafafa; color: var(--text-dark); }
.section-darker { background: #ebebeb; color: var(--text-dark); }

.yellow { color: var(--yellow-dark); }
.text-center { text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-subtitle {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 48px;
}
.divider {
  width: 56px;
  height: 4px;
  background: var(--yellow);
  margin: 14px auto 32px;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: #ffe033;
  border-color: #ffe033;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero gets yellow outline button */
.hero .btn-outline {
  color: var(--yellow);
  border-color: rgba(255,205,17,0.7);
}
.hero .btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; flex-direction: column; line-height: 1.15; }
.navbar .logo {
  width: 400px;
  height: 64px;
  flex: 0 1 400px;
  overflow: hidden;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.logo-main {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.6rem;
  color: var(--gray-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 0.54rem;
  color: var(--yellow-dark);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--yellow-dark); }
.nav-links a.active { color: var(--yellow-dark); }
.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 4px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: #ffe033; color: var(--black); }
.nav-links .nav-cta.active { color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO — full-width photo background, text left-overlaid ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/hero-trailer-new.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 60px;
}
/* Dark gradient overlay — heavy on left for readability, fades right to show photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.82) 35%,
    rgba(0,0,0,0.52) 58%,
    rgba(0,0,0,0.16) 78%,
    rgba(0,0,0,0.02) 100%
  );
  z-index: 0;
}
/* Yellow accent line at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  z-index: 2;
}
/* Single-column layout — content stays on the left half */
.hero-inner {
  display: block;
  max-width: 760px;
  position: relative;
  z-index: 1;
  padding-top: 32px;
  padding-bottom: 40px;
}
.hero-content { position: relative; z-index: 1; }
/* Photo is now the background — hide the separate image box */
.hero-image { display: none !important; }
.hero-image-badge { display: none; }

.hero-badge {
  display: inline-block;
  background: rgba(255,205,17,0.12);
  border: 1px solid rgba(255,205,17,0.45);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero h1 span { color: var(--yellow); display: block; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  max-width: 500px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: none; }
.stat { border-left: 3px solid var(--yellow); padding-left: 16px; }
.stat-number { font-size: 1.9rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--yellow); padding: 15px 0; }
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--black);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-item svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--yellow-dark);
}
.section-dark .card {
  background: var(--white);
  border-color: var(--gray-light);
}
.card-icon {
  width: 50px; height: 50px;
  background: rgba(255,205,17,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 25px; height: 25px; color: var(--yellow-dark); }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.card p { color: var(--text-body); font-size: 0.93rem; line-height: 1.65; }
.section-dark .card h3 { color: var(--text-dark); }

/* ===== FLEET GRID ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #d0d0d0;
}
.section-dark .fleet-card { background: var(--white); border-color: var(--gray-light); }
.fleet-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--yellow);
  background: #f0f0f0;
}
.fleet-card-header {
  background: var(--white);
  padding: 16px 20px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-light);
}
.fleet-card-icon {
  width: 38px; height: 38px;
  background: rgba(255,205,17,0.14);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fleet-card-icon svg { width: 20px; height: 20px; color: var(--yellow-dark); }
.fleet-card-header h3 { font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.fleet-card-body { padding: 16px 20px 20px; }
.fleet-card-body p { color: var(--text-body); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.6; }
.section-dark .fleet-card-body p { color: var(--text-body); }
.fleet-tag {
  display: inline-block;
  background: rgba(255,205,17,0.1);
  border: 1px solid rgba(201,168,0,0.3);
  color: #8a6e00;
  font-size: 0.73rem;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 600;
  margin: 3px 3px 3px 0;
}
.section-dark .fleet-tag { color: #8a6e00; }

/* ===== PAGE HERO (inner pages — stays dark) ===== */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(135deg, #050505 0%, #111 55%, #1a1200 100%);
  border-bottom: 3px solid var(--yellow);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,205,17,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--white);
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: #cccccc; font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.83rem;
  color: #777;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb span { color: #444; }

/* ===== SERVICES PAGE ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.section-dark .service-visual {
  background: var(--white);
  border-color: var(--gray-light);
  border-left-color: var(--yellow);
}
/* Force heading color inside service-visual on any background */
.service-visual h3 { color: var(--yellow-dark) !important; margin-bottom: 20px; }

.service-check-list { margin-top: 4px; }
.service-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-body);
  font-size: 0.93rem;
}
.service-check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 20px; height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { width: 11px; height: 11px; color: var(--black); }

/* ===== HIRE TERM CARDS ===== */
.hire-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hire-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.hire-card.featured {
  border-color: var(--yellow);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 4px 28px rgba(255,205,17,0.18);
}
.hire-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.hire-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.hire-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.hire-card .hire-desc { color: var(--gray-mid); font-size: 0.88rem; margin-bottom: 24px; }
.hire-card ul { text-align: left; margin-bottom: 24px; }
.hire-card ul li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-body); font-size: 0.9rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-light);
}
.hire-card ul li:last-child { border-bottom: none; }
.dot { width: 7px; height: 7px; background: var(--yellow-dark); border-radius: 50%; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-dark);
  text-align: left;
  padding: 22px 0;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  transition: var(--transition);
}
.faq-question:hover { color: var(--yellow-dark); }
.faq-icon {
  width: 28px; height: 28px;
  background: rgba(255,205,17,0.1);
  border: 1px solid rgba(201,168,0,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--yellow-dark);
  font-size: 1.2rem;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-body);
  font-size: 0.93rem;
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,205,17,0.1);
  border: 1px solid rgba(201,168,0,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--yellow-dark); }
.contact-item h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow-dark); margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-body); font-size: 0.93rem; }
.contact-item a:hover { color: var(--yellow-dark); }

.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; margin-top: 12px; }
.area-tag {
  color: var(--text-body);
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.area-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow-dark);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== FORM ===== */
.quote-form {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.quote-form h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; color: var(--text-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 3px rgba(255,205,17,0.18);
  background: var(--white);
}
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--yellow); padding: 60px 0; text-align: center; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-banner p { color: rgba(0,0,0,0.62); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner .btn-primary {
  background: var(--black);
  border-color: var(--black);
  color: var(--yellow);
}
.cta-banner .btn-primary:hover { background: #333; border-color: #333; }
.cta-banner .btn-outline { border-color: var(--black); color: var(--black); }
.cta-banner .btn-outline:hover { background: var(--black); color: var(--yellow); }

/* ===== ABOUT VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--yellow);
  border-radius: 6px;
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-number { font-size: 2.5rem; font-weight: 900; color: rgba(201,168,0,0.22); line-height: 1; margin-bottom: 12px; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.value-card p { color: var(--text-body); font-size: 0.88rem; }

/* ===== TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--yellow);
  color: var(--black);
  padding: 15px 20px;
  text-align: left;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-body);
  font-size: 0.93rem;
  background: var(--white);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,205,17,0.05); }
.compare-table td:first-child { color: var(--text-dark); font-weight: 600; }

/* ===== TRAILER CARDS (Fleet page — Adaptalift style) ===== */
.trailer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trailer-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.trailer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.trailer-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
}
.trailer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.trailer-card:hover .trailer-img-wrap img { transform: scale(1.04); }
.trailer-card-body {
  padding: 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.trailer-card-body h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}
.trailer-card-body p {
  color: var(--gray-mid);
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.trailer-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 12px 20px;
  font-size: 0.88rem;
}

/* ===== WHY RENT ICON STRIP ===== */
.why-strip { padding: 64px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px 12px;
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  border-top: 3px solid var(--yellow);
  background: var(--white);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--yellow-dark);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(255,205,17,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 24px; height: 24px; color: var(--yellow-dark); }
.why-item span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ===== PRODUCT CARDS (fleet preview, Adaptalift-style) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f0f0f0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-top: 3px solid var(--yellow);
  gap: 12px;
}
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}
.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  border-top: 3px solid var(--yellow);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { color: var(--text-body); font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-dark); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-body); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--yellow-dark); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--yellow-dark); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item span { color: var(--text-body); font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid var(--gray-light);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  background: var(--off-white);
}
.footer-bottom p { color: var(--gray-mid); font-size: 0.83rem; }
.footer-bottom a { color: var(--yellow-dark); }

/* ===== RESPONSIVE ===== */

/* ---- 1024px (tablets) ---- */
@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .hire-cards { grid-template-columns: 1fr 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .who-we-are-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .mission-cards { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .faq-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
  .faq-sidebar { position: static !important; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr 1fr; }
  .trailer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 768px (mobile) ---- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-subtitle { font-size: 1rem; margin-bottom: 28px; }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }

  /* Navbar */
  .navbar-inner { height: 64px; }
  .navbar .logo {
    width: 300px;
    height: 56px;
    flex-basis: 300px;
  }
  .logo-tagline { display: none; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: #ffffff;
    border-top: 1px solid var(--gray-light);
    border-bottom: 2px solid var(--yellow);
    padding: 16px; gap: 4px;
    max-height: calc(100vh - 64px);
    overflow-y: auto; z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 13px 16px; border-radius: 4px; font-size: 0.95rem; display: block; color: var(--text-dark); }
  .nav-links a:hover { background: rgba(0,0,0,0.04); }
  .nav-links .nav-cta { margin-top: 8px; text-align: center; padding: 14px 20px; }
  .nav-toggle { display: flex; }

  /* Hero — on mobile, darken the overlay more uniformly since we lose the right side reveal */
  .hero { min-height: 92vh; padding-top: 64px; padding-bottom: 52px; }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.72) 60%,
      rgba(0,0,0,0.78) 100%
    );
  }
  .hero-inner { max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 7vw, 3.4rem); line-height: 1.1; letter-spacing: 0; }
  .hero p { font-size: 1rem; margin-bottom: 36px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* Trust bar */
  .trust-bar { padding: 12px 0; }
  .trust-bar-inner { gap: 10px 20px; }
  .trust-item { font-size: 0.78rem; }

  /* Page hero */
  .page-hero { padding: 96px 0 44px; }
  .page-hero p { font-size: 1rem; }

  /* Why strip */
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* Product grid */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card-body { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-sm { width: 100%; text-align: center; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }

  /* Hire cards */
  .hire-cards { grid-template-columns: 1fr; }
  .hire-card { padding: 28px 20px; }

  /* Cards */
  .card { padding: 24px 20px; }
  .cards-grid { grid-template-columns: 1fr; }

  /* About inline grids */
  .who-we-are-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .mission-cards { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* Compare table */
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 460px; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.85rem; }

  /* Services */
  .service-visual { padding: 24px 20px; }
  .service-check-list li { font-size: 0.88rem; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
  .faq-sidebar { position: static !important; margin-bottom: 32px; }
  .faq-cat-nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .faq-cat-nav li { flex: 0 0 auto; }
  .faq-cat-nav a { display: inline-block !important; padding: 8px 14px !important; font-size: 0.82rem !important; }
  .faq-question { font-size: 1rem; padding: 18px 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-form { padding: 24px 20px; }
  .areas-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* CTA */
  .cta-banner { padding: 40px 0; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .cta-banner p { font-size: 1rem; }
}

/* ---- 480px (small phones) ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 36px 0; }
  .page-hero { padding: 84px 0 36px; }
  .cta-banner { padding: 32px 0; }

  .navbar .logo {
    width: 250px;
    height: 48px;
    flex-basis: 250px;
  }
  .logo-sub { font-size: 0.5rem; letter-spacing: 1.5px; }

  .hero h1 { font-size: clamp(1.7rem, 8.5vw, 2.4rem); line-height: 1.12; }

  .trust-item { font-size: 0.72rem; }
  .trust-item svg { width: 15px; height: 15px; }
  .trust-bar-inner { gap: 8px 14px; }

  .fleet-card-img { height: 185px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .trailer-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hire-card.featured::before { font-size: 0.6rem; padding: 3px 10px; }

  .btn { padding: 13px 22px; }
  .value-card { padding: 20px 16px; }
  .value-number { font-size: 2rem; }

  .about-stats-grid > div { padding: 20px 16px !important; }

  .faq-question { font-size: 0.92rem; padding: 16px 0; }
  .faq-icon { width: 24px; height: 24px; font-size: 1rem; }

  .footer-grid { gap: 20px; }
  .footer-col h4 { margin-bottom: 14px; }
}

/* ---- Mobile polish layer ---- */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }
  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .navbar { border-bottom-width: 2px; }
  .navbar-inner { height: 66px; }
  .navbar .logo {
    width: min(62vw, 280px);
    height: 50px;
    flex-basis: min(62vw, 280px);
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: rgba(0,0,0,0.03);
  }
  .nav-toggle span { width: 22px; }
  .nav-links {
    top: 66px;
    padding: 14px 18px 20px;
    gap: 8px;
  }
  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    color: var(--text-dark);
    background: rgba(0,0,0,0.03);
  }
  .nav-links a.active {
    background: rgba(255,205,17,0.15);
    color: var(--yellow-dark);
  }
  .nav-links .nav-cta {
    margin: 10px 0 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--black);
  }
  .nav-links .nav-cta.active {
    background: var(--yellow);
    color: var(--black);
  }

  .hero {
    min-height: auto;
    padding-top: calc(94px + 56vw);
    padding-bottom: 58px;
    background-color: #050505;
    background-size: 100% auto;
    background-position: center 66px;
    background-repeat: no-repeat;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.16) 66px,
      rgba(0,0,0,0.22) calc(66px + 56vw),
      rgba(0,0,0,0.9) calc(66px + 56vw + 1px),
      rgba(0,0,0,0.9) 100%
    );
  }
  .hero-inner {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 auto;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.72rem, 7.5vw, 2.18rem);
    line-height: 1.08;
    margin: 0 auto 16px;
    max-width: 100%;
    text-align: center;
  }
  .hero p {
    font-size: 0.96rem;
    line-height: 1.55;
    margin: 0 auto 24px;
    max-width: 29ch;
  }
  .hero-btns { justify-content: center; }
  .hero-btns .btn {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .section { padding: 44px 0; }
  .section-title {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    margin-bottom: 10px;
  }
  .section-subtitle {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .divider { margin-bottom: 24px; }

  .why-strip { padding: 40px 0; }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }
  .why-item {
    min-height: 132px;
    padding: 18px 10px;
    border-radius: 7px;
  }
  .why-icon {
    width: 44px;
    height: 44px;
  }
  .why-icon svg {
    width: 21px;
    height: 21px;
  }
  .why-item span {
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .product-grid,
  .fleet-grid,
  .trailer-grid,
  .hire-cards,
  .cards-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card,
  .fleet-card,
  .trailer-card,
  .hire-card,
  .card,
  .value-card,
  .quote-form {
    border-radius: 8px;
  }
  .product-card-body,
  .trailer-card-body,
  .fleet-card-body,
  .card,
  .hire-card {
    padding: 20px 18px;
  }
  .product-card-body {
    align-items: stretch;
    text-align: left;
  }
  .product-card-body h3,
  .trailer-card-body h3,
  .fleet-card-header h3 {
    font-size: 1.02rem;
  }
  .fleet-card-img { height: 198px; }
  .trailer-img-wrap { aspect-ratio: 16 / 10; }
  .btn-sm,
  .trailer-btn {
    width: 100%;
    min-height: 46px;
  }

  .page-hero {
    padding: 106px 0 42px;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }
  .page-hero p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .breadcrumb {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.74rem;
  }

  .service-block { gap: 24px; }
  .service-visual { border-radius: 8px; }
  .service-check-list li {
    align-items: flex-start;
    line-height: 1.45;
  }

  .contact-grid { gap: 28px; }
  .contact-item {
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  .areas-grid { grid-template-columns: 1fr; }
  .quote-form {
    padding: 24px 18px;
    box-shadow: var(--shadow-sm);
  }
  .form-group { margin-bottom: 15px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    border-radius: 6px;
    padding: 13px 14px;
  }
  .form-group textarea { min-height: 118px; }

  .cta-banner .btn {
    width: 100%;
    margin-top: 8px;
  }
  .footer { padding-top: 34px; }
  .footer-grid { gap: 24px; }
  .footer-bottom { padding: 18px; }
}

@media (max-width: 420px) {
  .container { padding: 0 15px; }
  .navbar .logo {
    width: min(60vw, 240px);
    height: 46px;
    flex-basis: min(60vw, 240px);
  }
  .hero {
    padding-top: calc(88px + 56vw);
    padding-bottom: 46px;
  }
  .hero h1 {
    font-size: clamp(1.58rem, 7.3vw, 1.95rem);
    max-width: 100%;
  }
  .hero p {
    max-width: 28ch;
    font-size: 0.94rem;
  }
  .section { padding: 38px 0; }
  .why-item { min-height: 124px; }
  .fleet-card-img { height: 188px; }
}
