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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Archivo', sans-serif;
  background: #0a0a0b;
}

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

a:hover {
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #0a0a0b;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.55) 0%, rgba(8,8,10,0.15) 30%, rgba(8,8,10,0.25) 55%, rgba(8,8,10,0.92) 100%);
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 40px;
}

.logo {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #8a7322 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  text-shadow: 0 1px 0 #999, 0 2px 0 #888, 0 3px 0 #777, 0 4px 0 #666, 0 5px 0 #555, 0 6px 10px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  transition: filter 0.3s ease, text-shadow 0.3s ease;
}

.logo:hover {
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.7)) drop-shadow(0 0 24px rgba(212, 175, 55, 0.4));
  text-shadow: 0 1px 0 #999, 0 2px 0 #888, 0 3px 0 #777, 0 4px 0 #666, 0 5px 0 #555, 0 6px 12px rgba(0, 0, 0, 0.9), 0 0 16px rgba(255, 255, 255, 0.35);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav { padding: 20px 24px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,11,0.97);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a.active { border-bottom-color: #fff; }
  .browse { display: none; }
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}

.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
}

.logo {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.browse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FAF9F5;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 10px;
}

.browse span {
  font-size: 15px;
}

.browse:hover {
  background: #e9e9ec;
}

.hero-copy {
  position: absolute;
  left: 56px;
  bottom: 56px;
  z-index: 3;
  max-width: 620px;
}

.hero-copy h2 {
  color: #fff;
  font-weight: 600;
  font-size: clamp(38px, 5.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 480px;
  margin-top: 18px;
}

.discover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 10px;
}

.discover span {
  font-size: 15px;
}

.discover:hover {
  background: #fff;
  color: #0a0a0b;
  border-color: #fff;
}

/* ---------- Brand ticker ---------- */
.brands {
  position: relative;
  background: #0a0a0b;
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.brands-marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 38s linear infinite;
  will-change: transform;
}

.brands-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 80px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.brand-logo {
  height: 40px;
  width: auto;
  max-height: 45px;
  min-height: 35px;
  display: block;
  opacity: 0.92;
  filter: brightness(0) invert(1) drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.8));
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.brand-item:hover .brand-logo {
  transform: scale(1.12);
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0px 0px 12px rgba(255, 255, 255, 1));
}

/* Local white-on-transparent vector logos: keep full detail instead of flattening */
.brand-logo--light {
  opacity: 0.95;
  filter: drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.35));
}

.brand-item:hover .brand-logo--light {
  opacity: 1;
  filter: drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.6));
}

/* ---------- Fleet ---------- */
.fleet {
  padding: 90px 56px 110px;
  background: #0a0a0b;
  color: #fff;
}

.fleet-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 55%, #b8b8bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fleet-sub {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 56px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ---------- Car card ---------- */
.car-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.car-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}

.car-card--off {
  opacity: 0.62;
}

.car-card--off:hover {
  transform: none;
  border-color: rgba(255,255,255,0.12);
}

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(10,10,11,0.82);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.reserve-btn:disabled {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  cursor: not-allowed;
  letter-spacing: 0.08em;
}

.reserve-btn:disabled:hover {
  transform: none;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

.car-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 50% 35%, #f7f7fa 0%, #eef0f3 55%, #e3e6ea 100%);
}

.car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.4s ease;
}

.car-photo img.is-ready {
  opacity: 1;
}

.car-card:hover .car-photo img.is-ready {
  transform: scale(1.04);
}

.car-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.car-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.car-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.car-price {
  text-align: right;
  flex-shrink: 0;
}

.car-price .price {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}

.car-price .from {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}

.car-price .unit {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 9px 11px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.spec svg {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  background: #16a34a;
  color: #fff;
  border: 1px solid #16a34a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.reserve-btn:hover {
  background: #15803d;
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Reservation modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #141416;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #fff;
}

.modal-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.modal-car {
  color: #d0d0d6;
  font-size: 15px;
  margin-bottom: 22px;
}

.modal form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.modal input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  padding: 11px 12px;
  color: #fff;
  font-size: 14px;
  font-family: 'Archivo', sans-serif;
}

.modal input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45);
}

.modal input::placeholder {
  color: rgba(255,255,255,0.4);
}

.modal input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
}

.modal input[type="time"]::-webkit-datetime-edit {
  color: #fff;
}

.modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-submit {
  margin-top: 6px;
  background: #16a34a;
  color: #fff;
  border: 1px solid #16a34a;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  transition: background 0.25s ease, color 0.25s ease;
}

.modal-submit:hover {
  background: transparent;
  color: #fff;
}

body.modal-locked {
  overflow: hidden;
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.15) inset;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: whatsapp-pulse 2.6s ease-out infinite;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  background: #1fb457;
  transform: scale(1.06);
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

.whatsapp-float:active {
  transform: scale(0.97);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float .whatsapp-icon {
    width: 30px;
    height: 30px;
  }
  .whatsapp-text {
    font-size: 14px;
  }
}

/* ---------- About / Contact anchors ---------- */
.about, .contact {
  background: #0a0a0b;
  color: #fff;
}

.about-card, .contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}

.contact-card {
  padding: 40px 24px 100px;
}

.about-card h3, .contact-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.about-card p, .contact-card p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
}

/* ---------- Services ---------- */
.services {
  background: #0a0a0b;
  color: #fff;
  padding: 0 56px 110px;
}

.services-card {
  position: relative;
  padding: 60px 32px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(1200px 360px at 50% -10%, rgba(216,196,122,0.12), transparent 70%),
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  overflow: hidden;
}

.services-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #D4AF37;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.4);
  filter: drop-shadow(0 0 18px rgba(212,175,55,0.45));
}

.services-icon svg {
  width: 40px;
  height: 40px;
}

.services-title {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 55%, #b8b8bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-sub {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 34px;
}

.airports {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.airport-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  min-height: 200px;
  padding: 22px 20px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.airport-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.15) 0%, rgba(8,8,10,0.25) 40%, rgba(8,8,10,0.88) 100%);
  transition: background 0.3s ease;
}

.airport-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216,196,122,0.55);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(216,196,122,0.15), 0 0 30px rgba(216,196,122,0.15);
}

.airport-card:hover::before {
  background: linear-gradient(180deg, rgba(8,8,10,0.1) 0%, rgba(8,8,10,0.2) 40%, rgba(8,8,10,0.82) 100%);
}

.airport-name,
.airport-code {
  position: relative;
  z-index: 1;
}

.airport-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.airport-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 54px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #0a0a0b;
  background: linear-gradient(140deg, #e6d594 0%, #d8c47a 50%, #c3ab5f 100%);
  border: 1px solid rgba(216,196,122,0.6);
}

@media (max-width: 720px) {
  .services {
    padding: 0 20px 90px;
  }
  .services-card {
    padding: 44px 22px;
  }
  .airports {
    grid-template-columns: 1fr;
  }
}

/* ---------- Reviews ---------- */
.reviews {
  position: relative;
  background:
    linear-gradient(180deg, #0a0a0b 0%, rgba(10,10,11,0.55) 20%, rgba(10,10,11,0.78) 55%, #0a0a0b 100%),
    url('https://thumb.wikimedia.org/wikipedia/commons/thumb/d/df/Range_Rover_Evoque_%28L551%29_1X7A7459.jpg/1280px-Range_Rover_Evoque_%28L551%29_1X7A7459.jpg') center/cover no-repeat fixed;
  color: #fff;
  padding: 90px 56px 110px;
}

.reviews-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 55%, #b8b8bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-sub {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #ffd24a;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-text {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ---------- Map ---------- */
.map-section {
  background: #0a0a0b;
  color: #fff;
  padding: 0 56px 110px;
}

.map-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 55%, #b8b8bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-sub {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 40px;
}

.map-embed {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.2) contrast(1.02);
}

.map-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.map-open span {
  transition: transform 0.25s ease;
}

.map-open:hover {
  background: transparent;
  color: #fff;
}

.map-open:hover span {
  transform: translateX(4px);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: url('https://upload.wikimedia.org/wikipedia/commons/c/c5/Moscow%2C_Cadillac_Lyriq_600E4_dark-grey%2C_Sept_2025_02.jpg') center/cover no-repeat;
  color: #e9e9ec;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,0.15) 0%, rgba(10,10,11,0.82) 45%, #0a0a0b 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 80px 56px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.footer-phone {
  font-size: 24px;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: 0.01em;
}

.footer-phone a {
  color: #fff !important;
}

.footer-phone a:hover {
  color: #fff;
  text-shadow: 0 0 14px rgba(255,255,255,0.5);
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #0a0a0b;
  border-color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.badge-247 {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 26px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: rgba(255,255,255,0.55);
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 60px 24px 40px;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 40px;
  }
  .fleet {
    padding: 70px 20px 90px;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .reviews {
    padding: 70px 20px 90px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .map-section {
    padding: 0 20px 90px;
  }
  .map-embed {
    height: 340px;
  }
}

/* ---------- Mobile / small-screen polish (desktop unaffected) ---------- */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
    gap: 16px;
  }
  .logo {
    font-size: 20px;
  }
  .nav-right {
    gap: 12px;
  }
  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 32px;
  }
  .fleet {
    padding: 64px 16px 84px;
  }
  .car-body {
    padding: 16px 16px 18px;
  }
  .reserve-btn,
  .modal-submit {
    min-height: 48px;
  }
  .services-card {
    padding: 40px 18px;
  }
  .airport-card {
    min-height: 168px;
  }
  .modal {
    padding: 16px;
  }
  .modal-card {
    padding: 26px 20px;
    border-radius: 16px;
  }
}

@media (max-width: 520px) {
  .nav {
    padding: 14px 16px;
    gap: 12px;
  }
  .logo {
    font-size: 18px;
    letter-spacing: 0.01em;
  }
  .hamburger {
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  .modal-row {
    grid-template-columns: 1fr;
  }
  .modal-card {
    padding: 24px 18px;
  }
}