/* ============================================================
   DAG-TOURS — Feuille de style principale
   Auteur   : Claude (Anthropic)
   Version  : 1.0
   Palette  : Noir #0C0C0C · Or #B8963E · Blanc #FFFFFF
   Fonts    : Cormorant Garamond (titres) · Inter (corps)
   ============================================================ */

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

:root {
  --black:       #0C0C0C;
  --black-soft:  #1A1A1A;
  --gold:        #B8963E;
  --gold-light:  #D4AF6A;
  --gold-pale:   #F5EDD8;
  --white:       #FFFFFF;
  --gray-bg:     #F8F7F4;
  --gray-light:  #EDEBE6;
  --gray-mid:    #9A9A9A;
  --gray-text:   #4A4A4A;
  --border:      #E0D8C8;

  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.14);
  --transition:  .3s ease;
  --max-w:       1200px;
  --section-py:  100px;
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--transition); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p  { font-size: 1rem; color: var(--gray-text); line-height: 1.8; }

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

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-py) 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 580px;
  margin: 0 auto 56px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,150,62,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-sm { padding: 11px 24px; font-size: .8rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── DIVIDER ───────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.divider-left { margin: 0 0 28px; }

/* ─── BADGE / CHIP ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(184,150,62,.12);
  border: 1px solid rgba(184,150,62,.3);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
}

/* ─── HEADER / NAV ──────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: var(--black);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-main span { color: var(--gold); }
.logo-sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  border-radius: 4px;
  transition: all var(--transition);
  letter-spacing: .04em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-phone svg { width: 15px; height: 15px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 4px;
  transition: background var(--transition);
}
.burger:hover { background: rgba(255,255,255,.1); }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  transition: all var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.07); color: var(--white); }
.mobile-menu .mobile-cta { margin-top: 12px; }

/* ─── HERO ──────────────────────────────────────────────────── */
/* Fix: contenu au-dessus du hero-bg sur toutes les pages */
.hero .container { position: relative; z-index: 1; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,12,12,.92) 0%, rgba(26,26,26,.75) 100%),
    linear-gradient(to right, #1a1a1a 0%, #2d2416 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,150,62,.12) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
}
.hero-trust-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* Hero sub-page */
.hero-sub {
  min-height: 42vh;
  padding-top: 80px;
}
.hero-sub .hero-content { max-width: 100%; }

/* ─── STATS BAR ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 0;
}
.stats-bar-inner {
  display: flex;
  align-items: stretch;
  height: 88px;
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.25);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ─── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,62,.3);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: background var(--transition);
}
.card:hover .card-icon { background: var(--gold); }
.card h3 { margin-bottom: 12px; }
.card p  { font-size: .93rem; }

/* ─── SERVICE CARDS ─────────────────────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--black-soft);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,.92) 0%, rgba(12,12,12,.3) 60%, transparent 100%);
  z-index: 1;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  font-size: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .07;
  z-index: 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { background: linear-gradient(to top, rgba(184,150,62,.9) 0%, rgba(12,12,12,.5) 60%, transparent 100%); }
.service-card-content { position: relative; z-index: 2; }
.service-card-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.35rem; }
.service-card p  { color: rgba(255,255,255,.7); font-size: .88rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 10px; }

/* ─── WHY US ─────────────────────────────────────────────────── */
.why-bg { background: var(--gray-bg); }
.why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); border-color: rgba(184,150,62,.3); }
.why-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.why-item:hover .why-num { color: var(--gold); }
.why-text h4 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 6px; }
.why-text p  { font-size: .88rem; }

/* ─── FLEET ─────────────────────────────────────────────────── */
.fleet-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-card-img {
  height: 200px;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fleet-card-body { padding: 28px; }
.fleet-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.fleet-capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(184,150,62,.15);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.fleet-card p { color: rgba(255,255,255,.6); font-size: .88rem; }
.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.fleet-tag {
  padding: 4px 10px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}

/* ─── ENGAGEMENTS ───────────────────────────────────────────── */
.engagement-dark { background: var(--black); }
.engagement-item {
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}
.engagement-item:hover {
  border-color: var(--gold);
  background: rgba(184,150,62,.05);
  transform: translateY(-4px);
}
.engagement-icon { font-size: 2.4rem; margin-bottom: 18px; }
.engagement-item h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.engagement-item p { color: rgba(255,255,255,.55); font-size: .9rem; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: .93rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 24px; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-info strong { display: block; font-size: .9rem; font-weight: 600; }
.testi-info span   { font-size: .8rem; color: var(--gray-mid); }

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-bg); }
.faq-item.open .faq-question { background: var(--gold-pale); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: .95rem;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ─── CTA SECTION ───────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0C0C0C 0%, #1a150a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,62,.15) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.6); margin-bottom: 40px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.cta-trust-item {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cta-trust-item::before { content: '✓'; color: var(--gold); }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: sticky;
  top: 100px;
}
.contact-info-card h2 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,.6); margin-bottom: 36px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(184,150,62,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}
.contact-item-text strong {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text span { color: rgba(255,255,255,.82); font-size: .95rem; }
.contact-item-text a:hover { color: var(--gold); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-card h2 { margin-bottom: 8px; }
.form-card > p { margin-bottom: 32px; color: var(--gray-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--gray-mid);
  margin-top: 14px;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--black); margin-bottom: 8px; }
.form-success p { color: var(--gray-mid); }

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative;
}
.about-visual-main {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.about-visual-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,150,62,.1) 0%, transparent 70%);
}
.about-visual-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-visual-badge .num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-visual-badge .label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 4px;
}
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about-value-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-value-text strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.about-value-text p { font-size: .87rem; margin: 0; }

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ─── FOOTER ────────────────────────────────────────────────── */
#footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo-main { font-size: 1.5rem; }
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .87rem;
  margin: 18px 0 24px;
  line-height: 1.75;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold); font-size: 1rem; }
.footer-col ul li a:hover  { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .87rem;
  color: rgba(255,255,255,.45);
}
.footer-contact-item a { color: rgba(255,255,255,.45); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item .icon { font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}
.footer-bottom p  { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .05em;
}

/* ─── BACK TO TOP ───────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(184,150,62,.4);
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ─── SCROLL ANIMATION ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { position: static; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-wrap: wrap; height: auto; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.25); padding: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-visual-badge { bottom: -16px; right: -8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 16px; }
  .form-card, .contact-info-card { padding: 28px; }
  .card { padding: 24px; }
  .engagement-item { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .btn { padding: 14px 26px; font-size: .83rem; }
  .nav-cta .btn { display: none; }
}

/* ─── HERO BUS PHOTO ────────────────────────────────────────── */
.hero-bus-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 48%;
  z-index: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
}
.hero-bus-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 35%),
              linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 40%);
}
.hero-bus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .75;
  filter: grayscale(20%);
}
@media (max-width: 768px) {
  .hero-bus-img {
    width: 100%;
    opacity: .25;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero-bus-img img { opacity: .5; }
}

/* ─── LOGO IMAGE ────────────────────────────────────────────── */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ─── FLEET PHOTO ────────────────────────────────────────────── */
.fleet-card-img {
  height: 200px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .4s ease;
}
.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}

/* ─── BLOG ────────────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(184,150,62,.3); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card p  { font-size: .88rem; color: var(--gray-mid); flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--gray-mid);
}
.blog-card-meta a { color: var(--gold); font-weight: 600; }
.blog-card-meta a:hover { color: var(--gold-light); }

/* ─── SERVICE PAGE DETAIL ─────────────────────────────────────── */
.service-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.quote-form-section {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.quote-form-section h2 { margin-bottom: 8px; }
.quote-form-section > p { color: var(--gray-mid); margin-bottom: 32px; }

/* ─── MEGA MENU ─────────────────────────────────────────────── */
.nav-item { position: relative; }
.nav-item.has-mega > a { display: flex; align-items: center; gap: 5px; }
.nav-arrow {
  font-size: .7rem;
  transition: transform var(--transition);
  display: inline-block;
  opacity: .7;
}
.nav-item.has-mega:hover .nav-arrow,
.nav-item.has-mega:focus-within .nav-arrow { transform: rotate(90deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  background: #111111;
  border: 1px solid rgba(184,150,62,.25);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 2000;
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(184,150,62,.3);
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 10px;
  transition: background var(--transition);
  text-decoration: none;
}
.mega-item:hover { background: rgba(184,150,62,.1); }
.mega-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(184,150,62,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mega-item:hover .mega-icon { background: rgba(184,150,62,.25); }
.mega-text { display: flex; flex-direction: column; gap: 2px; }
.mega-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.mega-desc {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
}
.mega-footer {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: center;
}
.mega-footer a {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background var(--transition);
}
.mega-footer a:hover { background: rgba(184,150,62,.1); }

/* Mobile: mega menu inside burger */
.mobile-mega { display: flex; flex-direction: column; gap: 2px; padding: 6px 0 6px 16px; border-left: 2px solid rgba(184,150,62,.25); margin: 4px 0 8px; }
.mobile-mega a { padding: 10px 14px; font-size: .88rem; color: rgba(255,255,255,.65); border-radius: 6px; display: flex; align-items: center; gap: 10px; }
.mobile-mega a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.mobile-mega-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-mega-arrow { font-size: .7rem; transition: transform .25s; }
.mobile-mega.open ~ a, .mobile-mega { display: none; }
.mobile-mega.open { display: flex; }

/* ─── PHOTO SLOT ────────────────────────────────────────────── */
.photo-slot {
  background: #f5f0e8;
  border: 2px dashed rgba(184,150,62,.45);
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: var(--gray-mid);
  font-size: .85rem;
  transition: border-color var(--transition);
  overflow: hidden;
  position: relative;
}
.photo-slot:hover { border-color: var(--gold); }
.photo-slot-icon { font-size: 2.5rem; margin-bottom: 12px; opacity: .5; }
.photo-slot strong { display: block; color: var(--gray-text); font-size: .9rem; margin-bottom: 6px; }
.photo-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ─── SERVICE PAGE PHOTO SECTIONS ──────────────────────────── */
.photo-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.photo-text-section:last-of-type { border-bottom: none; }
.photo-text-section.reverse .photo-slot-wrap { order: 2; }
.photo-text-section.reverse .photo-text-wrap  { order: 1; }
.photo-text-wrap h2 { margin-bottom: 16px; }
.photo-text-wrap p  { margin-bottom: 14px; }
.photo-features { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.photo-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--gray-text);
}
.photo-feature::before {
  content: '✓';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-pale); color: var(--gold);
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Service page quote form at top */
.service-quote-top {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
  max-width: 960px;
}
.service-quote-top h2 { margin-bottom: 8px; font-size: 1.9rem; }
.service-quote-top > p { margin-bottom: 28px; color: var(--gray-mid); }

@media (max-width: 768px) {
  .mega-menu { width: calc(100vw - 32px); left: 16px; transform: none; }
  .mega-menu::before { display: none; }
  .nav-item.has-mega:hover .mega-menu { transform: none; }
  .photo-text-section { grid-template-columns: 1fr; gap: 32px; }
  .photo-text-section.reverse .photo-slot-wrap { order: -1; }
  .photo-text-section.reverse .photo-text-wrap  { order: 0; }
  .service-quote-top { padding: 28px; margin: -24px 16px 0; }
}
