:root {
  --bg-primary: #0a0a0b;
  --bg-surface: #141416;
  --bg-card: #1c1c20;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #fff2b2 50%, #aa820a 100%);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --border-gold: rgba(212, 175, 55, 0.3);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.gold-text { color: var(--gold-primary); }
.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-logo {
  text-decoration: none;
}

.brand-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Hamburger button is hidden by default on desktop */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  border: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

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

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, #1c1c24 0%, #0a0a0b 100%);
  padding: 0 1rem;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.badge {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 3.2rem;
  margin: 1.5rem 0;
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.lang-flags {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.flag-pill {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Services */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin: 1rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.service-icon {
  color: var(--gold-primary);
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Vehicles Section */
.vehicles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.vehicle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 20;
}

.vehicle-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-grow: 1;
}

.vehicle-details h3 {
  font-size: 1.4rem;
  color: #fff;
}

.vehicle-category {
  color: var(--gold-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

/* Photo Collages */
.collage-grid {
  display: grid;
  gap: 8px;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.collage-item {
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  min-height: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.collage-item:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  z-index: 10;
}

/* Mercedes Collage Grid (4 images) */
.mercury-collage {
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 110px);
}

.mercury-collage .collage-item.large {
  grid-row: 1 / 3;
}

.mercury-collage .collage-item.wide {
  grid-column: 2 / 3;
}

/* Toyota Collage Grid (7 images) */
.toyota-collage {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 85px);
}

.toyota-collage .collage-item.large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.toyota-collage .collage-item.wide {
  grid-column: 1 / 3;
}

/* About & Contact */
.about-section, .contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-card, .contact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}

.registration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  color: var(--gold-light);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-item:hover {
  border-color: var(--gold-primary);
}

.contact-item i { color: var(--gold-primary); }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--gold-primary);
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
}

.input-group {
  margin-bottom: 1.2rem;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.input-group input, 
.input-group select, 
.input-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.input-group textarea:focus,
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.btn-full { width: 100%; justify-content: center; }

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Image Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.close-lightbox {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 3001;
  transition: color 0.2s ease;
}

.close-lightbox:hover {
  color: var(--gold-primary);
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE STYLES (≤768px)
   ========================================== */

@media (max-width: 768px) {
  /* 1. Mobile Navigation & Dropdown Menu */
  .nav-container {
    padding: 0.8rem 1rem;
  }

  .brand-logo .logo-text {
    font-size: 1.25rem;
  }

  .navbar .btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  /* 2. Hero Section */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 7rem 1.25rem 4rem 1.25rem;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.3;
    margin: 1rem 0;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .lang-flags {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* 3. Sections & Padding */
  .services-section, 
  .vehicles-section,
  .about-section, 
  .contact-section {
    padding: 3rem 1rem;
  }

  .about-card, 
  .contact-box {
    padding: 1.5rem 1rem;
  }

  .services-grid,
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  /* 4. Mobile Collage Adjustments */
  .mercury-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 100px);
  }

  .toyota-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 80px);
  }

  .toyota-collage .collage-item.large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .toyota-collage .collage-item.wide,
  .toyota-collage .collage-item.normal {
    grid-column: 1 / 3;
  }

  /* 5. Booking Modal & Contact Items Mobile Fixes */
  .modal-content {
    padding: 1.5rem;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* ==========================================
   LANGUAGE SELECTOR — SVG FLAGS
   ========================================== */
.lang-flags {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  margin-top:.25rem;
}
.flag-pill {
  appearance:none;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  background:rgba(20,20,22,.88);
  border:1px solid rgba(255,255,255,.1);
  color:var(--text-secondary);
  padding:.42rem .7rem;
  border-radius:999px;
  font:inherit;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.6px;
  cursor:pointer;
  transition:all .25s ease;
}
.flag-pill:hover,.flag-pill.active {
  color:#fff;
  border-color:var(--gold-primary);
  background:rgba(212,175,55,.1);
  box-shadow:0 0 18px rgba(212,175,55,.12);
}
.flag-icon {
  width:21px;
  height:14px;
  flex:0 0 auto;
  display:block;
  border-radius:2px;
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(255,255,255,.12);
}
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible {
  outline:2px solid var(--gold-primary);
  outline-offset:3px;
}
@media (max-width:768px) {
  .lang-flags{gap:.35rem}
  .flag-pill{padding:.38rem .58rem;font-size:.74rem}
  .flag-icon{width:20px;height:13px}
}


/* ==========================================
   STEP 1 — PREMIUM HERO
   ========================================== */
.hero {
  min-height: 100vh;
  height: 860px;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,5,7,.90) 0%, rgba(5,5,7,.68) 48%, rgba(5,5,7,.82) 100%),
    linear-gradient(180deg, rgba(5,5,7,.28) 0%, rgba(5,5,7,.72) 100%),
    url("../assets/hero-paris.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(212,175,55,.08), transparent 38%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 900px;
  margin: 1.4rem auto 1.2rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.08;
  text-shadow: 0 3px 24px rgba(0,0,0,.5);
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem 1.35rem;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,.86);
  font-size: .82rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  white-space: nowrap;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

.hero .lang-flags {
  margin-top: .75rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 7.5rem 1.1rem 3rem;
    background-position: center center;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    max-width: 340px;
    text-align: left;
    margin-bottom: 1.2rem;
  }

  .trust-item {
    font-size: .76rem;
  }
}


/* ==========================================
   PREMIUM FLEET FEATURE — REFERENCE STYLE
   ========================================== */
.fleet-section {
  max-width: 1240px;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.fleet-section-header {
  margin-bottom: 2.6rem;
}

.section-kicker {
  color: var(--gold-primary);
  font-size: .68rem;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: .7rem;
}

.fleet-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 510px;
  background:
    radial-gradient(circle at 75% 30%, rgba(212,175,55,.08), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}

.fleet-featured-media {
  position: relative;
  padding: 1rem;
  min-height: 510px;
  background: #050506;
  border-right: 1px solid rgba(212,175,55,.12);
}

.fleet-main-photo {
  width: 100%;
  height: 410px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
}

.fleet-main-photo::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(0,0,0,.35));
  pointer-events:none;
}

.fleet-featured-badge {
  position:absolute;
  top:1.5rem;
  left:1.5rem;
  z-index:5;
  padding:.45rem .8rem;
  background:rgba(5,5,6,.85);
  border:1px solid rgba(212,175,55,.45);
  color:var(--gold-light);
  font-size:.65rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
}

.fleet-photo-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.6rem;
  margin-top:.6rem;
}

.fleet-thumb {
  height:68px;
  background-size:cover;
  background-position:center;
  border:1px solid rgba(255,255,255,.08);
  border-radius:2px;
  cursor:pointer;
}

.fleet-featured-content {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:3.2rem 3rem;
}

.fleet-eyebrow {
  color:var(--gold-primary);
  font-size:.68rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2.2px;
  margin-bottom:.7rem;
}

.fleet-featured-content h3,
.fleet-secondary-content h3 {
  margin:0;
  color:#fff;
  font-family:var(--font-serif);
  font-size:clamp(2rem,3.2vw,3rem);
  font-weight:500;
  line-height:1.05;
}

.fleet-lead {
  color:var(--text-secondary);
  line-height:1.75;
  max-width:460px;
  margin:1rem 0 1.8rem;
}

.fleet-specs {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem .8rem;
  padding:1.3rem 0;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.fleet-spec {
  display:flex;
  gap:.7rem;
  align-items:flex-start;
}

.fleet-spec i {
  width:17px;
  height:17px;
  color:var(--gold-primary);
  flex:0 0 auto;
  margin-top:.15rem;
}

.fleet-spec strong,
.fleet-spec span {
  display:block;
}

.fleet-spec strong {
  color:#eee;
  font-size:.76rem;
  font-weight:600;
  line-height:1.3;
}

.fleet-spec span {
  color:#777;
  font-size:.67rem;
  margin-top:.22rem;
  line-height:1.35;
}

.fleet-actions {
  display:flex;
  align-items:center;
  gap:1rem;
  margin-top:1.8rem;
  flex-wrap:wrap;
}

.fleet-actions .btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.7rem;
}

.fleet-actions .btn svg {
  width:16px;
  height:16px;
}

.fleet-note {
  color:#777;
  font-size:.68rem;
  max-width:210px;
  line-height:1.45;
}

.fleet-secondary {
  display:grid;
  grid-template-columns:260px 1fr;
  margin-top:1.2rem;
  background:rgba(255,255,255,.018);
  border:1px solid rgba(255,255,255,.08);
  min-height:190px;
}

.fleet-secondary-media {
  min-height:190px;
  background-size:cover;
  background-position:center;
  border-right:1px solid rgba(255,255,255,.08);
  cursor:pointer;
}

.fleet-secondary-content {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:2rem 2.4rem;
}

.fleet-secondary-content h3 {
  font-size:1.7rem;
}

.fleet-secondary-content p {
  color:#777;
  max-width:560px;
  line-height:1.6;
  font-size:.85rem;
  margin:.65rem 0 1rem;
}

.fleet-link-btn {
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  padding:0;
  border:0;
  background:none;
  color:var(--gold-primary);
  font:inherit;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  cursor:pointer;
}

.fleet-link-btn svg {
  width:14px;
  height:14px;
  transition:transform .2s ease;
}

.fleet-link-btn:hover svg {
  transform:translate(2px,-2px);
}

@media (max-width: 900px) {
  .fleet-featured {
    grid-template-columns:1fr;
  }
  .fleet-featured-media {
    min-height:auto;
    border-right:0;
    border-bottom:1px solid rgba(212,175,55,.12);
  }
  .fleet-featured-content {
    padding:2.5rem 2rem;
  }
}

@media (max-width: 620px) {
  .fleet-section {
    padding-left:1rem;
    padding-right:1rem;
  }
  .fleet-main-photo {
    height:300px;
  }
  .fleet-featured-media {
    padding:.7rem;
  }
  .fleet-featured-badge {
    top:1.2rem;
    left:1.2rem;
  }
  .fleet-specs {
    grid-template-columns:1fr;
  }
  .fleet-secondary {
    grid-template-columns:1fr;
  }
  .fleet-secondary-media {
    min-height:190px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
}


/* ==========================================
   BROWSE ALL VEHICLES
   ========================================== */
.fleet-section-header {
  position: relative;
}

.fleet-browse-btn {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 2px;
  font: inherit;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.fleet-browse-btn:hover {
  color:#fff;
  border-color:var(--gold-primary);
  background:rgba(212,175,55,.08);
}
.fleet-browse-btn svg {
  width:15px;
  height:15px;
}

.fleet-browser {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.fleet-browser.active {
  visibility: visible;
  opacity: 1;
}
.fleet-browser-backdrop {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.84);
  backdrop-filter:blur(8px);
}
.fleet-browser-dialog {
  position:relative;
  z-index:1;
  width:min(1050px,100%);
  max-height:90vh;
  overflow:auto;
  padding:3rem;
  background:
    radial-gradient(circle at 50% 0,rgba(212,175,55,.07),transparent 35%),
    #09090a;
  border:1px solid rgba(212,175,55,.22);
  box-shadow:0 35px 100px rgba(0,0,0,.65);
}
.fleet-browser-close {
  position:absolute;
  top:1rem;
  right:1rem;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#aaa;
  cursor:pointer;
}
.fleet-browser-close:hover {
  color:#fff;
  border-color:var(--gold-primary);
}
.fleet-browser-close svg {
  width:18px;
  height:18px;
}
.fleet-browser-header {
  text-align:center;
  max-width:650px;
  margin:0 auto 2rem;
}
.fleet-browser-header h2 {
  margin:.2rem 0 .7rem;
}
.fleet-browser-header p {
  color:#777;
  line-height:1.6;
}
.fleet-browser-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.fleet-browser-card {
  background:rgba(255,255,255,.018);
  border:1px solid rgba(255,255,255,.08);
}
.fleet-browser-image {
  height:260px;
  background-size:cover;
  background-position:center;
  cursor:pointer;
}
.fleet-browser-card-content {
  padding:1.5rem;
}
.fleet-browser-card-content h3 {
  margin:0;
  font-family:var(--font-serif);
  color:#fff;
  font-size:1.7rem;
  font-weight:500;
}
.fleet-browser-card-content p {
  color:#777;
  line-height:1.6;
  font-size:.8rem;
  min-height:54px;
  margin:.7rem 0 1.2rem;
}
.fleet-browser-card-content .btn {
  display:inline-flex;
  align-items:center;
  gap:.6rem;
}
.fleet-browser-card-content .btn svg {
  width:15px;
  height:15px;
}
body.fleet-browser-open {
  overflow:hidden;
}

@media (max-width: 700px) {
  .fleet-browser {
    padding:.7rem;
  }
  .fleet-browser-dialog {
    padding:2.2rem 1rem 1.2rem;
    max-height:94vh;
  }
  .fleet-browser-grid {
    grid-template-columns:1fr;
  }
  .fleet-browser-image {
    height:220px;
  }
}

/* Dedicated Vehicles + Gallery pages */
.inner-page{background:radial-gradient(circle at 50% 0,rgba(212,175,55,.035),transparent 28%),var(--bg-primary)}
.inner-hero{min-height:62vh;position:relative;display:flex;align-items:flex-end;padding:9rem 7% 4.5rem;overflow:hidden;background-position:center;background-size:cover}
.fleet-page-hero{background-image:url("../assets/m1.jpg")}
.gallery-page-hero{background-image:url("../assets/m2.jpg")}
.inner-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,5,6,.9),rgba(5,5,6,.58) 48%,rgba(5,5,6,.35)),linear-gradient(0deg,rgba(5,5,6,.88),transparent 55%)}
.inner-hero-content{position:relative;z-index:2;max-width:820px}
.inner-hero-content h1{margin:.25rem 0 1rem;color:#fff;font-family:var(--font-serif);font-size:clamp(3rem,7vw,6.5rem);font-weight:500;line-height:.98}
.inner-hero-content p{max-width:650px;color:#c2c2c2;line-height:1.8;font-size:.95rem}
.inner-hero-content .lang-flags{justify-content:flex-start;margin-top:1.5rem}
.dedicated-page{width:min(1240px,92%);margin:0 auto;padding:5.5rem 0 6rem}
.fleet-page-intro,.gallery-intro{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:end;margin-bottom:3rem}
.fleet-page-intro h2,.gallery-intro h2{margin:.25rem 0 0;font-family:var(--font-serif);color:#fff;font-size:clamp(2rem,4vw,3.7rem);font-weight:500;line-height:1.05}
.fleet-page-intro>p,.gallery-intro>p{color:#777;line-height:1.8;max-width:560px;justify-self:end}
.vehicle-detail-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:1.2rem}
.vehicle-detail-card{background:rgba(255,255,255,.018);border:1px solid rgba(255,255,255,.08);overflow:hidden}
.vehicle-detail-featured{grid-column:1/-1;display:grid;grid-template-columns:1.15fr .85fr;min-height:540px;border-color:rgba(212,175,55,.2);background:radial-gradient(circle at 80% 20%,rgba(212,175,55,.07),transparent 35%),rgba(255,255,255,.018)}
.vehicle-detail-image{min-height:330px;background-size:cover;background-position:center;cursor:pointer}
.vehicle-detail-featured .vehicle-detail-image{min-height:540px}
.vehicle-detail-body{padding:2.4rem}
.vehicle-detail-body h2{color:#fff;font-family:var(--font-serif);font-size:clamp(1.8rem,3vw,2.8rem);font-weight:500;margin:.25rem 0 1rem}
.vehicle-detail-body p{color:#777;line-height:1.75;max-width:560px}
.detail-benefits{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin:1.7rem 0 2rem;padding:1.3rem 0;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.detail-benefits div{display:flex;align-items:center;gap:.65rem;color:#c9c9c9;font-size:.76rem}
.detail-benefits svg{width:16px;height:16px;color:var(--gold-primary)}
.vehicle-detail-wide{grid-column:1/-1;display:grid;grid-template-columns:340px 1fr}
.dedicated-cta{margin-top:4rem;padding:2.5rem 2.8rem;display:flex;justify-content:space-between;align-items:center;gap:2rem;border-top:1px solid rgba(212,175,55,.25);border-bottom:1px solid rgba(212,175,55,.12);background:linear-gradient(90deg,rgba(212,175,55,.035),transparent)}
.dedicated-cta h2{margin:.25rem 0 .5rem;color:#fff;font-family:var(--font-serif);font-size:2rem;font-weight:500}
.dedicated-cta p{margin:0;color:#777}
.recent-gallery-grid{display:grid;grid-template-columns:1.35fr .65fr .65fr;grid-auto-rows:260px;gap:1rem}
.gallery-photo{appearance:none;border:1px solid rgba(255,255,255,.08);padding:0;min-width:0;width:100%;height:100%;background-size:cover;background-position:center;cursor:pointer;position:relative;transition:transform .35s ease,border-color .35s ease}
.gallery-photo:hover{transform:translateY(-3px);border-color:rgba(212,175,55,.45)}
.gallery-photo-large{grid-row:span 2}.gallery-photo-wide{grid-column:2/-1}
@media(max-width:900px){.inner-hero{min-height:55vh;padding:8rem 6% 3.5rem}.fleet-page-intro,.gallery-intro{grid-template-columns:1fr;gap:1rem}.fleet-page-intro>p,.gallery-intro>p{justify-self:start}.vehicle-detail-featured,.vehicle-detail-wide{grid-template-columns:1fr}.vehicle-detail-featured .vehicle-detail-image{min-height:390px}.recent-gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:220px}.gallery-photo-wide{grid-column:1/-1}}
@media(max-width:620px){.inner-hero{min-height:52vh;padding:7.5rem 1rem 2.8rem}.inner-hero-content h1{font-size:3.1rem}.dedicated-page{width:calc(100% - 2rem);padding-top:3.5rem}.vehicle-detail-body{padding:1.5rem}.vehicle-detail-featured .vehicle-detail-image{min-height:300px}.detail-benefits{grid-template-columns:1fr}.dedicated-cta{padding:2rem 1.3rem;flex-direction:column;align-items:flex-start}.recent-gallery-grid{grid-template-columns:1fr;grid-auto-rows:240px}.gallery-photo-large,.gallery-photo-wide{grid-row:auto;grid-column:auto}}

/* ==========================================
   FULL FLEET + FULL GALLERY
   ========================================== */
.vehicle-showcase {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  min-height:570px;
  margin-bottom:5.5rem;
  background:
    radial-gradient(circle at 78% 20%,rgba(212,175,55,.07),transparent 32%),
    rgba(255,255,255,.018);
  border:1px solid rgba(212,175,55,.2);
  overflow:hidden;
}
.showcase-media {
  padding:1rem;
  background:#050506;
  border-right:1px solid rgba(212,175,55,.12);
}
.showcase-main-photo {
  height:455px;
  background-size:cover;
  background-position:center;
  cursor:pointer;
}
.showcase-mini-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.6rem;
  margin-top:.6rem;
}
.showcase-mini {
  height:74px;
  background-size:cover;
  background-position:center;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.08);
}
.showcase-copy {
  padding:3.4rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.showcase-copy h2 {
  color:#fff;
  font-family:var(--font-serif);
  font-size:clamp(2.2rem,4vw,3.6rem);
  font-weight:500;
  line-height:1;
  margin:.2rem 0 1rem;
}
.showcase-copy > p {
  color:#777;
  line-height:1.8;
  max-width:470px;
}
.vehicle-showcase-toyota {
  border-color:rgba(255,255,255,.1);
}
.vehicle-gallery-block {
  margin:5.5rem 0;
}
.vehicle-gallery-heading {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:end;
  margin-bottom:1.6rem;
}
.vehicle-gallery-heading h2 {
  color:#fff;
  font-family:var(--font-serif);
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:500;
  margin:.2rem 0 0;
}
.vehicle-gallery-heading p {
  color:#777;
  line-height:1.7;
  max-width:520px;
  justify-self:end;
}
.fleet-gallery-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:190px;
  gap:.8rem;
}
.fleet-gallery-tile {
  width:100%;
  height:100%;
  min-height:190px;
  padding:0;
  border:1px solid rgba(255,255,255,.08);
  background-size:cover;
  background-position:center;
  cursor:pointer;
  position:relative;
  transition:transform .3s ease,border-color .3s ease;
}
.fleet-gallery-tile:hover {
  transform:translateY(-3px);
  border-color:rgba(212,175,55,.45);
}
.fleet-gallery-featured {
  grid-column:span 2;
  grid-row:span 2;
  min-height:390px;
}
.toyota-grid .fleet-gallery-featured {
  grid-column:span 2;
}
.gallery-filter-bar {
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  margin-bottom:1.2rem;
}
.gallery-filter {
  padding:.65rem 1rem;
  border:1px solid rgba(255,255,255,.1);
  background:transparent;
  color:#888;
  font:inherit;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.2s ease;
}
.gallery-filter:hover,
.gallery-filter.active {
  color:var(--gold-light);
  border-color:rgba(212,175,55,.45);
  background:rgba(212,175,55,.06);
}
.full-gallery-grid {
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:250px;
}
.full-gallery-grid .gallery-photo-large {
  grid-column:span 2;
  grid-row:span 2;
}
.full-gallery-grid .gallery-photo {
  min-height:250px;
}
@media (max-width: 950px) {
  .vehicle-showcase {
    grid-template-columns:1fr;
  }
  .showcase-media {
    border-right:0;
    border-bottom:1px solid rgba(212,175,55,.12);
  }
  .showcase-copy {
    padding:2.5rem 2rem;
  }
  .vehicle-gallery-heading {
    grid-template-columns:1fr;
  }
  .vehicle-gallery-heading p {
    justify-self:start;
  }
  .fleet-gallery-grid,
  .full-gallery-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .fleet-gallery-featured,
  .full-gallery-grid .gallery-photo-large {
    grid-column:span 2;
    grid-row:span 2;
  }
}
@media (max-width: 620px) {
  .showcase-main-photo {
    height:300px;
  }
  .showcase-copy {
    padding:2rem 1.3rem;
  }
  .vehicle-gallery-block {
    margin:4rem 0;
  }
  .fleet-gallery-grid,
  .full-gallery-grid {
    grid-template-columns:1fr;
    grid-auto-rows:240px;
  }
  .fleet-gallery-tile,
  .full-gallery-grid .gallery-photo,
  .fleet-gallery-featured,
  .full-gallery-grid .gallery-photo-large {
    grid-column:auto;
    grid-row:auto;
    min-height:240px;
  }
}

/* ==========================================
   DEDICATED SERVICES PAGE
   ========================================== */
.services-page-hero {
  background-image:
    linear-gradient(90deg, rgba(5,5,6,.4), rgba(5,5,6,.15)),
    url("../assets/hero-paris.jpeg");
}
.services-page-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  align-items:end;
  margin-bottom:3rem;
}
.services-page-intro h2 {
  margin:.25rem 0 0;
  color:#fff;
  font-family:var(--font-serif);
  font-size:clamp(2.4rem,5vw,4.5rem);
  font-weight:500;
  line-height:1;
}
.services-page-intro > p {
  color:#777;
  line-height:1.9;
  max-width:600px;
  justify-self:end;
}
.service-detail-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
}
.service-detail-card {
  position:relative;
  min-height:330px;
  padding:2rem;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at 100% 0,rgba(212,175,55,.06),transparent 40%),
    rgba(255,255,255,.018);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}
.service-detail-card::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:2px;
  height:0;
  background:var(--gold-primary);
  transition:height .35s ease;
}
.service-detail-card:hover {
  transform:translateY(-4px);
  border-color:rgba(212,175,55,.25);
}
.service-detail-card:hover::before {
  height:100%;
}
.service-detail-icon {
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(212,175,55,.25);
  color:var(--gold-primary);
}
.service-detail-icon svg {
  width:20px;
  height:20px;
}
.service-number {
  margin-top:1.6rem;
  color:rgba(212,175,55,.55);
  font-size:.65rem;
  letter-spacing:2px;
  font-weight:700;
}
.service-detail-copy h2 {
  margin:.4rem 0 .8rem;
  color:#fff;
  font-family:var(--font-serif);
  font-size:1.55rem;
  font-weight:500;
  line-height:1.15;
}
.service-detail-copy p {
  color:#777;
  line-height:1.7;
  font-size:.8rem;
  max-width:390px;
}
.service-book-link {
  margin-top:1.3rem;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  width:max-content;
  padding:0;
  border:0;
  background:none;
  color:var(--gold-light);
  font:inherit;
  font-size:.68rem;
  letter-spacing:1px;
  font-weight:700;
  text-transform:uppercase;
  cursor:pointer;
}
.service-book-link svg {
  width:14px;
  height:14px;
}
.europe-feature {
  margin:5.5rem 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:540px;
  border:1px solid rgba(212,175,55,.2);
  background:
    radial-gradient(circle at 80% 20%,rgba(212,175,55,.07),transparent 35%),
    rgba(255,255,255,.018);
  overflow:hidden;
}
.europe-feature-media {
  position:relative;
  min-height:540px;
  background:#070708;
}
.europe-image {
  position:absolute;
  background-size:cover;
  background-position:center;
}
.europe-image-main {
  inset:0 17% 0 0;
  background-image:url("../assets/hero-paris.jpeg");
}
.europe-image-small {
  right:0;
  bottom:2rem;
  width:35%;
  height:42%;
  background-image:url("../assets/n3.jpeg");
  border:8px solid #070708;
}
.europe-feature-copy {
  padding:4rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.europe-feature-copy h2,
.guide-feature-copy h2 {
  margin:.3rem 0 1rem;
  color:#fff;
  font-family:var(--font-serif);
  font-size:clamp(2.2rem,4vw,3.6rem);
  font-weight:500;
  line-height:1.02;
}
.europe-feature-copy > p,
.guide-feature-copy > p {
  color:#777;
  line-height:1.8;
  max-width:560px;
}
.europe-points {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.8rem;
  margin:1.5rem 0 2rem;
}
.europe-points div {
  display:flex;
  align-items:center;
  gap:.6rem;
  color:#c9c9c9;
  font-size:.72rem;
}
.europe-points svg {
  width:16px;
  height:16px;
  color:var(--gold-primary);
}
.guide-feature {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  min-height:470px;
  margin:5.5rem 0;
  border-top:1px solid rgba(212,175,55,.18);
  border-bottom:1px solid rgba(212,175,55,.12);
}
.guide-feature-copy {
  padding:4rem 4rem 4rem 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.guide-feature-media {
  min-height:470px;
  background:
    linear-gradient(90deg,#0a0a0b 0%,transparent 20%),
    url("../assets/n1.jpeg") center/cover;
}
.guide-tags {
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:1.5rem;
}
.guide-tags span {
  padding:.55rem .8rem;
  border:1px solid rgba(255,255,255,.1);
  color:#999;
  font-size:.65rem;
  letter-spacing:1px;
  text-transform:uppercase;
}
@media(max-width:950px) {
  .services-page-intro {
    grid-template-columns:1fr;
    gap:1rem;
  }
  .services-page-intro > p {
    justify-self:start;
  }
  .service-detail-grid {
    grid-template-columns:1fr 1fr;
  }
  .europe-feature,
  .guide-feature {
    grid-template-columns:1fr;
  }
  .europe-feature-media {
    min-height:390px;
  }
  .guide-feature-copy {
    padding:3rem 0;
  }
  .guide-feature-media {
    min-height:390px;
    order:-1;
  }
}
@media(max-width:620px) {
  .service-detail-grid {
    grid-template-columns:1fr;
  }
  .service-detail-card {
    min-height:290px;
  }
  .europe-feature-copy,
  .guide-feature-copy {
    padding:2.2rem 1.3rem;
  }
  .europe-feature-media,
  .guide-feature-media {
    min-height:300px;
  }
  .europe-image-small {
    bottom:1rem;
    border-width:5px;
  }
  .europe-points {
    grid-template-columns:1fr;
  }
}

/* Russian mobile typography fixes */
@media (max-width: 620px) {
  html[lang="ru"] .services-section h2,
  html[lang="ru"] .section-title,
  html[lang="ru"] .service-card h3,
  html[lang="ru"] .service-detail-copy h2 {
    line-height: 1.12;
  }

  html[lang="ru"] .services-section h2,
  html[lang="ru"] .section-title {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  html[lang="ru"] .service-card h3 {
    font-size: 1.08rem;
    line-height: 1.22;
  }

  html[lang="ru"] .service-card p {
    font-size: .82rem;
    line-height: 1.55;
  }
}

/* Prevent translated headings from colliding with neighboring content on small screens */
@media (max-width: 420px) {
  html[lang="ru"] .service-card h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  html[lang="ru"] .service-card p {
    font-size: .78rem;
    line-height: 1.5;
  }
}
