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

body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
}

html:not(.i18n-ready) body {
  opacity: 0;
}

html.i18n-ready body {
  opacity: 1;
  transition: opacity 0.18s ease;
}

/* HEADER */
.header {
  position: absolute;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
}

.logo {
  position: relative;
  display: inline-block;
  color: #d4af37;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(212,175,55,0.18);
  transition: letter-spacing 0.35s ease, filter 0.35s ease;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .logo {
    background-image: linear-gradient(
      118deg,
      #7d5f14 0%,
      #c79e2f 18%,
      #fff0b0 36%,
      #d4af37 52%,
      #8f6a1a 72%,
      #f5dc83 86%,
      #b98f27 100%
    );
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: logoShimmer 7.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.2));
  }
}

.logo:hover {
  letter-spacing: 2.4px;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.3));
}

.nav {
  display: flex;
  gap: 40px;
  position: relative;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav a:hover {
  color: #d4af37;
}

.header-burger-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(15, 15, 18, 0.82), rgba(8, 8, 10, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.24);
  color: #f3df9b;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header-burger-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 38px rgba(0, 0, 0, 0.3);
}

.header-burger-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.32s ease, opacity 0.24s ease, width 0.24s ease;
}

.header-mobile-panel {
  display: none;
}

.header-mobile-panel-inner {
  display: none;
}

.nav-cars-trigger {
  position: relative;
}

.nav-cars-trigger.is-open {
  color: #d4af37;
}

.nav-cars-dropdown {
  --dropdown-width: min(1040px, calc(100vw - 140px));
  position: absolute;
  top: calc(100% + 14px);
  left: var(--cars-dropdown-left, 50%);
  transform: translateX(-50%) translateY(10px);
  width: var(--dropdown-width);
  max-height: min(64vh, 620px);
  overflow-y: auto;
  padding: 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.62);
  background:
    radial-gradient(circle at 17% 14%, rgba(212,175,55,0.09), transparent 30%),
    linear-gradient(165deg, rgba(7,9,14,0.97), rgba(3,5,9,0.98));
  box-shadow: 0 22px 52px rgba(0,0,0,0.46);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 60;
}

.nav-cars-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-cars-dropdown-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.88);
  margin-bottom: 10px;
  padding-left: 4px;
}

.nav-cars-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.nav-cars-brand {
  min-height: 86px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  color: rgba(245,241,232,0.94);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.nav-cars-brand img {
  width: 66px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.35));
  flex-shrink: 0;
}

.nav-cars-brand span {
  font-size: 13px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: inherit;
}

.nav-cars-brand:hover {
  border-color: rgba(212,175,55,0.62);
  background: linear-gradient(180deg, rgba(212,175,55,0.18), rgba(212,175,55,0.08));
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .nav-cars-dropdown {
    display: none !important;
  }
}

/* LANG */
.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(212,175,55,0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: #f5f1e8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 14px;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 28px rgba(0,0,0,0.18);
  transition: 0.35s ease;
}

.lang-btn:hover {
  border-color: rgba(212,175,55,0.55);
  color: #fff7df;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 36px rgba(0,0,0,0.28);
}

.lang-btn.active {
  border-color: rgba(212,175,55,0.72);
  background: linear-gradient(180deg, rgba(212,175,55,0.22), rgba(212,175,55,0.1));
  color: #fff4cf;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
}

/* TITLE */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 95px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.hero-word {
  display: inline-block;
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShine 8s linear infinite;
}

.hero-word-soft {
  background-image: linear-gradient(120deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.96) 35%, rgba(255,255,255,0.52) 70%, rgba(255,255,255,0.88) 100%);
}

.hero-word-gold {
  background-image: linear-gradient(120deg, #8f6c18 0%, #d4af37 24%, #fff1ad 48%, #cca43a 70%, #8a6513 100%);
  text-shadow: 0 0 22px rgba(212,175,55,0.18);
}

/* SUBTITLE */
.hero-content p {
  margin-top: 25px;
  font-size: 18px;
  color: #bbb;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 50px;
  display: flex;
  gap: 20px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 32px;
  border: 1px solid rgba(212,175,55,0.26);
  color: #f5f1e8;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 34px rgba(0,0,0,0.2);
  transition: 0.35s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.14) 30%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.btn:hover {
  border-color: rgba(212,175,55,0.7);
  color: #fff8e2;
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 22px 42px rgba(0,0,0,0.28);
}

.btn:hover::before {
  transform: translateX(130%);
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(212,175,55,0.14), transparent 34%),
    rgba(4,6,10,0.86);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1300;
}

.modal.active {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.modal-content {
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow: visible;
  padding: 42px 42px 30px;
  border-radius: 26px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.16), transparent 36%),
    linear-gradient(170deg, rgba(21,24,30,0.95), rgba(10,12,16,0.96) 58%, rgba(8,10,14,0.98));
  box-shadow: 0 34px 90px rgba(0,0,0,0.5);
}

.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 35%),
    radial-gradient(circle at 15% 80%, rgba(212,175,55,0.09), transparent 30%);
}

.modal-content h2 {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 0.98;
  margin-bottom: 26px;
  color: #f8f4e9;
}

/* CLOSE */
.close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(18,20,26,0.94), rgba(10,12,16,0.96));
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: rgba(248,244,233,0.86);
  z-index: 3;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 14px 26px rgba(0,0,0,0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease;
}

.close:hover {
  color: #fff7dd;
  border-color: rgba(212,175,55,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 18px 32px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.close:focus-visible {
  outline: none;
  border-color: rgba(212,175,55,0.62);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.14);
}

.manager-contact-content {
  width: min(680px, 100%);
  padding: 36px 34px 30px;
}

.manager-contact-text {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
}

.manager-contact-grid {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.manager-contact-card {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.manager-contact-label {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manager-contact-link {
  display: inline-block;
  margin-top: 8px;
  color: #f5f1e8;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 600;
  line-height: 1.22;
  text-decoration: none;
  transition: color 0.3s ease;
}

.manager-contact-link:hover {
  color: #f6e8b8;
}

.manager-contact-actions {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.manager-contact-action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.manager-contact-action-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* GRID */
.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.form-left,
.form-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INPUT */
.modal-content input,
.modal-content textarea,
.modal-content .car-select {
  min-height: 56px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.12);
  color: #f5f1e8;
  border-radius: 14px;
  font-size: 16px;
  outline: none;
  transition: 0.32s ease;
  backdrop-filter: blur(8px);
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content .car-select:focus {
  border-color: rgba(212,175,55,0.72);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 0 0 4px rgba(212,175,55,0.11);
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: rgba(255,255,255,0.48);
}

.modal-content textarea {
  min-height: 128px;
  padding-top: 15px;
  resize: none;
}

.modal-content .iti {
  width: 100%;
  position: relative;
  z-index: 4;
}

.modal-content .iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,0.04) !important;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px 0 0 14px;
}

.modal-content .iti input[type="tel"] {
  width: 100%;
}

.modal-content .iti__selected-dial-code {
  color: #f5f1e8;
  font-weight: 600;
}

.modal-content .iti__country-list {
  z-index: 1405 !important;
  max-height: min(320px, 48vh);
  width: min(320px, calc(100vw - 48px));
  box-shadow: 0 22px 44px rgba(0,0,0,0.42);
}

.form-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

/* TERMS */
.terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

.terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d4af37;
}

.terms a {
  color: #d4af37;
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* BUTTON */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  min-width: 250px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #d8bd5c 0%, #d4af37 44%, #926a1b 100%);
  border: 1px solid rgba(255,233,168,0.38);
  color: #090a0d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 20px 40px rgba(0,0,0,0.34);
  transition: 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 24px 44px rgba(0,0,0,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 24px 18px 20px;
  }

  .modal-content h2 {
    padding-right: 52px;
    font-size: clamp(28px, 8vw, 42px);
  }

  .close {
    right: 14px;
    top: 14px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 20px;
  }

  .form-bottom {
    align-items: stretch;
  }

  .submit-btn {
    width: 100%;
    min-width: 0;
  }

  .manager-contact-content {
    padding: 30px 16px 18px;
  }

  .manager-contact-grid,
  .manager-contact-actions {
    grid-template-columns: 1fr;
  }

  .modal-content .iti__country-list {
    width: min(320px, calc(100vw - 56px));
    max-height: min(300px, 44vh);
  }

  .modal-content .iti__flag-container,
  .product-self-booking .iti__flag-container {
    z-index: 12;
  }

  .modal-content .iti__country-list,
  .product-self-booking .iti__country-list {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    top: auto !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 16px) !important;
    width: auto !important;
    max-width: none !important;
    max-height: min(52vh, 380px) !important;
    z-index: 1605 !important;
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  }
}
/* ===== FIX WHITE BUG COMPLETELY ===== */

/* контейнер списка */
.iti__country-list {
  background: #0f0f0f !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* каждый элемент */
.iti__country {
  background: #0f0f0f !important;
  color: #ddd !important;
  padding: 12px 14px;
}

/* УБИВАЕМ ВСЁ ВНУТРИ */
/* НЕ ТРОГАЕМ ФЛАГИ */
.iti__country *:not(.iti__flag) {
  background: transparent !important;
}

/* hover */
.iti__country:hover {
  background: rgba(212,175,55,0.15) !important;
  color: #fff !important;
}

/* выбранный */
.iti__country.iti__highlight {
  background: rgba(212,175,55,0.25) !important;
  color: #fff !important;
}

/* название страны */
.iti__country-name {
  color: #fff !important;
}

/* код */
.iti__dial-code {
  color: #aaa !important;
}

/* разделитель */
.iti__divider {
  background: rgba(255,255,255,0.1) !important;
}

/* убираем любые светлые фоны */
.iti__country-list * {
  background-color: transparent !important;
}
/* SELECT DARK LUX */
.car-select {
  width: 100%;
  min-height: 56px;
  padding: 18px 20px;
  padding-right: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245,241,232,0.82) 50%),
    linear-gradient(135deg, rgba(245,241,232,0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 14px) calc(50% - 4px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

/* hover / focus */
.car-select:hover,
.car-select:focus {
  border-color: #d4af37;
  background: rgba(255,255,255,0.04);
}

/* dropdown список */
.car-select option {
  background: #0f0f0f;
  color: #fff;
}

/* группы (марки) */
.car-select optgroup {
  background: #0a0a0a;
  color: #d4af37;
  font-weight: 600;
}
/* ===== CALENDAR LUX STYLE ===== */

.flatpickr-calendar {
  background: #0f0f0f;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  color: white;
}

/* дни */
.flatpickr-day {
  color: #f2eee4;
}

/* hover */
.flatpickr-day:hover {
  background: rgba(212,175,55,0.2);
  color: #fff;
}

/* выбранный день */
.flatpickr-day.selected {
  background: #d4af37;
  color: #050608;
  border-color: #d4af37;
}

/* сегодня */
.flatpickr-day.today {
  border: 1px solid #d4af37;
  color: #fff7df;
}

.flatpickr-day.today.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  color: #050608;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled {
  color: rgba(255,255,255,0.26);
}

/* месяц */
.flatpickr-months {
  color: white;
}

/* стрелки */
.flatpickr-prev-month,
.flatpickr-next-month {
  fill: #d4af37;
}
/* HEADER */
.flatpickr-months {
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* месяц и год */
.flatpickr-current-month {
  color: white;
}

/* select (МЕСЯЦ) */
.flatpickr-monthDropdown-months {
  background: #111 !important;
  color: white !important;
  border: none;
}

/* select (ГОД) */
.numInputWrapper input {
  background: #111 !important;
  color: white !important;
  border: none;
}

/* стрелки */
.flatpickr-prev-month,
.flatpickr-next-month {
  color: #d4af37 !important;
  fill: #d4af37 !important;
}

/* дни недели */
.flatpickr-weekdays {
  background: #0f0f0f;
}

.flatpickr-weekday {
  color: #f4efe4;
  font-weight: 600;
}
.submit-btn {
  opacity: 0.4;
  cursor: not-allowed;
  transition: 0.3s;
}

.submit-btn:not(:disabled) {
  opacity: 1;
  cursor: pointer;
}
.modal-content .error {
  min-height: 18px;
  margin-top: -6px;
  color: #ffad7a;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.iti__selected-flag .iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/18.5.3/img/flags.png") !important;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/18.5.3/img/flags.png") !important;
}.iti__selected-flag {
  background: transparent !important;
  padding-left: 10px;
}

.page-main {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0b0d11 45%, #050608 100%);
  overflow: hidden;
}

.page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 85% 35%, rgba(212, 175, 55, 0.1), transparent 24%);
  pointer-events: none;
}

.lux-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: #f5f1e8;
}

.section-text {
  margin-top: 18px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0 24px;
}

.stat-card {
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

.stat-number {
  display: block;
  margin-bottom: 10px;
  color: #f5f1e8;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding: 72px 0;
}

.experience-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-item {
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f5f1e8;
}

.feature-item p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.experience-visual {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 22, 28, 0.94), rgba(8, 10, 14, 0.98));
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.experience-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-scene-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 12, 0.22) 0%, rgba(7, 8, 12, 0.5) 58%, rgba(7, 8, 12, 0.9) 100%),
    radial-gradient(circle at 20% 18%, rgba(212, 175, 55, 0.2), transparent 26%);
}

.experience-scene-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  z-index: 1;
}

.experience-location {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 14, 0.42);
  color: #f5f1e8;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.experience-scene-text {
  max-width: 320px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.experience-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8, 10, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.experience-badge-number {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
}

.experience-badge-text {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
  line-height: 1.5;
}

.fleet-section,
.service-section,
.destinations-section,
.brands-section,
.cta-section {
  padding: 72px 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.fleet-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --fleet-accent: rgba(212,175,55,0.24);
  --fleet-shine: rgba(255,255,255,0.24);
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  animation: fleetCardIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fleet-card[data-category-card] {
  cursor: pointer;
}

.fleet-card[data-category-card]:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.75);
  outline-offset: 2px;
}

.fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 78%, var(--fleet-accent), transparent 38%),
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.07) 50%, transparent 82%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, 0% 50%;
  opacity: 0.5;
  animation: fleetCardAura 9.4s ease-in-out infinite alternate;
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 32%, var(--fleet-shine) 50%, transparent 68%);
  transform: translateX(-140%);
  opacity: 0;
  transition: transform 0.95s ease, opacity 0.45s ease;
}

.fleet-card:hover::after {
  transform: translateX(140%);
  opacity: 0.65;
}

.fleet-card > * {
  position: relative;
  z-index: 1;
}

.fleet-card:nth-child(1) {
  --fleet-accent: rgba(255,146,66,0.3);
  --fleet-shine: rgba(255,187,126,0.25);
  animation-delay: 0.06s;
}

.fleet-card:nth-child(2) {
  --fleet-accent: rgba(240,74,71,0.28);
  --fleet-shine: rgba(255,160,156,0.24);
  animation-delay: 0.14s;
}

.fleet-card:nth-child(3) {
  --fleet-accent: rgba(154,166,182,0.24);
  --fleet-shine: rgba(214,222,232,0.22);
  animation-delay: 0.22s;
}

.fleet-card:nth-child(4) {
  --fleet-accent: rgba(108,128,158,0.24);
  --fleet-shine: rgba(177,193,219,0.22);
  animation-delay: 0.3s;
}

.fleet-card:nth-child(5) {
  --fleet-accent: rgba(112, 132, 176, 0.24);
  --fleet-shine: rgba(191, 206, 236, 0.22);
  animation-delay: 0.38s;
}

.fleet-card:hover,
.service-card:hover,
.destination-card:hover,
.brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.fleet-icon {
  width: min(100%, 260px);
  height: 140px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 14px;
  display: block;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.34));
  animation: fleetIconFloat 5.8s ease-in-out infinite;
  transition: filter 0.35s ease;
}

.fleet-card:nth-child(2) .fleet-icon {
  animation-delay: 0.35s;
}

.fleet-card:nth-child(3) .fleet-icon {
  animation-delay: 0.8s;
}

.fleet-card:nth-child(4) .fleet-icon {
  animation-delay: 1.15s;
}

.fleet-card:nth-child(5) .fleet-icon {
  animation-delay: 1.5s;
}

.fleet-card:hover .fleet-icon {
  animation-duration: 3.8s;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.4));
}

.fleet-card h3,
.service-content h3,
.destination-content h3 {
  color: #f5f1e8;
  font-size: 22px;
  line-height: 1.2;
}

.fleet-card h3 {
  text-align: center;
}

.fleet-card p,
.service-content p,
.destination-content p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

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

.service-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-content {
  padding: 22px 22px 24px;
}

.destinations-carousel {
  position: relative;
}

.destinations-viewport {
  overflow: hidden;
}

.destinations-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  gap: 22px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 6px 0 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.destinations-grid::-webkit-scrollbar {
  display: none;
}

.destination-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  scroll-snap-align: start;
}

.destination-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destination-content {
  padding: 22px 22px 26px;
}

.destinations-nav {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.14), transparent 52%),
    linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(8, 10, 14, 0.98));
  color: #f1dc95;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: transform 0.28s ease, border-color 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
  z-index: 2;
}

.destinations-nav:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.destinations-nav[disabled] {
  opacity: 0.36;
  cursor: default;
  transform: translateY(-50%) scale(0.98);
  box-shadow: none;
}

.destinations-nav-prev {
  left: -28px;
}

.destinations-nav-next {
  right: -28px;
}

.destinations-nav span {
  font-size: 22px;
  line-height: 1;
}

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

.brand-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  --brand-overlay-color: rgba(212,175,55,0.18);
  --brand-shine-color: rgba(212,175,55,0.28);
  --brand-bg-image: url("../img/map-car.png");
  --brand-bg-size: 76% auto;
  --brand-logo-filter: grayscale(0.18) brightness(1.12) contrast(1.05);
  --brand-logo-max-width: 150px;
  --brand-logo-max-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 148px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 68%, var(--brand-overlay-color), transparent 38%),
    var(--brand-bg-image) center / var(--brand-bg-size) no-repeat;
  filter: grayscale(1) brightness(1.18) contrast(1.05);
  opacity: 0.23;
  transform: translate3d(-7%, 4%, 0) scale(1.08);
  animation: brandCardMapDrift 12s ease-in-out infinite alternate;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, var(--brand-shine-color) 50%, transparent 65%);
  transform: translateX(-135%);
  animation: brandCardShine 5.4s ease-in-out infinite;
}

.brand-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--brand-logo-max-width);
  max-height: var(--brand-logo-max-height);
  object-fit: contain;
  filter: var(--brand-logo-filter);
  opacity: 0.9;
  animation: brandCardLogoBreath 4.6s ease-in-out infinite;
}

.brand-card-ferrari {
  --brand-bg-image: url("../img/ferrarilogo.png");
  --brand-overlay-color: rgba(215, 33, 39, 0.26);
  --brand-shine-color: rgba(215, 33, 39, 0.24);
}

.brand-card-lamborghini {
  --brand-bg-image: url("../img/lamborghinilogo.png");
  --brand-overlay-color: rgba(203, 176, 44, 0.24);
  --brand-shine-color: rgba(203, 176, 44, 0.24);
}

.brand-card-bentley {
  --brand-bg-image: url("../img/bentleylogo.png");
  --brand-overlay-color: rgba(212,175,55,0.2);
  --brand-shine-color: rgba(212,175,55,0.3);
  --brand-bg-size: 82% auto;
  --brand-logo-max-width: 156px;
  --brand-logo-max-height: 66px;
}

.brand-card-mercedes {
  --brand-bg-image: url("../img/mercedesbenzlogo.png");
  --brand-overlay-color: rgba(210, 214, 222, 0.2);
  --brand-shine-color: rgba(210, 214, 222, 0.24);
}

.brand-card-bmw {
  --brand-bg-image: url("../img/bmwlogo.png");
  --brand-overlay-color: rgba(74, 141, 214, 0.2);
  --brand-shine-color: rgba(74, 141, 214, 0.24);
}

.brand-card-aston {
  --brand-bg-image: url("../img/astonmartinlogo.png");
  --brand-overlay-color: rgba(170, 186, 178, 0.2);
  --brand-shine-color: rgba(170, 186, 178, 0.22);
}

.brand-card-maserati {
  --brand-bg-image: url("../img/mazeratilogo.png");
  --brand-overlay-color: rgba(102, 132, 172, 0.2);
  --brand-shine-color: rgba(102, 132, 172, 0.24);
}

.brand-card-maybach {
  --brand-bg-image: url("../img/maybachlogo.png");
  --brand-overlay-color: rgba(212,175,55,0.24);
  --brand-shine-color: rgba(212,175,55,0.28);
}

.brand-card:nth-child(odd)::before {
  animation-duration: 11.6s;
}

.brand-card:nth-child(odd)::after {
  animation-duration: 5.9s;
}

.brand-card:nth-child(odd) img {
  animation-duration: 4.2s;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(255, 255, 255, 0.04)),
    url("../img/bg-lux.jpg") center/cover;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-solid {
  background: linear-gradient(135deg, #d7bb58 0%, #d4af37 45%, #9f7820 100%);
  border-color: rgba(255, 228, 156, 0.34);
  color: #050608;
}

.btn-solid:hover {
  color: #050608;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255,255,255,0.92);
}

.btn-ghost:hover {
  border-color: rgba(212,175,55,0.6);
  color: #fff8e2;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 0;
  padding: 34px 36px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.92), rgba(10, 12, 16, 0.96));
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.2fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.footer-top::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 58%;
  width: min(420px, 38vw);
  height: min(170px, 13vw);
  pointer-events: none;
  z-index: 0;
  background: url("../img/map-car.png") center / contain no-repeat;
  filter: grayscale(1) brightness(1.2) contrast(1.08);
  opacity: 0.22;
  transform: translate(-50%, -50%) scale(1.04);
  animation: footerCarDrift 11s ease-in-out infinite alternate;
}

.footer-top::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 58%;
  width: min(460px, 42vw);
  height: min(160px, 12vw);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.22), transparent 68%);
  transform: translate(-50%, -50%);
  animation: footerCarGlow 8.8s ease-in-out infinite alternate;
}

.footer-top > * {
  position: relative;
  z-index: 1;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-menu,
.footer-legal {
  display: flex;
  gap: 20px 24px;
  flex-wrap: wrap;
}

.footer-menu a,
.footer-menu a:visited,
.footer-legal a,
.footer-legal a:visited {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu a:hover,
.footer-legal a:hover {
  color: #d4af37;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-contact-link {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

.footer-contact-link:visited {
  color: #f5f1e8;
}

.footer-contact-link:hover {
  color: #d4af37;
}

.footer-contact-meta {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact-phone {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-contact-phone:visited {
  color: #f5f1e8;
}

.footer-contact-phone:hover {
  color: #d4af37;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  position: relative;
  overflow: visible;
}

.footer-social {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.84);
  text-decoration: none;
  transition: 0.32s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
}

.footer-social-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.58);
  color: #25d366;
  box-shadow: 0 10px 22px rgba(37,211,102,0.24);
}

.footer-social-telegram:hover {
  border-color: rgba(60, 170, 240, 0.58);
  color: #3caaf0;
  box-shadow: 0 10px 22px rgba(60,170,240,0.24);
}

.footer-social-location-wrap {
  position: relative;
  display: inline-flex;
}

.footer-social-location-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 18px;
  pointer-events: none;
}

.footer-social-location {
  cursor: pointer;
}

.footer-social-location:hover,
.footer-social-location-wrap.is-open .footer-social-location,
.footer-social-location-wrap:focus-within .footer-social-location {
  border-color: rgba(212,175,55,0.52);
  color: #f6e8b8;
  box-shadow: 0 12px 26px rgba(212,175,55,0.16);
}

.footer-office-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: min(320px, calc(100vw - 40px));
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.2);
  background:
    linear-gradient(180deg, rgba(16,18,24,0.98), rgba(9,11,16,0.98)),
    radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 38%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 12;
  overflow: hidden;
}

.footer-office-popover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent 42%);
  pointer-events: none;
}

.footer-social-location-wrap:hover .footer-office-popover,
.footer-social-location-wrap:focus-within .footer-office-popover,
.footer-social-location-wrap.is-open .footer-office-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.footer-social-location-wrap:hover::before,
.footer-social-location-wrap:focus-within::before,
.footer-social-location-wrap.is-open::before {
  pointer-events: auto;
}

.footer-office-kicker,
.footer-office-hint {
  position: relative;
  z-index: 1;
}

.footer-office-kicker {
  display: inline-block;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-office-title {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: #f5f1e8;
  font-size: 24px;
  line-height: 1.08;
}

.footer-office-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-office-item {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-office-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.34);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.footer-office-city {
  color: #f6e8b8;
  font-size: 16px;
  font-weight: 600;
}

.footer-office-address {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.55;
}

.footer-office-hint {
  margin-top: 14px;
  color: rgba(255,255,255,0.44);
  font-size: 12px;
  line-height: 1.5;
}

.footer-social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 28px 0 24px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.6;
  min-width: 240px;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  padding: 24px;
  background: rgba(4, 5, 8, 0.62);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner-inner {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.98), rgba(10, 12, 16, 0.98)),
    radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 32%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  animation: cookieFadeIn 0.28s ease;
}

.cookie-banner-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cookie-banner-copy h3 {
  font-size: 30px;
  line-height: 1.1;
  color: #f5f1e8;
}

.cookie-banner-copy p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-banner-actions .btn {
  min-width: 170px;
  justify-content: center;
}

.cookie-link {
  text-decoration: none;
}

.cookie-lock {
  overflow: hidden;
}

@keyframes cookieFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes logoShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 240% 50%;
  }
}

@keyframes productMediaPulse {
  0% {
    filter: brightness(1);
  }

  100% {
    filter: brightness(1.08);
  }
}

@keyframes selfBookingGoldFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes selfBookingShine {
  0%,
  22% {
    transform: translateX(-130%);
  }

  50% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes fleetCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fleetCardAura {
  0% {
    background-position: 0 0, 0% 50%;
  }

  100% {
    background-position: 0 0, 100% 50%;
  }
}

@keyframes fleetIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes footerCarDrift {
  0% {
    transform: translate(-50%, -50%) translateX(-10px) translateY(2px) scale(1.02);
  }

  100% {
    transform: translate(-50%, -50%) translateX(12px) translateY(-3px) scale(1.08);
  }
}

@keyframes footerCarGlow {
  0% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0.94);
  }

  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes brandCardMapDrift {
  0% {
    transform: translate3d(-7%, 4%, 0) scale(1.08);
  }

  100% {
    transform: translate3d(6%, -3%, 0) scale(1.14);
  }
}

@keyframes brandCardShine {
  0% {
    transform: translateX(-135%);
    opacity: 0;
  }

  30% {
    opacity: 0.7;
  }

  55% {
    opacity: 0.18;
  }

  100% {
    transform: translateX(135%);
    opacity: 0;
  }
}

@keyframes brandCardLogoBreath {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.022);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes brandsBookingCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes brandsBookingFieldIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .product-media,
  .fleet-card,
  .fleet-card::before,
  .fleet-icon,
  .footer-top::before,
  .footer-top::after,
  .brand-card::before,
  .brand-card img,
  .brands-booking-card,
  .brands-field,
  .brands-booking-action {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .brand-card::before {
    opacity: 0.2;
  }

  .fleet-card::before {
    opacity: 0.24;
  }

  .fleet-card::after {
    transition: none;
    opacity: 0;
    transform: none;
  }

  .footer-top::before {
    opacity: 0.2;
  }

  .footer-top::after {
    opacity: 0.18;
    transform: translate(-50%, -50%);
  }

  .brand-card::after {
    animation: none;
    opacity: 0;
    transform: none;
  }
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0b0d11 45%, #050608 100%);
}

.legal-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.legal-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-back {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.legal-back:hover {
  color: #d4af37;
}

.legal-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.legal-close:hover {
  color: #d4af37;
  border-color: rgba(212,175,55,0.62);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.24);
}

.legal-lang-switch {
  gap: 8px;
}

.legal-lang-switch .lang-btn {
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.legal-card {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 24px 55px rgba(0,0,0,0.25);
}

.legal-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  color: #f5f1e8;
}

.legal-card > p {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.legal-section {
  margin-top: 30px;
}

.legal-section h2 {
  color: #f5f1e8;
  font-size: 24px;
  margin-bottom: 12px;
}

.legal-section h3 {
  margin: 18px 0 10px;
  color: rgba(245,241,232,0.92);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.legal-section p,
.legal-section li {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.legal-section a {
  color: #d4af37;
  text-decoration-color: rgba(212,175,55,0.55);
  text-underline-offset: 3px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.legal-section a:hover {
  color: #f6e8b8;
  text-decoration-color: rgba(246,232,184,0.78);
}

.legal-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.legal-links a {
  color: #d4af37;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

.brands-body {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0a0c10 44%, #050608 100%);
}

.brands-header {
  position: fixed;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(6,8,12,0.78), rgba(6,8,12,0.18));
  backdrop-filter: blur(16px);
}

.brands-main {
  padding-top: 0;
}

.brands-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 110px;
  overflow: hidden;
}

.brands-hero-image,
.brands-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.brands-hero-image {
  object-fit: cover;
}

.brands-hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.48) 0%, rgba(5,6,8,0.42) 36%, rgba(5,6,8,0.92) 100%),
    radial-gradient(circle at 25% 35%, rgba(212,175,55,0.18), transparent 24%);
}

.brands-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  max-width: 760px;
}

.brands-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  color: #f5f1e8;
}

.brands-hero-content p {
  margin-top: 22px;
  max-width: 620px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.75;
}

.brands-booking-shell {
  margin-top: 36px;
  padding-bottom: 42px;
}

.brands-booking-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(212,175,55,0.1), transparent 32%),
    linear-gradient(180deg, rgba(18,20,26,0.92), rgba(10,12,16,0.96));
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  animation: brandsBookingCardIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.brands-booking-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 28px;
  background: linear-gradient(110deg, rgba(255,255,255,0.08), transparent 35%);
}

.brands-booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.brands-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.brands-field span {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.24);
}

.brands-field:focus-within span {
  color: rgba(225,193,94,0.96);
}

.brands-field input,
.brands-field .date-input,
.brands-select {
  width: 100%;
  min-height: 56px;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.13);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  color: #f5f1e8;
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(8px);
}

.brands-field input::placeholder,
.brands-field .date-input::placeholder {
  color: rgba(255,255,255,0.56);
}

.brands-field input:hover,
.brands-field .date-input:hover,
.brands-select:hover {
  border-color: rgba(255,255,255,0.22);
}

.brands-field input:focus,
.brands-field .date-input:focus,
.brands-select:focus {
  border-color: rgba(212,175,55,0.72);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.brands-field input:disabled,
.brands-field .date-input:disabled,
.brands-select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  border-color: rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: none;
}

.brands-booking-action {
  width: 100%;
  min-height: 56px;
  align-self: flex-end;
  justify-content: center;
}

.brands-booking-action:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
  filter: saturate(0.72);
}

.brands-field,
.brands-booking-action {
  opacity: 0;
  transform: translateY(16px);
  animation: brandsBookingFieldIn 0.56s ease forwards;
}

.brands-booking-grid .brands-field:nth-child(1) {
  animation-delay: 0.22s;
}

.brands-booking-grid .brands-field:nth-child(2) {
  animation-delay: 0.28s;
}

.brands-booking-grid .brands-field:nth-child(3) {
  animation-delay: 0.34s;
}

.brands-booking-grid .brands-field:nth-child(4) {
  animation-delay: 0.4s;
}

.brands-booking-grid .brands-field:nth-child(5) {
  animation-delay: 0.46s;
}

.brands-booking-grid .brands-booking-action {
  animation-delay: 0.52s;
}

.brands-select {
  min-height: 56px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245,241,232,0.82) 50%),
    linear-gradient(135deg, rgba(245,241,232,0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 4px),
    calc(100% - 14px) calc(50% - 4px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 46px;
  cursor: pointer;
}

.brands-select option {
  background: #0f1116;
  color: #f5f1e8;
}

.brands-types-section,
.brands-catalog-section,
.brands-cities-section {
  padding: 72px 0;
}

.brands-type-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.brands-type-card,
.brand-showcase-card {
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.brands-type-card[data-category-card] {
  cursor: pointer;
}

.brands-type-card[data-category-card]:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.75);
  outline-offset: 2px;
}

.brands-type-card:hover,
.brand-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.34);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.brands-type-icon {
  width: min(100%, 260px);
  height: 124px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto 18px;
  display: block;
}

.brands-type-card h3,
.brand-showcase-copy {
  color: #f5f1e8;
}

.brands-type-card h3 {
  font-size: 24px;
  text-align: center;
}

.brands-type-card p,
.brand-showcase-card p {
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}

.brands-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.brand-showcase-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  margin-bottom: 6px;
}

.brand-showcase-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.brand-showcase-logo img {
  max-width: 160px;
  max-height: 62px;
  width: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.28);
  transform: translateY(1px);
}

.brand-showcase-image {
  display: block;
  margin: 0 auto;
}

.brand-showcase-image-mclaren {
  max-width: 190px;
  max-height: 54px;
  filter: brightness(0) invert(1);
}

.brand-showcase-image-porsche {
  max-width: 74px;
  max-height: 74px;
  filter: none;
}

.brand-showcase-image-bugatti {
  max-width: 150px;
  max-height: 68px;
  filter: none;
}

.brand-showcase-logo img.brand-showcase-image-rolls {
  max-width: 186px;
  max-height: 86px;
  filter: none;
}

.brand-showcase-logo img.brand-showcase-image-tesla {
  max-width: 152px;
  max-height: 78px;
  filter: brightness(0) invert(0.84);
}

.brands-city-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.brands-city-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: 0.35s ease;
}

.brands-city-chip:hover {
  border-color: rgba(212,175,55,0.46);
  color: #fff7df;
  background: rgba(212,175,55,0.08);
}

.bmw-brand-body {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0a0c10 44%, #050608 100%);
}

.bmw-brand-main {
  padding-top: 0;
}

.bmw-brand-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 148px 0 92px;
  overflow: hidden;
}

.bmw-brand-hero-image,
.bmw-brand-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bmw-brand-hero-image {
  object-fit: cover;
}

.bmw-brand-hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.42) 0%, rgba(5,6,8,0.46) 40%, rgba(5,6,8,0.92) 100%),
    radial-gradient(circle at 24% 30%, rgba(212,175,55,0.2), transparent 26%);
}

.bmw-brand-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  max-width: 1180px;
}

.bmw-brand-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(245,241,232,0.9);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.bmw-brand-back-link:hover {
  color: #d4af37;
}

.bmw-brand-back-link::before {
  content: "←";
}

.bmw-brand-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6.6vw, 88px);
  line-height: 0.95;
  color: #f5f1e8;
  max-width: 860px;
}

.bmw-brand-hero-content p {
  margin-top: 18px;
  max-width: 760px;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.72;
}

.bmw-brand-chip-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  overflow: hidden;
  scrollbar-width: none;
}

.bmw-brand-chip-row::-webkit-scrollbar {
  display: none;
}

.bmw-brand-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 100%;
}

.bmw-brand-models-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.bmw-brand-models-meta .bmw-brand-back-link,
.bmw-brand-models-meta .section-kicker {
  margin-bottom: 0;
}

.bmw-brand-models-meta .bmw-brand-back-link {
  font-size: 17px;
}

.bmw-brand-models-meta .section-kicker {
  font-size: 16px;
}

.bmw-brand-highlights-section,
.bmw-brand-models-section,
.bmw-brand-cities-section {
  padding: 72px 0;
}

.category-cars-head {
  padding-top: 156px;
  padding-bottom: 10px;
}

.category-cars-body .brands-main {
  padding-top: 0;
}

.category-cars-models {
  padding-top: 16px;
}

.category-cars-empty {
  margin-top: 18px;
}

.bmw-brand-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bmw-brand-highlight-card,
.bmw-model-card {
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.bmw-brand-highlight-card:hover,
.bmw-model-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.bmw-brand-highlight-card h3 {
  color: #f5f1e8;
  font-size: 24px;
}

.bmw-brand-highlight-card p {
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}

.bmw-brand-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bmw-model-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bmw-model-media {
  position: relative;
}

.bmw-model-card.bmw-model-card-clickable {
  cursor: pointer;
}

.bmw-model-card.bmw-model-card-clickable:focus-visible {
  outline: none;
  border-color: rgba(212,175,55,0.65);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18), 0 22px 44px rgba(0,0,0,0.22);
}

.bmw-model-media {
  min-height: 194px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0d111a;
}

.bmw-model-media-link {
  display: block;
  height: 100%;
}

.bmw-model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bmw-model-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}

.bmw-model-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.36);
  color: #d4af37;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bmw-model-body h3 {
  margin: 14px 0 0;
  color: #f5f1e8;
  font-size: 30px;
  font-family: 'Playfair Display', serif;
}

.bmw-model-body p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.bmw-model-price {
  margin-top: auto;
  padding-top: 16px;
  color: #f6e8b8;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1;
}

.bmw-model-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.bmw-brand-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bmw-brand-city-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: 0.35s ease;
}

.bmw-brand-city-chip:hover {
  border-color: rgba(212,175,55,0.46);
  color: #fff7df;
  background: rgba(212,175,55,0.08);
}

.bmw-brand-cta-card {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.4) 0%, rgba(5,6,8,0.52) 42%, rgba(5,6,8,0.86) 100%),
    radial-gradient(circle at 22% 24%, rgba(212,175,55,0.18), transparent 30%),
    url("../img/auto/BMWM840i0.jpg") center 54%/cover no-repeat;
}

.product-body {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.11), transparent 26%),
    linear-gradient(180deg, #050608 0%, #0a0c10 48%, #050608 100%);
}

.product-main {
  padding-top: 0;
}

.product-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 94px;
  overflow: hidden;
}

.product-hero-image,
.product-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-hero-image {
  object-fit: cover;
}

.product-hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.4) 0%, rgba(5,6,8,0.48) 40%, rgba(5,6,8,0.9) 100%),
    radial-gradient(circle at 20% 25%, rgba(212,175,55,0.2), transparent 28%);
}

.product-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  max-width: 820px;
}

.product-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96;
  color: #f5f1e8;
}

.product-hero-content p {
  margin-top: 18px;
  max-width: 690px;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.72;
}

.product-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
}

.product-showcase-section,
.product-details-section,
.product-includes-section {
  padding: 72px 0;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.product-showcase-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.product-showcase-meta .car-favorite-toggle-product {
  margin-left: auto;
}

.product-showcase-back-link {
  margin-bottom: 0;
  font-size: 17px;
}

.product-showcase-model-kicker {
  margin-bottom: 0;
  font-size: 16px;
}

.product-gallery-shell {
  display: grid;
  gap: 12px;
}

.car-favorite-toggle {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(18,20,26,0.92), rgba(10,12,16,0.96));
  color: rgba(255,255,255,0.82);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.car-favorite-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212,175,55,0.44);
  color: #f6e8b8;
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

.car-favorite-toggle.is-active {
  color: #f6e8b8;
  border-color: rgba(212,175,55,0.5);
  background: linear-gradient(180deg, rgba(212,175,55,0.2), rgba(18,20,26,0.98));
  box-shadow: 0 18px 36px rgba(212,175,55,0.14), 0 18px 34px rgba(0,0,0,0.28);
}

.car-favorite-toggle-card {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.tour-car-item > .car-favorite-toggle-card {
  top: 8px;
  right: 10px;
  z-index: 4;
}

.car-favorite-toggle-card .car-favorite-toggle-label {
  display: none;
}

.car-favorite-toggle-product {
  min-height: 46px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.car-favorite-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.car-favorite-heart {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.saved-cars-dock {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 42;
  display: grid;
  gap: 12px;
  width: min(360px, calc(100vw - 40px));
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.saved-cars-dock:not(.has-items) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.saved-cars-trigger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.28);
  background: linear-gradient(180deg, rgba(16,18,24,0.95), rgba(9,11,16,0.98));
  color: #f5f1e8;
  box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}

.saved-cars-trigger-count {
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #d7bb58 0%, #d4af37 45%, #9f7820 100%);
  color: #050608;
  font-size: 13px;
  font-weight: 700;
}

.saved-cars-panel {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(212,175,55,0.2);
  background:
    linear-gradient(180deg, rgba(16,18,24,0.98), rgba(8,10,14,0.98)),
    radial-gradient(circle at top right, rgba(212,175,55,0.16), transparent 36%);
  box-shadow: 0 28px 68px rgba(0,0,0,0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.saved-cars-dock.is-open .saved-cars-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.saved-cars-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.saved-cars-panel-kicker {
  color: rgba(255,255,255,0.46);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.saved-cars-panel-title {
  margin-top: 10px;
  color: #f5f1e8;
  font-size: 28px;
  line-height: 1.04;
}

.saved-cars-panel-text {
  margin-top: 10px;
  color: rgba(255,255,255,0.66);
  line-height: 1.7;
}

.saved-cars-clear {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
}

.saved-cars-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.saved-cars-empty {
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

.saved-car-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.saved-car-item-media {
  display: block;
  aspect-ratio: 1.18;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1018;
}

.saved-car-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.saved-car-item-body {
  min-width: 0;
}

.saved-car-item-title {
  color: #f5f1e8;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.saved-car-item-price {
  margin-top: 6px;
  color: #f6e8b8;
  font-size: 14px;
}

.saved-car-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.saved-car-item-link {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 13px;
}

.saved-car-item-link:hover,
.saved-car-item-title:hover {
  color: #f6e8b8;
}

.saved-car-item-remove {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.74);
  font-size: 22px;
  line-height: 1;
}

.saved-cars-request {
  width: 100%;
  margin-top: 16px;
}

.recently-viewed-section {
  margin-top: 18px;
}

.recently-viewed-head {
  margin-bottom: 22px;
}

.product-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0d111a;
  padding: 0;
  animation: productMediaPulse 8s ease-in-out infinite alternate;
}

.product-media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.product-media:hover .product-media-img {
  transform: scale(1.05);
  filter: saturate(1.04);
}

/* BMW X7 gallery: keep more of the vehicle visible in each frame */
body[data-booking-car="BMW X7"] .product-gallery-shell .product-media {
  background: #0f1218;
}

body[data-booking-car="BMW X7"] .product-gallery-shell .product-media-img {
  object-position: center 26%;
}

body[data-booking-car="BMW X7"] .product-gallery-shell .product-media-primary .product-media-img {
  object-position: center 24%;
}

.product-media-primary {
  min-height: 560px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
}

.product-media-grid .product-media {
  min-height: 132px;
}

.product-media {
  cursor: zoom-in;
}

.product-media:focus-visible {
  outline: none;
  border-color: rgba(212,175,55,0.72);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 44px);
  background:
    radial-gradient(circle at 20% 15%, rgba(212,175,55,0.18), transparent 36%),
    rgba(4,6,10,0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease, visibility 0.26s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox-figure {
  width: min(94vw, 1320px);
  height: min(88vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.gallery-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 34px 90px rgba(0,0,0,0.5);
  object-fit: contain;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  color: #f5f1e8;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.gallery-lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 20px;
}

.gallery-lightbox-next {
  right: 20px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  border-color: rgba(212,175,55,0.72);
  background: linear-gradient(180deg, rgba(212,175,55,0.24), rgba(212,175,55,0.08));
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: none;
  border-color: rgba(212,175,55,0.72);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
}

.product-summary-card {
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(212,175,55,0.2);
  background:
    linear-gradient(180deg, rgba(18,20,26,0.95), rgba(10,12,16,0.96)),
    radial-gradient(circle at top right, rgba(212,175,55,0.18), transparent 34%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  position: sticky;
  top: 94px;
}

.product-price-kicker {
  display: inline-block;
  color: rgba(255,255,255,0.56);
  letter-spacing: 0.16em;
  font-size: 12px;
  text-transform: uppercase;
}

.product-price {
  margin-top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.2vw, 54px);
  line-height: 0.95;
  color: #f6e8b8;
}

.product-price-advantage {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.28);
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  color: rgba(246,232,184,0.98);
  font-size: 14px;
  line-height: 1.5;
}

.product-price-guarantee {
  margin-top: 12px;
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.55;
}

.product-price-guarantee strong {
  color: #f6e8b8;
  font-weight: 700;
}

.product-summary-list {
  margin-top: 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-summary-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-summary-list li span {
  color: rgba(255,255,255,0.65);
}

.product-summary-list li strong {
  color: #f5f1e8;
  text-align: right;
}

.product-summary-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-self-booking {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.product-self-booking-toggle {
  position: relative;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 228, 156, 0.34);
  background: linear-gradient(135deg, #d7bb58 0%, #d4af37 45%, #9f7820 100%);
  background-size: 180% 180%;
  color: #050608;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 16px 34px rgba(0,0,0,0.26);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  animation: selfBookingGoldFlow 6s ease-in-out infinite;
}

.product-self-booking-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 34%, transparent 66%);
  transform: translateX(-130%);
  animation: selfBookingShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.product-self-booking-toggle:hover {
  border-color: rgba(255, 236, 177, 0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.26), 0 20px 38px rgba(0,0,0,0.3);
}

.product-self-booking-toggle:focus-visible {
  outline: none;
  border-color: rgba(212,175,55,0.72);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
}

.product-self-booking-toggle-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(5,6,8,0.92);
  border-bottom: 2px solid rgba(5,6,8,0.92);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 4px;
}

.product-self-booking-toggle[aria-expanded="true"] .product-self-booking-toggle-icon {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.product-self-booking-panel {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.46s ease, opacity 0.32s ease, transform 0.32s ease, margin-top 0.32s ease;
}

.product-self-booking-panel.is-open {
  margin-top: 14px;
  max-height: 2600px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.product-self-booking-text {
  margin-top: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

.product-self-booking-hint {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.24);
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
}

.product-self-booking-hint p {
  margin: 0;
  color: rgba(245,241,232,0.78);
  font-size: 13px;
  line-height: 1.45;
}

.product-self-booking-hint p + p {
  margin-top: 6px;
}

.product-self-booking-form {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-self-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-self-field span {
  color: rgba(255,255,255,0.76);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-self-input,
.product-self-select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  color: #f5f1e8;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-self-input::placeholder {
  color: rgba(255,255,255,0.54);
}

.product-self-field .iti {
  width: 100%;
}

.product-self-booking .iti--separate-dial-code .iti__selected-flag {
  background: rgba(255,255,255,0.04) !important;
  border-radius: 12px 0 0 12px;
}

.product-self-booking .iti__selected-dial-code {
  color: #f5f1e8;
  font-weight: 600;
}

.product-self-time {
  color-scheme: dark;
}

.product-self-time::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(0.9);
  cursor: pointer;
}

.product-self-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245,241,232,0.82) 50%),
    linear-gradient(135deg, rgba(245,241,232,0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 4px),
    calc(100% - 12px) calc(50% - 4px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.product-self-select option {
  background: #0f1116;
}

.product-self-input:focus,
.product-self-select:focus {
  border-color: rgba(212,175,55,0.72);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}

.product-self-total {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.26);
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
}

.product-self-total span {
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-self-total strong {
  color: #f6e8b8;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
}

.product-self-message-field {
  grid-column: 1 / -1;
}

.product-self-message {
  min-height: 110px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.5;
}

.product-self-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  font-size: 14px;
}

.product-self-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #d4af37;
  flex: 0 0 auto;
}

.product-self-consent a {
  color: #d4af37;
  text-decoration: none;
}

.product-self-consent a:hover {
  text-decoration: underline;
}

.product-self-pay-btn {
  grid-column: 1 / -1;
}

.product-self-booking-note {
  margin-top: 12px;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.55;
}

.product-self-booking-status {
  margin-top: 6px;
  min-height: 22px;
  font-size: 14px;
  line-height: 1.4;
}

.product-self-booking-status.is-error {
  color: #ff9999;
}

.product-self-booking-status.is-success {
  color: #85d7a5;
}

.product-details-grid,
.product-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-card,
.product-include-item {
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-detail-card:hover,
.product-include-item:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.product-detail-card h3,
.product-include-item h3 {
  color: #f5f1e8;
  font-size: 24px;
}

.product-detail-list {
  margin-top: 14px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.product-include-list {
  margin-top: 14px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.product-detail-list li,
.product-include-item p,
.product-include-list li {
  color: rgba(255,255,255,0.7);
  line-height: 1.72;
}

.product-cta-card {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 82% 20%, rgba(212,175,55,0.2), transparent 34%),
    linear-gradient(180deg, rgba(18,20,26,0.92), rgba(10,12,16,0.96));
}

.about-body,
.contact-body {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.11), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0a0c10 44%, #050608 100%);
}

.about-main,
.contact-main {
  padding-top: 0;
}

.about-hero,
.contact-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 110px;
  overflow: hidden;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-messengers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-messenger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: 0.32s ease;
}

.header-messenger:hover {
  transform: translateY(-2px);
}

.header-messenger-whatsapp:hover {
  border-color: rgba(37,211,102,0.62);
  color: #25d366;
  box-shadow: 0 10px 24px rgba(37,211,102,0.25);
}

.header-messenger-telegram:hover {
  border-color: rgba(60,170,240,0.62);
  color: #3caaf0;
  box-shadow: 0 10px 24px rgba(60,170,240,0.25);
}

.header-messenger-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .header {
    padding: 18px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    z-index: 1240;
  }

  .header.is-mobile-menu-open {
    z-index: 1261;
  }

  .header .logo {
    grid-column: 1;
    min-width: 0;
  }

  .header > .nav,
  .header > .header-tools {
    display: none !important;
  }

  .header-burger-toggle {
    display: inline-flex;
    grid-column: 2;
    margin-left: 0;
    position: relative;
    z-index: 1260;
  }

  .header.is-mobile-menu-open .header-burger-toggle {
    z-index: 1262;
  }

  .header-mobile-panel {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding:
      calc(env(safe-area-inset-top, 0px) + 84px)
      16px
      calc(env(safe-area-inset-bottom, 0px) + 16px);
    max-height: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    z-index: 1250;
    transition: opacity 0.24s ease, visibility 0.24s ease;
  }

  .header-mobile-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 10, 0.18), rgba(6, 7, 10, 0.54));
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity 0.32s ease;
  }

  .header-mobile-panel[hidden] {
    display: none !important;
  }

  .header-mobile-panel-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    width: min(390px, calc(100vw - 32px));
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 100px);
    min-height: 0;
    overflow: auto;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 32%),
      linear-gradient(180deg, rgba(12, 13, 18, 0.97), rgba(6, 7, 10, 0.985));
    box-shadow:
      0 28px 74px rgba(0, 0, 0, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateX(-28px) translateY(8px) scale(0.98);
    opacity: 0;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
  }

  .header-mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-mobile-panel.is-open::before {
    opacity: 1;
  }

  .header-mobile-panel.is-open .header-mobile-panel-inner {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 1;
  }

  .header-mobile-panel-inner > .nav {
    margin-top: 0;
    padding: 18px;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .header-mobile-panel-inner > .nav a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 16px;
    letter-spacing: 0.02em;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
      linear-gradient(180deg, rgba(10, 11, 15, 0.9), rgba(10, 11, 15, 0.82));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .header-mobile-panel-inner > .nav a:hover,
  .header-mobile-panel-inner > .nav a:focus-visible {
    color: #fff3cb;
    border-color: rgba(212, 175, 55, 0.24);
    background:
      linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.05)),
      linear-gradient(180deg, rgba(10, 11, 15, 0.92), rgba(10, 11, 15, 0.84));
  }

  .header-mobile-panel-inner > .header-tools {
    width: 100%;
    margin-top: 0;
    padding: 16px 18px 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .header-mobile-panel-inner > .header-tools .header-messengers {
    justify-content: flex-start;
    gap: 12px;
  }

  .header-mobile-panel-inner > .header-tools .lang-switch {
    justify-content: flex-start;
    gap: 10px;
  }

  .header-mobile-panel-inner > .header-tools .header-messenger {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .header-mobile-panel-inner > .header-tools .lang-btn {
    min-width: 88px;
    min-height: 48px;
    border-radius: 14px;
  }

  .header.is-mobile-menu-open .header-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.is-mobile-menu-open .header-burger-line:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .header.is-mobile-menu-open .header-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.about-hero-image,
.about-hero-overlay,
.contact-hero-image,
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero-image,
.contact-hero-image {
  object-fit: cover;
}

.about-hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.46) 0%, rgba(5,6,8,0.38) 35%, rgba(5,6,8,0.92) 100%),
    radial-gradient(circle at 25% 35%, rgba(212,175,55,0.2), transparent 24%);
}

.contact-hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.48) 0%, rgba(5,6,8,0.42) 36%, rgba(5,6,8,0.92) 100%),
    radial-gradient(circle at 68% 24%, rgba(212,175,55,0.18), transparent 26%);
}

.about-hero-content,
.contact-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  max-width: 780px;
}

.about-hero-content h1,
.contact-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.97;
  color: #f5f1e8;
}

.about-hero-content p,
.contact-hero-content p {
  margin-top: 22px;
  max-width: 640px;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
  line-height: 1.75;
}

.about-story-section,
.about-pillars-section,
.about-process-section,
.about-regions-section,
.contact-cards-section,
.contact-details-section {
  padding: 72px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
}

.about-story-copy .section-text {
  max-width: 100%;
}

.about-story-metrics {
  display: grid;
  gap: 14px;
}

.about-metric-card {
  padding: 24px 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 20px 42px rgba(0,0,0,0.22);
}

.about-metric-number {
  display: block;
  margin-bottom: 8px;
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
}

.about-metric-card p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.about-pillars-grid,
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-pillar-card,
.contact-card,
.contact-faq-card,
.contact-flow-card,
.contact-presence-card,
.contact-coverage-card,
.about-step-card {
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-pillar-card:hover,
.contact-card:hover,
.about-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.about-pillar-card h3,
.contact-card h3,
.about-step-card h3 {
  color: #f5f1e8;
  font-size: 24px;
}

.about-pillar-card p,
.contact-card p,
.about-step-card p {
  margin-top: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-step-index,
.contact-flow-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.42);
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 18px;
  background: rgba(212,175,55,0.08);
}

.about-region-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-region-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: 0.35s ease;
}

.about-region-chip:hover {
  border-color: rgba(212,175,55,0.46);
  color: #fff7df;
  background: rgba(212,175,55,0.08);
}

.contact-card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card-link {
  display: inline-flex;
  margin-top: 20px;
  color: #f5f1e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,241,232,0.4);
  transition: color 0.35s ease, border-color 0.35s ease;
}

.contact-card-link:hover {
  color: #d4af37;
  border-color: rgba(212,175,55,0.65);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
}

.contact-faq-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-faq-list {
  margin-top: 22px;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.contact-faq-list li {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.contact-faq-visual {
  margin-top: auto;
  padding-top: 28px;
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.contact-faq-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: min(78%, 420px);
  height: 88px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(212,175,55,0.24) 0%, rgba(212,175,55,0.12) 38%, rgba(212,175,55,0.03) 68%, transparent 100%);
  filter: blur(22px);
  z-index: 0;
}

.contact-faq-visual::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 56%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.16) 42%, transparent 82%);
  filter: blur(28px);
  z-index: 0;
}

.contact-faq-car {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 560px);
  margin: 0 auto;
  transform: translateX(0) translateY(4%) scale(1.01);
  filter: brightness(0.82) contrast(1.08) saturate(0.92) drop-shadow(0 26px 46px rgba(0, 0, 0, 0.44));
  pointer-events: none;
  user-select: none;
}

.contact-office-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-office-item {
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.contact-office-item h3 {
  color: #f5f1e8;
  font-size: 22px;
}

.contact-office-item p {
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.contact-presence-note {
  margin-top: 20px;
}

.contact-coverage-list {
  margin-top: 22px;
}

.contact-flow-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
}

.contact-flow-item .contact-flow-index {
  margin-bottom: 0;
  min-width: 44px;
  min-height: 44px;
  font-size: 18px;
}

.contact-flow-item h3 {
  color: #f5f1e8;
  font-size: 22px;
}

.contact-flow-item p {
  margin-top: 8px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .experience-section,
  .cta-card,
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-summary-card {
    position: static;
    top: auto;
  }

  .fleet-grid,
  .service-grid,
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destinations-grid {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .destinations-nav-prev {
    left: -14px;
  }

  .destinations-nav-next {
    right: -14px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top::before,
  .footer-top::after {
    display: none;
  }

  .product-details-grid,
  .product-includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-booking-grid,
  .brands-type-grid,
  .brands-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-booking-action {
    grid-column: span 2;
  }

  .about-story-grid,
  .contact-details-grid {
    grid-template-columns: 1fr;
  }

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

  .about-pillars-grid,
  .contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bmw-brand-highlights-grid,
  .bmw-brand-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .saved-cars-dock {
    left: 18px;
    bottom: 20px;
    width: min(340px, calc(100vw - 36px));
  }

  .contact-faq-visual {
    min-height: 180px;
  }

  .contact-faq-car {
    width: min(100%, 500px);
    transform: translateX(0) translateY(3%);
  }
}

@media (max-width: 768px) {
  .lux-section,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .stats-strip,
  .fleet-grid,
  .service-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 84vw);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 4px 12px 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .destinations-nav {
    display: none;
  }

  .destinations-grid::-webkit-scrollbar {
    display: none;
  }

  .destination-card {
    min-height: 100%;
    scroll-snap-align: start;
  }

  .experience-section,
  .fleet-section,
  .service-section,
  .destinations-section,
  .brands-section,
  .cta-section {
    padding: 52px 0;
  }

  .stats-strip {
    padding-top: 32px;
  }

  .experience-visual {
    min-height: 380px;
  }

  .experience-badge {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-badge-text {
    max-width: none;
    text-align: left;
  }

  .cta-card {
    padding: 28px 22px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    width: min(100% - 32px, 1180px);
    padding: 26px 22px 24px;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
  }

  .footer-office-popover {
    right: auto;
    left: 0;
    bottom: calc(100% + 14px);
    width: min(300px, calc(100vw - 52px));
    transform-origin: bottom left;
  }

  .footer-social-location-wrap::before {
    right: auto;
    left: 0;
  }

  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-inner {
    padding: 24px 18px;
  }

  .cookie-banner-copy h3 {
    font-size: 25px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn,
  .cookie-link {
    width: 100%;
  }

  .brands-hero {
    min-height: 72vh;
    padding: 130px 0 80px;
  }

  .bmw-brand-hero {
    min-height: 72vh;
    padding: 130px 0 80px;
  }

  .bmw-brand-hero-content {
    width: min(100% - 32px, 1180px);
  }

  .bmw-brand-highlights-grid,
  .bmw-brand-models-grid {
    grid-template-columns: 1fr;
  }

  .bmw-brand-models-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .bmw-brand-models-meta .bmw-brand-back-link {
    font-size: 15px;
  }

  .bmw-brand-models-meta .section-kicker {
    font-size: 14px;
  }

  .product-showcase-meta .car-favorite-toggle-product {
    margin-left: 0;
  }

  .saved-cars-dock {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }

  .saved-cars-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .saved-cars-panel {
    padding: 18px;
  }

  .saved-car-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
  }

  .contact-faq-visual {
    min-height: 140px;
    padding-top: 20px;
    justify-content: center;
  }

  .contact-faq-car {
    width: min(100%, 420px);
    margin: 0 auto;
    transform: translateY(4%);
  }

  .bmw-brand-chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .bmw-model-media {
    min-height: 220px;
  }

  .product-hero {
    min-height: 72vh;
    padding: 130px 0 82px;
  }

  .product-hero-content {
    width: min(100% - 32px, 1180px);
  }

  .product-showcase-meta {
    gap: 10px;
  }

  .product-showcase-back-link {
    font-size: 15px;
  }

  .product-showcase-model-kicker {
    font-size: 14px;
  }

  .product-media-primary {
    min-height: 360px;
  }

  .product-media-grid {
    grid-template-columns: repeat(3, minmax(126px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .product-media-grid .product-media {
    min-height: 108px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-figure {
    width: 100%;
    height: auto;
    max-height: 82vh;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .gallery-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .gallery-lightbox-prev {
    left: 10px;
  }

  .gallery-lightbox-next {
    right: 10px;
  }

  .product-details-grid,
  .product-includes-grid {
    grid-template-columns: 1fr;
  }

  .product-self-booking-form {
    grid-template-columns: 1fr;
  }

  .legal-shell {
    padding: 30px 0 60px;
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .legal-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .brands-hero-content,
  .brands-booking-shell {
    width: min(100% - 32px, 1180px);
  }

  .brands-booking-grid,
  .brands-type-grid,
  .brands-catalog-grid {
    grid-template-columns: 1fr;
  }

  .brands-booking-card {
    padding: 22px;
  }

  .brands-booking-action {
    grid-column: span 1;
  }

  .about-pillars-grid,
  .about-process-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .brands-booking-shell {
    margin-top: 24px;
  }

  .about-hero,
  .contact-hero {
    min-height: 72vh;
    padding: 130px 0 80px;
  }

  .about-hero-content,
  .contact-hero-content {
    width: min(100% - 32px, 1180px);
  }

  .header {
    padding: 16px;
  }

  .header-burger-toggle {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .header-mobile-panel {
    padding:
      calc(env(safe-area-inset-top, 0px) + 76px)
      12px
      calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .header-mobile-panel-inner {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 88px);
    border-radius: 24px;
  }

  .header-mobile-panel-inner > .nav {
    padding: 16px;
  }

  .header-mobile-panel-inner > .header-tools {
    padding: 14px 16px 16px;
    align-items: stretch;
  }
}

.iti__flag-container {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.iti__flag-container,
.iti__selected-flag {
  touch-action: manipulation;
}

body.country-picker-open {
  overflow: hidden;
}

.mobile-country-picker {
  position: fixed;
  inset: 0;
  z-index: 1700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.mobile-country-picker.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-country-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(14px);
}

.mobile-country-picker-panel {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: min(72vh, 560px);
  padding: 18px 16px 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(14, 16, 21, 0.98), rgba(7, 8, 11, 0.995));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.mobile-country-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-country-picker-title {
  margin: 0;
  color: #f5f1e8;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
}

.mobile-country-picker-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5f1e8;
  font-size: 24px;
  line-height: 1;
}

.mobile-country-picker-search {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5f1e8;
  font-size: 16px;
}

.mobile-country-picker-list {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
}

.mobile-country-picker-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: #f5f1e8;
  text-align: left;
}

.mobile-country-picker-option.is-active {
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(212, 175, 55, 0.1);
}

.mobile-country-picker-flag {
  font-size: 20px;
}

.mobile-country-picker-name {
  min-width: 0;
  font-size: 15px;
  line-height: 1.25;
}

.mobile-country-picker-code {
  color: rgba(245, 241, 232, 0.72);
  font-size: 15px;
  white-space: nowrap;
}

/* SUPERCAR TOURS PAGE */
.tours-body {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.11), transparent 28%),
    linear-gradient(180deg, #050608 0%, #0a0c10 44%, #050608 100%);
}

.tours-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.tours-hero {
  position: relative;
  min-height: 84vh;
  padding: 160px 0 108px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tours-hero-video,
.tours-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tours-hero-video {
  object-fit: cover;
  filter: brightness(0.82) contrast(1.04) saturate(0.94);
}

.tours-hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,6,8,0.42) 0%, rgba(5,6,8,0.36) 36%, rgba(5,6,8,0.9) 100%),
    radial-gradient(circle at 20% 24%, rgba(212,175,55,0.16), transparent 30%);
}

.tours-hero-content {
  position: relative;
  z-index: 2;
}

.tours-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  color: #f5f1e8;
}

.tours-hero-content p {
  margin-top: 18px;
  max-width: 680px;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.75;
}

.tours-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tours-main {
  padding-top: 0;
}

.tours-highlights,
.tours-programs,
.tours-process,
.tours-benefits,
.tours-booking,
.tours-sports {
  padding: 72px 0;
}

.tours-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tours-program-card {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tours-program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.tours-program-media {
  position: relative;
  min-height: 220px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tours-program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tours-program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,12,0.06) 0%, rgba(7,8,12,0.7) 100%);
}

.tours-program-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.45);
  background: rgba(8,10,14,0.72);
  color: #f7ebc1;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tours-program-overlay {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
}

.tours-program-overlay h3 {
  color: #f5f1e8;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.05;
}

.tours-program-overlay p {
  margin-top: 8px;
  color: rgba(255,255,255,0.84);
  line-height: 1.5;
}

.tours-program-meta {
  padding: 18px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.tours-program-meta span {
  color: rgba(255,255,255,0.68);
}

.tours-program-meta strong {
  color: #f6e8b8;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
}

.tours-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tours-process-card {
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.09), rgba(255,255,255,0.025)),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tours-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.tours-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.42);
  background: rgba(212,175,55,0.08);
  color: #f1d98a;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
}

.tours-process-card h3 {
  color: #f5f1e8;
  font-size: 24px;
  line-height: 1.15;
}

.tours-process-card p {
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
  line-height: 1.72;
}

.tours-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tours-benefit-card {
  padding: 26px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tours-benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.tours-benefit-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.42);
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 16px;
  background: rgba(212,175,55,0.08);
}

.tours-benefit-card h3 {
  color: #f5f1e8;
  font-size: 24px;
}

.tours-benefit-card p {
  margin-top: 10px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.tours-cta-card {
  background:
    linear-gradient(135deg, rgba(212,175,55,0.16), rgba(255,255,255,0.04)),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,0.18), transparent 36%),
    linear-gradient(180deg, rgba(16,18,24,0.94), rgba(8,10,14,0.98));
}

.tours-cars-grid {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 26px;
}

.tour-car-item {
  min-width: 0;
  position: relative;
}

.tour-car-item::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12px;
  height: 176px;
  border-radius: 30px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.78;
  transform: scale(1);
  filter: blur(8px);
  background:
    radial-gradient(circle at 50% 58%, rgba(122, 88, 20, 0.34) 0%, rgba(122, 88, 20, 0.2) 36%, rgba(122, 88, 20, 0) 75%),
    linear-gradient(180deg, rgba(96, 72, 21, 0.24) 0%, rgba(28, 23, 14, 0.34) 52%, rgba(5, 6, 8, 0) 100%);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.tour-car-item:hover::before {
  opacity: 0.92;
  transform: scale(1.035);
  filter: blur(10px);
}

.tour-car-link {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 18px;
  padding: 4px 6px 8px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.tour-car-link::before {
  content: "";
  position: absolute;
  inset: -22% -42%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translateX(-132%) skewX(-16deg);
  background: linear-gradient(
    112deg,
    transparent 36%,
    rgba(212,175,55,0) 45%,
    rgba(255,229,158,0.42) 50%,
    rgba(212,175,55,0) 55%,
    transparent 64%
  );
  transition: transform 0.86s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.36s ease;
}

.tour-car-link::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 52px;
  height: 18px;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.82);
  background: radial-gradient(circle, rgba(212,175,55,0.45) 0%, rgba(212,175,55,0) 70%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tour-car-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter:
    drop-shadow(0 18px 20px rgba(0,0,0,0.42))
    drop-shadow(0 4px 10px rgba(212,175,55,0.16));
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), filter 0.36s ease;
}

.tour-car-link:hover .tour-car-image,
.tour-car-link:focus-visible .tour-car-image {
  transform: translateY(-6px) scale(1.025);
  filter:
    drop-shadow(0 26px 32px rgba(0,0,0,0.52))
    drop-shadow(0 8px 16px rgba(212,175,55,0.3));
}

.tour-car-link:hover::before,
.tour-car-link:focus-visible::before {
  opacity: 1;
  transform: translateX(132%) skewX(-16deg);
}

.tour-car-link:hover::after,
.tour-car-link:focus-visible::after {
  opacity: 0.82;
  transform: scaleX(1.08);
}

.tour-car-name {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  text-align: center;
  color: #9b7a26;
  font-size: clamp(14px, 1.05vw, 20px);
  line-height: 1.12;
  font-family: Arial, sans-serif;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.32s ease, text-shadow 0.32s ease;
}

.tour-car-link:hover .tour-car-name,
.tour-car-link:focus-visible .tour-car-name {
  color: #c39a32;
  text-shadow: 0 0 14px rgba(212,175,55,0.24);
}

@media (max-width: 1080px) {
  .tours-programs-grid,
  .tours-process-grid,
  .tours-benefits-grid,
  .tours-cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tours-shell,
  .tours-body .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .tours-hero-video {
    filter: brightness(0.92) contrast(1.02) saturate(0.98);
  }

  .tours-hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,6,8,0.18) 0%, rgba(5,6,8,0.22) 38%, rgba(5,6,8,0.74) 100%),
      radial-gradient(circle at 82% 18%, rgba(212,175,55,0.09), transparent 28%);
  }

  .tours-hero {
    min-height: 72vh;
    padding: 132px 0 82px;
  }

  .tours-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tours-programs-grid,
  .tours-process-grid,
  .tours-benefits-grid {
    grid-template-columns: 1fr;
  }

  .tours-cars-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 84vw);
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 4px 12px 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tours-cars-grid::-webkit-scrollbar {
    display: none;
  }

  .tour-car-item {
    min-height: 100%;
    scroll-snap-align: start;
  }

  .tour-car-image {
    height: 150px;
  }

  .tours-highlights,
  .tours-programs,
  .tours-process,
  .tours-benefits,
  .tours-booking,
  .tours-sports {
    padding: 56px 0;
  }
}

/* ===== GLOBAL GOLD ACCENT REFRESH ===== */
:root {
  --lux-accent: #d4af37;
  --lux-accent-strong: #e4bf46;
  --lux-accent-deep: #b98f27;
  --lux-accent-line: rgba(212, 175, 55, 0.3);
  --lux-accent-line-soft: rgba(212, 175, 55, 0.2);
  --lux-accent-glow: rgba(212, 175, 55, 0.34);
}

.btn-solid,
.submit-btn,
.product-self-booking-toggle,
.product-self-pay-btn {
  background: linear-gradient(135deg, var(--lux-accent-strong) 0%, var(--lux-accent) 46%, var(--lux-accent-deep) 100%);
  border-color: rgba(255, 236, 178, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(212, 175, 55, 0.14);
}

.btn-solid:hover,
.submit-btn:hover,
.product-self-booking-toggle:hover,
.product-self-pay-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 243, 202, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(212, 175, 55, 0.18),
    0 0 24px rgba(212, 175, 55, 0.24);
}

.btn-ghost:hover {
  border-color: rgba(212, 175, 55, 0.8);
  color: #fff6d9;
}

.btn:hover {
  border-color: rgba(212, 175, 55, 0.76);
}

.nav a:hover,
.nav-cars-trigger.is-open,
.terms a,
.product-self-consent a,
.cookie-banner-kicker,
.section-kicker,
.tour-car-name,
.contact-card-kicker,
.product-self-total strong {
  color: var(--lux-accent);
}

.terms input[type="checkbox"],
.product-self-consent input[type="checkbox"] {
  accent-color: var(--lux-accent);
}

.lang-btn.active {
  border-color: rgba(212, 175, 55, 0.88);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.32), rgba(212, 175, 55, 0.12));
}

.lang-btn:hover {
  border-color: rgba(212, 175, 55, 0.68);
}

.footer-divider {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.36), rgba(212, 175, 55, 0.08));
}

.product-summary-list li,
.product-self-booking,
.product-detail-list li,
.product-summary-card,
.product-detail-card,
.product-include-item,
.bmw-model-card,
.brand-card,
.site-footer,
.cookie-banner-inner,
.cta-card {
  border-color: var(--lux-accent-line-soft);
}

.product-price-advantage,
.product-self-booking-hint,
.product-self-total {
  border-color: var(--lux-accent-line);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.05));
}

.product-self-input:focus,
.product-self-select:focus,
.car-select:focus,
.car-select:hover {
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.flatpickr-day.selected {
  background: var(--lux-accent);
  border-color: var(--lux-accent);
}

.flatpickr-day.today {
  border-color: var(--lux-accent);
}

.flatpickr-prev-month,
.flatpickr-next-month {
  fill: var(--lux-accent);
}

.tour-car-link:hover .tour-car-name,
.tour-car-link:focus-visible .tour-car-name {
  color: var(--lux-accent);
  text-shadow: 0 0 14px var(--lux-accent-glow);
}

.tour-car-name {
  color: var(--lux-accent);
}

.floating-contact-dock {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  z-index: 90;
  isolation: isolate;
}

.floating-contact-link {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.floating-contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  opacity: 0.85;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.floating-contact-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.floating-contact-link:hover::before {
  opacity: 1;
  transform: translateY(-1px);
}

.floating-contact-link + .floating-contact-link {
  margin-top: -16px;
}

.floating-contact-phone {
  margin-right: 18px;
  background:
    radial-gradient(circle at 32% 28%, #f0d98d 0%, #ddb962 32%, #be9037 78%);
  color: #171109;
  border-color: rgba(255, 238, 186, 0.45);
}

.floating-contact-whatsapp {
  background: linear-gradient(180deg, rgba(11, 18, 13, 0.96), rgba(6, 10, 8, 0.98));
  color: #32d16a;
  border-color: rgba(50, 209, 106, 0.26);
}

.floating-contact-telegram {
  margin-right: 10px;
  background: linear-gradient(180deg, rgba(10, 15, 20, 0.96), rgba(5, 8, 12, 0.98));
  color: #53bbff;
  border-color: rgba(83, 187, 255, 0.24);
}

.floating-contact-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.floating-contact-phone:hover {
  border-color: rgba(255, 244, 208, 0.62);
}

.floating-contact-whatsapp:hover {
  border-color: rgba(50, 209, 106, 0.5);
  color: #4ce482;
}

.floating-contact-telegram:hover {
  border-color: rgba(83, 187, 255, 0.48);
  color: #7ccbff;
}

@media (max-width: 767px) {
  .floating-contact-dock {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
  }

  .floating-contact-link {
    width: 60px;
    height: 60px;
  }

  .floating-contact-icon {
    width: 24px;
    height: 24px;
  }

  .floating-contact-link + .floating-contact-link {
    margin-top: -14px;
  }

  .floating-contact-phone {
    margin-right: 14px;
  }

  .floating-contact-telegram {
    margin-right: 8px;
  }
}
