/* =============================================
   WEISEL GMBH — Design System v2
   Orange-first, modern industrial
   ============================================= */

:root {
  --orange:       #E05A1A;
  --orange-light: #F07030;
  --orange-glow:  #FF6B2B;
  --orange-dark:  #B84714;
  --orange-muted: rgba(224,90,26,0.12);
  --dark:         #141618;
  --dark-2:       #1E2124;
  --dark-3:       #282C30;
  --mid:          #5A5F67;
  --mid-light:    #8A8F98;
  --light:        #F6F5F3;
  --light-2:      #EDECEA;
  --white:        #FFFFFF;
  --border:       #E2E0DC;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       5px;
  --radius-lg:    10px;
  --shadow:       0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --shadow-orange:0 8px 32px rgba(224,90,26,0.25);
  --transition:   0.2s ease;
  --grad-orange:  linear-gradient(135deg, var(--orange-glow) 0%, var(--orange) 50%, var(--orange-dark) 100%);
  --grad-dark:    linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
  --grad-hero:    linear-gradient(135deg, rgba(20,22,24,0.97) 40%, rgba(20,22,24,0.65) 100%);
}

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

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.5rem;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 20px rgba(224,90,26,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

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

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

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 3px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }

nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  color: rgba(255,255,255,0.72);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
nav a:hover, nav a.active { color: var(--white); }
nav a.active { background: rgba(255,255,255,0.07); }

.nav-cta {
  background: var(--grad-orange) !important;
  color: var(--white) !important;
  margin-left: 0.5rem;
  box-shadow: 0 2px 12px rgba(224,90,26,0.35);
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(224,90,26,0.5) !important; transform: translateY(-1px); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.7; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem 0;
  border-top: 3px solid var(--orange);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  color: var(--dark) !important;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  background: transparent !important;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--light) !important; color: var(--orange) !important; }

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Orange accent stripe on right */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 6px;
  background: var(--grad-orange);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 5rem 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--grad-orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em {
  color: transparent;
  -webkit-text-stroke: 1px var(--orange-light);
  font-style: normal;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 540px; margin-bottom: 2rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--grad-orange);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.trust-item::before { content: '✓'; font-weight: 700; }

/* ── Section Headers ── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header p { color: var(--mid); margin-top: 0.75rem; font-size: 1.05rem; max-width: 560px; }
.section-header.centered p { margin-inline: auto; }

/* Orange underline accent on h2 */
.section-header h2 { position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 3px;
  background: var(--grad-orange);
  border-radius: 2px;
}
.section-header.centered h2::after { left: 50%; transform: translateX(-50%); }

/* ── Services ── */
.services-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,22,24,0.1) 0%, rgba(20,22,24,0.93) 65%);
  z-index: 1;
}
.service-card img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}
.service-card:hover img.bg-img { transform: scale(1.04); }

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.service-card .label { color: var(--orange-light); }
.service-card h3 { color: white; font-size: 1.5rem; margin-bottom: 0.5rem; }
.service-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1rem; }
.service-card.featured { min-height: 400px; }
.service-card.featured h3 { font-size: 1.8rem; }

.services-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card-small {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
}
.service-card-small:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-orange);
  transform: translateY(-2px);
}
.service-card-small .card-img {
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.service-card-small .card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-small h4 { font-size: 1rem; }
.service-card-small p { color: var(--mid); font-size: 0.85rem; flex: 1; }
.service-card-small a {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.service-card-small a:hover { text-decoration: underline; }

/* ── Fleet ── */
.fleet-section { background: var(--light); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--orange); }

.fleet-card-img {
  height: 200px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-img-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 4rem;
  color: rgba(255,255,255,0.12);
}

.fleet-card-body { padding: 1.25rem; }
.fleet-tag {
  display: inline-block;
  background: var(--orange-muted);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}
.fleet-card-body h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.fleet-card-body .sub { color: var(--mid); font-size: 0.85rem; margin-bottom: 1rem; }
.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-bottom: 1rem;
}
.spec { font-size: 0.8rem; }
.spec-key { color: var(--mid); display: block; font-size: 0.7rem; }
.spec-val { font-weight: 600; }

/* ── Projects ── */
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2rem;
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark-2);
  cursor: pointer;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover img { transform: scale(1.05); }

.project-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:first-child .project-img { height: 100%; min-height: 320px; }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,90,26,0.9), rgba(184,71,20,0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: 0.25s ease;
}
.project-overlay h4 { color: white; font-size: 1rem; }
.project-overlay span { color: rgba(255,255,255,0.75); font-size: 0.82rem; }

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(0deg, rgba(20,22,24,0.92) 0%, transparent 100%);
}
.project-info h4 { color: white; font-size: 0.95rem; }
.project-info span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ── Orange CTA Section ── */
.cta-section {
  background: var(--grad-orange);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; z-index: 1; }
.cta-inner h2 { color: white; }
.cta-inner p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; }
.btn-white { background: white; color: var(--orange); font-weight: 700; }
.btn-white:hover { background: var(--light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }

/* ── Contact ── */
.contact-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-line { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-muted);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-line strong { display: block; font-size: 0.75rem; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.1rem; }
.contact-line a { color: var(--dark); font-weight: 600; }
.contact-line a:hover { color: var(--orange); }

.contact-form { background: var(--light); border-radius: var(--radius-lg); padding: 2rem; border: 1.5px solid var(--border); }
.contact-form h3 { margin-bottom: 1.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--mid); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  background: white;
  transition: var(--transition);
  color: var(--dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224,90,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-top-bar {
  height: 4px;
  background: var(--grad-orange);
  margin-bottom: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(224,90,26,0.1); }
footer h4 { color: white; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
footer ul a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: var(--transition); }
footer ul a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── Page Hero (Subpages) ── */
.page-hero {
  background: var(--dark);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,22,24,0.95) 50%, rgba(20,22,24,0.75) 100%);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-size: 1.05rem; max-width: 580px; line-height: 1.75; }
/* Orange bar along bottom of page hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-orange);
  z-index: 3;
}

/* Breadcrumb */
.breadcrumb { padding: 0.75rem 0 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── Filter Bar ── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 70px;
  z-index: 50;
}
.filter-inner { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-muted);
}

/* ── Fleet Full Grid ── */
.fleet-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}

/* ── Projects Full Grid ── */
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 0;
}
.project-full-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.project-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--orange); }
.project-full-img {
  height: 220px;
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
}
.project-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-full-card:hover .project-full-img img { transform: scale(1.05); }
.project-full-body { padding: 1.25rem; }
.project-full-body h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.project-full-body p { color: var(--mid); font-size: 0.85rem; margin-bottom: 1rem; }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.project-tag {
  background: var(--light);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Modals ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  border-top: 4px solid var(--orange);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--mid);
  line-height: 1;
  display: grid;
  place-items: center;
}
.modal-close:hover { background: var(--border); color: var(--dark); }
.modal h3 { margin-bottom: 0.25rem; }
.modal .sub { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.5rem; }
.vehicle-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange-muted);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--orange);
}
.vehicle-badge .icon { font-size: 1.5rem; }
.vehicle-badge strong { display: block; font-size: 0.9rem; }
.vehicle-badge span { font-size: 0.8rem; color: var(--mid); }

/* ── Sidebar / Prose ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.sticky-sidebar { position: sticky; top: 90px; }

.sidebar-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--orange);
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; justify-content: center; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.checklist li { display: flex; gap: 0.6rem; font-size: 0.9rem; align-items: flex-start; }
.checklist li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

.prose h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.1rem; margin: 2rem 0 0.6rem; color: var(--dark); }
.prose p { color: #454850; line-height: 1.8; margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: #454850; line-height: 1.8; margin-bottom: 0.4rem; }
.prose strong { color: var(--dark); }
.prose a { color: var(--orange); font-weight: 500; }
.prose a:hover { text-decoration: underline; }

.highlight-box {
  background: var(--orange-muted);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.highlight-box p { margin: 0; color: var(--dark); font-weight: 500; }

.service-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  height: 300px;
}
.service-img-block img { width: 100%; height: 100%; object-fit: cover; }

/* ── About Timeline ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--border) 100%);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid white;
  transform: translateX(1px);
}
.timeline-item.highlight::before {
  background: var(--grad-orange);
  border-color: white;
  width: 16px;
  height: 16px;
  top: 4px;
  transform: translateX(-1px);
  box-shadow: 0 0 0 3px rgba(224,90,26,0.2);
}
.timeline-year { font-size: 0.72rem; font-weight: 800; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.timeline-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-desc { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* ── Team Cards ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.team-card { text-align: center; }
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--dark-2);
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  overflow: hidden;
  border: 3px solid var(--orange-muted);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.82rem; color: var(--mid); }

/* ── Stats row ── */
.stat-row {
  display: flex;
  gap: 0;
  background: var(--grad-orange);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 4rem;
  overflow: hidden;
}
.stat-row .stat-block {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-row .stat-block:last-child { border-right: none; }
.stat-row .stat-num { font-size: 2rem; font-weight: 800; color: white; line-height: 1; -webkit-text-fill-color: white; background: none; }
.stat-row .stat-label { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-top: 0.3rem; }

/* ── FAQ ── */
.faq { margin: 2.5rem 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.1rem 0; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: var(--font); color: var(--dark); transition: color 0.15s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .arrow { transition: transform 0.2s; flex-shrink: 0; color: var(--orange); font-size: 0.8rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 1.1rem; color: var(--mid); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── Gallery / Image Grid ── */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.img-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.img-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.img-gallery-item:hover img { transform: scale(1.06); }

/* ── Lightbox ── */
.lightbox-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex-direction: column;
}
.lightbox-backdrop.open { display: flex; }
.lightbox-img {
  max-width: 900px;
  width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lightbox-img img { width: 100%; height: 100%; object-fit: contain; max-height: 70vh; }
.lightbox-placeholder {
  background: var(--dark-2);
  min-height: 400px;
  display: grid;
  place-items: center;
  font-size: 8rem;
  color: rgba(255,255,255,0.08);
}
.lightbox-info {
  max-width: 900px;
  width: 100%;
  margin-top: 1.5rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.lightbox-info h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.lightbox-info p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.1); border: none; color: white;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; display: grid; place-items: center; transition: background 0.2s;
}
.lightbox-close:hover { background: var(--orange); }
.lightbox-nav { display: flex; gap: 0.75rem; }
.lightbox-nav button {
  background: rgba(255,255,255,0.1); border: none; color: white;
  padding: 0.5rem 1.2rem; border-radius: var(--radius); cursor: pointer;
  font-size: 0.9rem; transition: background 0.2s; font-family: var(--font);
}
.lightbox-nav button:hover { background: var(--orange); }

/* ── Jobs Page ── */
.job-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  background: white;
}
.job-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.job-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.job-badge {
  display: inline-block;
  background: var(--orange-muted);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.job-card p { color: var(--mid); font-size: 0.9rem; margin-bottom: 1.5rem; }
.job-list { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.job-list li { font-size: 0.9rem; color: #454850; display: flex; gap: 0.5rem; }
.job-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.job-list-section h4 { font-size: 0.8rem; font-weight: 700; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; margin-top: 1rem; }

/* ── Legal Pages ── */
.legal-content { max-width: 800px; padding: 4rem 0; }
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.legal-content p, .legal-content li { color: #454850; line-height: 1.8; font-size: 0.9rem; margin-bottom: 0.5rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 960px) {
  nav { display: none; }
  .mobile-cta { display: flex !important; }
  .services-main { grid-template-columns: 1fr; }
  .services-secondary { grid-template-columns: 1fr 1fr; }
  .fleet-grid, .fleet-full-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid .project-card:first-child .project-img { min-height: 240px; }
  .cta-inner { flex-direction: column; }
  .contact-teaser { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .projects-full-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .stat-row { flex-wrap: wrap; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .services-secondary { grid-template-columns: 1fr; }
  .fleet-grid, .fleet-full-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .cta-actions { flex-direction: column; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .img-gallery { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; }
  .stat-row .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}
