/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== VARIABLES ===== */
:root {
  --navy: #1a3a5c;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --dark: #0d1f33;
  --light-bg: #f7f8fa;
  --text: #333;
  --text-light: #666;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; transition: color .3s; }
.logo-text { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px; transition: color .3s; }
.logo-text span { color: var(--gold); }
.car-body { stroke: #fff; transition: stroke .3s; }
.navbar.scrolled .logo-text { color: var(--navy); }
.navbar.scrolled .car-body { stroke: var(--navy); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 14px; border-radius: 6px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); transition: all .2s; }
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-links a:hover { background: var(--light-bg); color: var(--navy); }
.btn-nav { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700 !important; padding: 8px 20px !important; }
.btn-nav:hover { background: var(--gold-light) !important; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.navbar.scrolled .menu-toggle span { background: var(--navy); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.btn-primary.full { width: 100%; text-align: center; }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  transition: all .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,31,51,0.72) 0%, rgba(26,58,92,0.55) 60%, rgba(13,31,51,0.35) 100%); }
.hero-content { position: relative; z-index: 1; padding: 120px 0 80px; max-width: 680px; }
.hero-badge { display: inline-block; background: rgba(201,168,76,0.2); border: 1px solid var(--gold); color: var(--gold); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 5vw, 64px); color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat-n { font-size: 24px; font-weight: 800; color: var(--gold); }
.stat-l { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }
.scroll-down { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== BAND ===== */
.band { background: var(--navy); padding: 14px 0; }
.band-inner { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.band-inner span { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.section-tag.light { color: var(--gold); }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 42px); color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border: 1px solid #e8e8e8; border-radius: var(--radius); padding: 28px; transition: all .3s; position: relative; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.service-card.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.service-badge { position: absolute; top: 16px; right: 16px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 12px; }
.service-badge:not(.coming) { background: var(--gold); color: var(--dark); }
.service-badge.coming { background: #1e3a5f; color: #fff; border: 1px solid #c9a84c; font-size: 12px; }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-list li { font-size: 13px; color: var(--text); padding-left: 18px; position: relative; }
.service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== YANGO ===== */
.yango-section { background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%); padding: 80px 0; }
.yango-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.yango-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,40px); color: #fff; margin-bottom: 20px; line-height: 1.2; font-weight: 700; }
.yango-text p { font-family: 'Inter', sans-serif; }
.yango-text p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.yango-points { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.yp { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 15px; }
.yp-icon { font-size: 16px; }
.yango-visual { position: relative; }
.yango-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.yango-badge-box { position: absolute; bottom: -20px; left: -20px; background: #fff; border-radius: 10px; padding: 14px 20px; box-shadow: var(--shadow-lg); }
.yango-logo-badge { display: flex; align-items: center; gap: 12px; }

/* ===== FLEET ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all .3s; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fleet-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fleet-info { padding: 20px; }
.fleet-info h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fleet-info p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.fleet-tag { display: inline-block; background: rgba(201,168,76,0.15); color: #8a6d1e; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: .5px; }

/* ===== ABOUT ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--navy); color: #fff; border-radius: 10px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3vw, 38px); color: var(--navy); margin-bottom: 16px; line-height: 1.25; }
.about-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value { display: flex; gap: 12px; align-items: flex-start; }
.value span { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.value strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.value p { font-size: 12px; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 22px; flex-shrink: 0; }
.ci strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.ci p { color: rgba(255,255,255,0.6); font-size: 14px; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 11px 14px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  transition: border-color .2s; outline: none; background: #fafafa;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #07111e; padding: 32px 0 24px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ===== VIDEO HERO ===== */
.video-container {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100vh;
  min-width: 177.78vh;
  pointer-events: none;
}

/* ===== COMING SOON CARDS ===== */
.service-badge.soon { background: #374151; color: #d1d5db; }
.coming-soon-card { opacity: 0.75; }
.coming-soon-card:hover { opacity: 0.9; }

/* ===== FLEET SOON ===== */
.fleet-soon { position: relative; }
.fleet-soon-banner {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #374151; color: #e5e7eb;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}
.fleet-tag.soon-tag { background: rgba(55,65,81,0.1); color: #4b5563; }

/* ===== LOGO SIZE ===== */
/* logo-text font-size déjà défini plus haut */
.navbar.scrolled .logo svg path,
.navbar.scrolled .logo svg line { stroke: #1a3a5c; }
.navbar.scrolled .logo svg circle[stroke="#c9a84c"] { stroke: #c9a84c; }
.navbar.scrolled .logo svg circle[fill="#1a3a5c"] { fill: #f7f8fa; }

.fleet-soon-banner {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #374151; color: #e5e7eb;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid, .fleet-grid { grid-template-columns: 1fr 1fr; }
  .yango-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .yango-badge-box { bottom: 16px; left: 16px; }
  .about-badge { bottom: 16px; right: 16px; }
  .about-img-wrap { margin-bottom: 30px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; }
  .menu-toggle { display: flex; }
  .services-grid { display: flex; flex-direction: column; }
  .services-grid .service-card:nth-child(1) { order: 1; }
  .services-grid .service-card:nth-child(2) { order: 2; }
  .services-grid .service-card:nth-child(3) { order: 3; }
  .services-grid .service-card:nth-child(4) { order: 4; }
  .services-grid .service-card:nth-child(5) { order: 5; }
  .services-grid .service-card:nth-child(6) { order: 6; }
  .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-sub { font-size: 14px; line-height: 1.5; }
  .band-inner { gap: 12px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 16px; }
  input[type="text"], input[type="email"], select, textarea { font-size: 14px !important; }
}
