@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --gold: #c8a45d;
  --gold-dark: #a8843f;
  --gold-soft: #eee2c6;
  --black: #0a0a0a;
  --black-soft: #151515;
  --white: #ffffff;
  --ivory: #f8f5ef;
  --sand: #eee7da;
  --text: #1b1b1b;
  --muted: #6f6a61;
  --border: rgba(15, 15, 15, 0.10);
  --shadow-sm: 0 12px 35px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --transition: 0.3s ease;
}

/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

main {
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 22px 0 10px;
}

legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* HEADER */

.header {
  width: 100%;
  min-height: 86px;
  padding: 16px 6%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(200, 164, 93, 0.22);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  min-width: max-content;
}

.logo-main {
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-accent {
  margin-top: 4px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.navbar a {
  position: relative;
  color: var(--black-soft);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.navbar a:not(.nav-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.navbar a:hover {
  color: var(--gold-dark);
}

.navbar a:hover::after {
  transform: scaleX(1);
}

.nav-btn,
.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.nav-btn {
  background: var(--black);
  color: var(--white) !important;
  border: 1px solid var(--black);
}

.nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black) !important;
}

.phone-btn {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gold);
}

.phone-btn i {
  color: var(--gold-dark);
}

.phone-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 21px;
}

/* REUSABLE LABELS AND BUTTONS */

.hero-label,
.section-label,
.section-badge,
.reservation-hero-simple span,
.reservation-hero-airport span,
.reservation-hero-gare span,
.reservation-hero-business span,
.reservation-hero-road span,
.contact-hero span,
.quick-booking-text span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-dark);
  border: 1px solid rgba(200, 164, 93, 0.65);
  padding: 8px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.btn-red,
.btn-white,
.btn-dark,
.btn-primary,
.airport-btn,
.car-reserve-btn,
.fleet-order-btn,
.cta-main,
.cta-secondary,
.legal-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-red,
.btn-primary,
.airport-btn,
.car-reserve-btn,
.fleet-order-btn,
.cta-main,
.legal-back-btn {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-white,
.btn-dark,
.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-red:hover,
.btn-primary:hover,
.airport-btn:hover,
.car-reserve-btn:hover,
.fleet-order-btn:hover,
.cta-main:hover,
.legal-back-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white:hover,
.btn-dark:hover,
.cta-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 140px 7% 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.58) 46%, rgba(0, 0, 0, 0.18) 100%),
    url("./assets/images/paris-night.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 70% 30%, rgba(200, 164, 93, 0.20), transparent 35%);
}

.hero-content {
  width: min(100%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-text {
  max-width: 760px;
  margin-top: 40px;
  color: var(--white);
}

.hero-text h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* GLOBAL SECTIONS */

.section,
.vehicles-section,
.home-services,
.home-fleet,
.home-tarifs,
.home-faq,
.home-cta,
.fleet-section,
.quick-booking {
  width: 100%;
  padding: 100px 7%;
}

.section > *,
.vehicles-section > *,
.home-services > *,
.home-fleet > *,
.home-tarifs > *,
.home-faq > *,
.fleet-section > *,
.quick-booking > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section h2,
.vehicles-section h2,
.home-services h2,
.home-fleet h2,
.home-tarifs h2,
.home-faq h2,
.home-cta h2,
.fleet-section h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 48px;
}

/* SERVICES */

.home-services {
  background: var(--ivory);
}

.services-grid,
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.home-service-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(200, 164, 93, 0.22);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card {
  padding: 34px 26px;
}

.home-service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.home-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.home-service-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.card-content {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.service-card i,
.home-service-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  font-size: 19px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover i,
.home-service-card:hover i {
  background: var(--gold);
  color: var(--black);
  transform: rotate(-6deg);
}

.service-card h3,
.home-service-card h3,
.card-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card p,
.home-service-card p,
.card-content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-service-card a,
.home-service-card .airport-btn {
  width: 100%;
  margin-top: auto;
}

/* FLEET / VEHICLES */

.home-fleet,
.vehicles-section,
.fleet-section {
  background: var(--white);
}

.home-fleet-grid,
.vehicle-tabs,
.fleet-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 38px;
}

.home-fleet-card,
.vehicle-card,
.fleet-tab {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.home-fleet-card {
  padding: 30px;
  text-align: center;
}

.vehicle-card,
.fleet-tab {
  min-height: 220px;
  padding: 26px 22px;
  text-align: center;
}

.home-fleet-card:hover,
.vehicle-card:hover,
.fleet-tab:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.home-fleet-card.active-car,
.home-fleet-card.featured,
.vehicle-card.active,
.fleet-tab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--gold);
}

.home-fleet-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  transform: scale(1.25);
  margin-bottom: 12px;
}

.vehicle-card img,
.car-thumb,
.fleet-tab img {
  width: 82%;
  max-width: 250px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.home-fleet-card h3,
.vehicle-card h3,
.fleet-tab strong {
  font-size: 30px;
  color: inherit;
}

.home-fleet-card p,
.vehicle-card p,
.fleet-tab span {
  color: var(--muted);
  font-size: 13px;
}

.home-fleet-card strong,
#vehiclePrice,
#fleetPrice,
#fleetRate {
  color: var(--gold-dark);
  font-size: 20px;
  font-weight: 800;
}

.vehicle-card.active p,
.vehicle-card.active h3,
.fleet-tab.active span,
.fleet-tab.active strong {
  color: var(--white);
}

.fleet-tab::after {
  content: "✓";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.fleet-tab.active::after {
  display: grid;
}

.vehicle-details,
.fleet-preview,
.fleet-display {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(200, 164, 93, 0.20);
  border-radius: var(--radius-md);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.vehicle-image,
.fleet-image-box {
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 164, 93, 0.25), transparent 36%),
    linear-gradient(135deg, #0b0b0b, #1d1d1d);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vehicle-image img,
.vehicle-details img,
.fleet-image-box img,
.fleet-display #fleetImage {
  width: 100%;
  max-width: 600px;
  max-height: 500px;
  object-fit: contain;
  transform: scale(1.08);
  margin: 0 auto;
}

.vehicle-info h3,
.fleet-info h3 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin: 12px 0 18px;
}

.vehicle-info p,
.fleet-info p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.fleet-details {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.fleet-details div {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius-sm);
}

.fleet-details strong {
  display: block;
  margin-bottom: 6px;
}

/* TARIFS */

.home-tarifs {
  background: var(--black);
  color: var(--white);
}

.home-tarifs h2 {
  color: var(--white);
}

.tarifs-grid,
.tarif-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tarif-card,
.tarif-list div {
  background: var(--black-soft);
  color: var(--white);
  border: 1px solid rgba(200, 164, 93, 0.25);
  border-radius: var(--radius-sm);
  padding: 34px 28px;
  box-shadow: none;
  text-align: left;
  transition: var(--transition);
}

.tarif-card:hover,
.tarif-list div:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
}

.tarif-card.featured {
  background: var(--gold);
  color: var(--black);
}

.tarif-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}

.tarif-card h3,
.tarif-list h3 {
  font-size: 34px;
  margin-bottom: 10px;
}

.tarif-card p,
.tarif-list p {
  color: rgba(255, 255, 255, 0.68);
}

.tarif-card.featured p {
  color: rgba(0, 0, 0, 0.68);
}

.price,
.tarif-card h3:last-child,
.tarif-list strong {
  color: var(--gold);
  font-size: 36px;
  font-weight: 800;
}

/* FAQ */

.faq,
.home-faq {
  background: var(--ivory);
}

.faq-list,
.faq-box {
  max-width: 900px;
  margin-left: 0;
}

details,
.faq-box details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  padding: 22px 24px;
  box-shadow: none;
}

summary,
.faq-box summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 700;
}

details p,
.faq-box p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* CTA */

.home-cta {
  margin: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.88)),
    url("./assets/images/paris-night.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.home-cta h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.home-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* FORMS */

.booking-card,
.booking-card-index,
.trip-card,
.reservation-card-simple,
.quick-booking-container,
.contact-info-card,
.contact-form-card,
.contact-map-card,
.confirmation-card,
.legal-container {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(200, 164, 93, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.booking-card-index {
  display: none !important;
}

.booking-card {
  padding: 30px;
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: -30px -30px 28px;
}

.tab {
  min-height: 62px;
  border: 0;
  background: var(--ivory);
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
}

.tab.active {
  background: var(--black);
  color: var(--gold);
}

.booking-form {
  padding: 0;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--black-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.input-icon {
  position: relative;
}

.input-icon input,
.phone-input,
select,
.date-time-box input,
.form-group input,
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea,
.quick-form input,
.quick-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0 16px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: var(--transition);
}

.contact-form-card textarea {
  min-height: 140px;
  padding-top: 15px;
  resize: vertical;
}

.input-icon input {
  padding-right: 46px;
}

.input-icon i {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
}

.input-icon input:focus,
.phone-input:focus-within,
select:focus,
.date-time-box input:focus,
.form-group input:focus,
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus,
.quick-form input:focus,
.quick-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.12);
}

.phone-input {
  display: grid;
  grid-template-columns: 92px 1fr;
  overflow: hidden;
  padding: 0;
}

.phone-input span {
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--ivory);
  color: var(--black);
  font-weight: 800;
}

.phone-input input {
  border: 0;
  padding: 0 16px;
  outline: 0;
}

.time-choice,
.date-time-box,
.address-grid,
.small-grid,
.contact-row,
.quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.date-time-box {
  display: none;
}

.date-time-box.show {
  display: grid;
}

.choice-btn {
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.choice-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

.submit-btn,
.calculate-btn,
.quick-btn,
.contact-form-card button {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--black);
  border-radius: 4px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.submit-btn:hover,
.calculate-btn:hover,
.quick-btn:hover,
.contact-form-card button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.form-note,
.reservation-small-note {
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

/* RESERVATION PAGES */

.reservation-page {
  min-height: 100vh;
  padding: 130px 6% 90px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
    url("assets/images/paris-night.jpg") center / cover fixed no-repeat;
}

.reservation-container {
  width: min(100%, 1350px);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(340px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.trip-card,
.booking-card {
  padding: 30px;
}

.booking-card {
  position: sticky;
  top: 110px;
}

.trip-card h1,
.booking-card h2,
.booking-card h3 {
  color: var(--black);
}

.trip-card h1,
.booking-card h2 {
  font-size: 38px;
  margin-bottom: 24px;
}

.booking-card h3 {
  font-size: 27px;
  margin: 24px 0 14px;
}

#map {
  width: 100% !important;
  height: 430px !important;
  margin-top: 22px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.trip-summary {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trip-summary > div {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.trip-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.trip-summary strong {
  color: var(--black);
  font-size: 20px;
}

.vehicle-options {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.vehicle-option {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.vehicle-option input {
  display: none;
}

.vehicle-option strong {
  display: block;
  color: var(--black);
  font-size: 16px;
  margin-bottom: 4px;
}

.vehicle-option span {
  color: var(--muted);
  font-size: 13px;
}

.vehicle-option.active {
  border-color: var(--gold);
  background: rgba(200, 164, 93, 0.10);
}

/* SERVICE HERO PAGES */

.reservation-hero-simple,
.reservation-hero-airport,
.reservation-hero-gare,
.reservation-hero-business,
.reservation-hero-road {
  min-height: 520px;
  padding: 160px 20px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.reservation-hero-simple {
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.72)),
    url("assets/images/paris-night.jpg") center / cover no-repeat;
}

.reservation-hero-airport {
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.72)),
    url("assets/images/airport.png") center 20% / cover no-repeat;
}

.reservation-hero-gare {
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.72)),
    url("assets/images/gare.png") center 20% / cover no-repeat;
}

.reservation-hero-business {
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.72)),
    url("assets/images/business.png") center 20% / cover no-repeat;
}

.reservation-hero-road {
  background:
    linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.72)),
    url("assets/images/road.png") center 20% / cover no-repeat;
}

.reservation-hero-simple h1,
.reservation-hero-airport h1,
.reservation-hero-gare h1,
.reservation-hero-business h1,
.reservation-hero-road h1 {
  font-size: clamp(3.6rem, 7vw, 6rem);
  margin-bottom: 18px;
  color: var(--white);
}

.reservation-hero-simple p,
.reservation-hero-airport p,
.reservation-hero-gare p,
.reservation-hero-business p,
.reservation-hero-road p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.reservation-card-section {
  padding: 50px 7% 100px;
  background: var(--ivory);
}

.reservation-card-simple {
  max-width: 980px;
  margin: 0 auto;
  padding: 45px;
}

.reservation-card-header {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.reservation-card-header h2 {
  font-size: 40px;
  margin-bottom: 6px;
}

.reservation-card-header p {
  color: var(--muted);
}

.reservation-icon {
  min-width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  font-size: 26px;
}

/* QUICK BOOKING */

.quick-booking {
  background: var(--ivory);
}

.quick-booking-container {
  max-width: 1060px;
  padding: 48px;
}

.quick-booking-text {
  text-align: center;
  margin-bottom: 28px;
}

.quick-booking-text h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.quick-booking-text p {
  color: var(--muted);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CONTACT */

.contact-page {
  padding-top: 86px;
  background: var(--ivory);
}

.contact-hero {
  padding: 100px 7% 50px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.contact-hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.2rem);
  margin-bottom: 16px;
}

.contact-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
}

.contact-wrapper {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.contact-info-card,
.contact-form-card,
.contact-map-card {
  padding: 38px;
}

.contact-info-card {
  background: var(--black);
  color: var(--white);
}

.contact-info-card h2,
.contact-form-card h2,
.contact-map-card h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 24px;
}

.contact-mini-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-mini-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
}

.contact-mini-card a,
.contact-mini-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-map-card {
  width: min(calc(100% - 40px), 1180px);
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.contact-map-card span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-map-card p {
  color: var(--muted);
}

.fake-map {
  min-height: 270px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1200&q=80") center / cover no-repeat;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fake-map i {
  color: var(--gold);
  font-size: 48px;
  margin-bottom: 12px;
}

.fake-map p {
  color: var(--white);
  font-weight: 800;
}

.contact-cta {
  margin: 0;
  padding: 100px 7%;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.88)),
    url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=1400&q=80") center / cover no-repeat;
  text-align: center;
}

.contact-cta h2 {
  font-size: clamp(3.2rem, 6vw, 5rem);
  margin: 15px 0;
}

.contact-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* CONFIRMATION */

.confirmation-page {
  min-height: 100vh;
  padding: 150px 7% 80px;
  background: var(--ivory);
  display: grid;
  place-items: center;
}

.confirmation-card {
  max-width: 720px;
  padding: 52px 42px;
  text-align: center;
}

.confirmation-card > i {
  font-size: 62px;
  color: var(--gold-dark);
  margin-bottom: 22px;
}

.confirmation-card h1 {
  font-size: 50px;
  margin-bottom: 16px;
}

.confirmation-card p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* LEGAL */

.legal-page {
  min-height: 100vh;
  padding: 140px 20px 90px;
  background: var(--ivory);
}

.legal-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 52px;
}

.legal-container h1,
.legal-page h1 {
  font-size: 52px;
  margin-bottom: 26px;
}

.legal-container h2,
.legal-block h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 28px;
}

.legal-container p,
.legal-block p {
  color: var(--muted);
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

/* FOOTER */

.footer {
  padding: 64px 7%;
  background: #060606;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(200, 164, 93, 0.25);
}

.footer h3 {
  font-size: 29px;
  margin-bottom: 10px;
}

.footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin: 5px 0;
}

.footer a,
.footer-legal a,
.footer-simple a {
  color: rgba(255, 255, 255, 0.78);
  transition: var(--transition);
}

.footer a:hover,
.footer-legal a:hover,
.footer-simple a:hover {
  color: var(--gold);
}

/* AUTOCOMPLETE */

.suggestions {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 99999;
  overflow: hidden;
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}

.suggestion-item:hover {
  background: var(--ivory);
  color: var(--gold-dark);
}

/* ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .phone-btn {
    display: none;
  }

  .services-grid,
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tarifs-grid,
  .tarif-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .burger {
    display: inline-grid;
    place-items: center;
  }

  .navbar {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    padding: 16px 5% 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    width: 100%;
    padding: 14px 8px;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
    padding: 130px 6% 70px;
  }

  .hero-text h1 {
    font-size: clamp(3.5rem, 11vw, 5.5rem);
  }

  .vehicle-tabs,
  .fleet-tabs,
  .home-fleet-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-details,
  .fleet-preview,
  .fleet-display,
  .reservation-container,
  .contact-wrapper,
  .contact-map-card {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
  }

  .fleet-display {
    display: flex;
    flex-direction: column-reverse;
  }

  .fleet-display #fleetImage {
    transform: none;
  }
}

@media (max-width: 768px) {
  .header {
    min-height: 76px;
    padding: 13px 5%;
  }

  .navbar {
    top: 76px;
  }

  .logo-main {
    font-size: 25px;
  }

  .logo-accent {
    font-size: 9px;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 20px 60px;
    background-position: 62% center;
  }

  .hero-text {
    margin-top: 60px;
  }

  .hero-text h1 {
    font-size: clamp(3.2rem, 14vw, 4.7rem);
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons,
  .cta-buttons,
  .contact-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section,
  .vehicles-section,
  .home-services,
  .home-fleet,
  .home-tarifs,
  .home-faq,
  .home-cta,
  .fleet-section,
  .quick-booking {
    padding: 72px 20px;
  }

  .section h2,
  .vehicles-section h2,
  .home-services h2,
  .home-fleet h2,
  .home-tarifs h2,
  .home-faq h2,
  .home-cta h2,
  .fleet-section h2 {
    font-size: 42px;
    margin-bottom: 34px;
  }

  .services-grid,
  .home-services-grid,
  .tarifs-grid,
  .tarif-list {
    grid-template-columns: 1fr;
  }

  .vehicle-details,
  .fleet-preview,
  .fleet-display,
  .reservation-card-simple,
  .quick-booking-container,
  .contact-info-card,
  .contact-form-card,
  .contact-map-card,
  .confirmation-card,
  .legal-container {
    padding: 26px;
  }

  .vehicle-image,
  .fleet-image-box {
    min-height: 240px;
  }

  .fleet-details,
  .reservation-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .address-grid,
  .small-grid,
  .contact-row,
  .quick-row,
  .trip-summary,
  .time-choice,
  .date-time-box.show {
    grid-template-columns: 1fr;
  }

  .reservation-page {
    padding: 110px 16px 60px;
    background-attachment: scroll;
  }

  .reservation-container {
    margin-top: 25px;
  }

  .reservation-hero-simple,
  .reservation-hero-airport,
  .reservation-hero-gare,
  .reservation-hero-business,
  .reservation-hero-road {
    min-height: 470px;
    padding: 135px 20px 80px;
  }

  .reservation-hero-simple h1,
  .reservation-hero-airport h1,
  .reservation-hero-gare h1,
  .reservation-hero-business h1,
  .reservation-hero-road h1 {
    font-size: 48px;
  }

  .contact-hero {
    padding: 90px 20px 45px;
  }

  .contact-map-card {
    width: calc(100% - 40px);
  }

  .footer {
    flex-direction: column;
    padding: 50px 20px;
  }
}

/* LEGAL */

.legal-page{
    padding:140px 20px 90px;
    background:#f8f8f6;
}

.legal-card{
    max-width:900px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:24px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.legal-badge{
    display:inline-block;
    background:#c8a75d;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
    text-transform:uppercase;
}

.legal-card h1{
    font-size:42px;
    margin-bottom:40px;
    color:#111;
}

.legal-section{
    margin-bottom:35px;
}

.legal-section h2{
    font-size:22px;
    margin-bottom:15px;
    color:#c8a75d;
}

.legal-section p{
    color:#555;
    line-height:1.8;
    margin-bottom:10px;
}

.legal-section strong{
    color:#111;
}

@media(max-width:768px){

.legal-card{
    padding:35px 25px;
}

.legal-card h1{
    font-size:30px;
}

}
