/* ═══════════════════════════════════════════════
   GALA TRANSFER — Light Premium Theme
   Design: Warm ivory / cream with rich gold accents
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #B8860B;
  --gold-rich: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(184,134,11,.12);
  --gold-border: rgba(184,134,11,.25);

  /* Light palette */
  --bg: #FAFAF7;
  --bg2: #F3F0E8;
  --surface: #FFFFFF;
  --surface2: #F8F6F0;
  --surface3: #EEE9DC;

  --border: rgba(184,134,11,.18);
  --border-light: rgba(0,0,0,.07);

  --text: #1A1610;
  --text2: #3D3424;
  --muted: rgba(26,22,16,.55);
  --muted2: rgba(26,22,16,.35);

  --accent-teal: #0D7377;
  --accent-blue: #2B5BE0;
  --accent-green: #1A7A4A;
  --red-accent: #C0392B;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow: 0 8px 40px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-rich); border-radius: 3px; }

/* ── LANGUAGE ── */
.t-ru, .t-en, .t-bg { display: none; }
body.lang-ru .t-ru { display: inline; }
body.lang-en .t-en { display: inline; }
body.lang-bg .t-bg { display: inline; }
label.t-ru, label.t-en, label.t-bg { display: none; }
body.lang-ru label.t-ru,
body.lang-en label.t-en,
body.lang-bg label.t-bg { display: block; }

/* ═══════════════════════ HEADER ═══════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px; height: 70px;
  display: flex; align-items: center;
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250,250,247,.98);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  width: 100%; max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  letter-spacing: .02em;
  color: var(--text); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.brand span { color: var(--gold); }

nav { flex: 1; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }

.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-socials { display: flex; gap: 6px; }
.h-ico {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--muted);
  border: 1px solid var(--border-light);
  transition: var(--transition); text-decoration: none;
}
.h-ico svg { width: 15px; height: 15px; }
.h-ico:hover { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); }

.lang-group { display: flex; align-items: center; gap: 3px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--muted2); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; padding: 5px 8px; border-radius: 6px;
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.lang-btn:hover { color: var(--text); background: var(--bg2); }
.lang-btn.active { color: var(--gold); background: var(--gold-dim); }
.lang-sep { color: var(--border); font-size: 11px; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; width: 34px;
}
.burger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(250,250,247,.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 32px;
  transform: translateY(-120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 99;
}
.mobile-drawer.open { transform: translateY(0); }
.mob-nav { list-style: none; }
.mob-nav li { border-bottom: 1px solid var(--border-light); }
.mob-nav a {
  display: block; padding: 14px 0;
  color: var(--text); text-decoration: none;
  font-size: 16px; font-weight: 500;
  transition: var(--transition);
}
.mob-nav a:hover { color: var(--gold); padding-left: 8px; }
.mob-lang { display: flex; gap: 10px; margin-top: 20px; }
.mob-socials { display: flex; gap: 10px; margin-top: 16px; }

/* ═══════════════════════ PROMO BANNER ═══════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, #8B0000 0%, #C0392B 40%, #E74C3C 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
  margin-top: 70px;
}
.promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 10px,
    rgba(255,255,255,.04) 10px, rgba(255,255,255,.04) 20px
  );
}
.promo-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.promo-tag {
  background: rgba(255,255,255,.2);
  color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.35);
  white-space: nowrap;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
.promo-text {
  text-align: center;
}
.promo-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700; color: #fff;
  line-height: 1.1;
}
.promo-headline strong { color: #FFD770; font-size: 1.25em; }
.promo-sub {
  font-size: 15px; color: rgba(255,255,255,.85);
  margin-top: 4px; font-weight: 400;
}
.promo-prices {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.promo-price-pill {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px; padding: 10px 20px;
  text-align: center; color: #fff;
}
.promo-price-pill .pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 700; color: #FFD770;
  display: block; line-height: 1;
}
.promo-price-pill .pill-label {
  font-size: 11px; opacity: .8; margin-top: 2px;
  text-transform: uppercase; letter-spacing: .06em;
}
.promo-cta {
  background: #fff;
  color: #C0392B; font-weight: 800;
  font-size: 14px; letter-spacing: .04em;
  padding: 12px 28px; border-radius: 10px;
  text-decoration: none; white-space: nowrap;
  transition: var(--transition);
  text-transform: uppercase;
}
.promo-cta:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 24px 60px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,134,11,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(45,201,191,.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(43,91,224,.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(184,134,11,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 80%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px;
  border: 1.5px solid var(--gold-border);
  border-radius: 40px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
  font-weight: 600;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-rich);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:.4; transform: scale(.65); }
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 9vw, 130px);
  font-weight: 300; line-height: .92;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fadeUp .8s .12s ease both;
}
h1 .accent { color: var(--gold); font-style: italic; font-weight: 700; }

.hero-tagline {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted); line-height: 1.7;
  max-width: 540px; margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp .8s .22s ease both;
}

@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── WIDGET ── */
.hero-widget {
  position: relative; z-index: 2;
  width: 100%; max-width: 960px;
  background: var(--surface);
  border: 1.5px solid var(--gold-border);
  border-radius: 24px;
  padding: 32px 36px 28px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp .8s .32s ease both;
}
.widget-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--surface2);
  border-radius: 12px; padding: 5px;
  margin-bottom: 22px; width: 100%;
}
.widget-tab {
  padding: 11px 16px;
  border-radius: 9px;
  font-size: 14px; font-weight: 500;
  color: var(--muted); cursor: pointer;
  border: none; background: none;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.35; text-align: center;
}
.widget-tab.active {
  background: var(--gold);
  color: #fff; font-weight: 700;
  box-shadow: 0 4px 16px rgba(184,134,11,.35);
}
.wcar-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted);
  font-weight: 600; margin-bottom: 10px;
}
.wcar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px; margin-bottom: 20px;
  transition: opacity .3s;
}
.wcar-grid.fcar-grid {
  grid-template-columns: repeat(3, 1fr);
}
.wcar-card {
  background: var(--surface2);
  border: 2px solid var(--border-light);
  border-radius: 12px; padding: 12px 8px 10px;
  cursor: pointer; text-align: center;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.wcar-card:hover {
  border-color: var(--gold-border);
  color: var(--text);
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.wcar-card.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(184,134,11,.12), rgba(201,168,76,.06));
  color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184,134,11,.2), 0 6px 20px rgba(184,134,11,.15);
}
.wcar-icon {
  width: 72px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px; flex-shrink: 0;
}
.wcar-icon svg { width: 72px; height: 32px; }
.wcar-card .wcar-icon { color: var(--muted2); transition: color var(--transition); }
.wcar-card.active .wcar-icon { color: var(--gold); }
.wcar-card:hover .wcar-icon { color: var(--gold-rich); }
.wcar-name { font-size: 12px; font-weight: 700; letter-spacing: .01em; color: inherit; }
.wcar-model { font-size: 10px; opacity: .65; line-height: 1.25; }
.wcar-pax {
  font-size: 10px;
  display: flex; align-items: center; justify-content: center; gap: 3px;
  margin-top: 3px; opacity: .7;
  background: rgba(0,0,0,.06); border-radius: 20px; padding: 2px 7px;
}
.wcar-card.active .wcar-pax { background: rgba(184,134,11,.1); }

.widget-row {
  display: grid;
  grid-template-columns: 1fr 1fr 150px auto;
  gap: 10px; align-items: end;
}
.widget-field { display: flex; flex-direction: column; gap: 5px; }
.widget-field label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); font-weight: 600;
}
.widget-input {
  background: var(--surface2);
  border: 1.5px solid var(--border-light);
  border-radius: 10px; padding: 11px 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; transition: var(--transition);
  width: 100%; appearance: none;
}
.widget-input:focus {
  outline: none;
  border-color: var(--gold-border);
  background: var(--gold-dim);
}
.widget-input option { background: var(--surface); color: var(--text); }
.widget-input#w-datetime { font-size: 13px; padding-right: 6px; }

.btn-search {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff; border: none; cursor: pointer;
  border-radius: 10px; padding: 12px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
  text-decoration: none; display: block;
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184,134,11,.4);
}

/* note below widget */
.widget-note {
  text-align: center; margin-top: 14px;
  font-size: 12px; color: var(--muted);
}
.widget-note strong { color: var(--gold); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 40px;
  margin-top: 36px;
  animation: fadeUp .8s .48s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted);
  margin-top: 5px; font-weight: 500;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; padding: 16px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.trust-item svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

/* ═══════════════════════ SECTIONS ═══════════════════════ */
.section { padding: 96px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: .18em; color: var(--gold);
  font-weight: 700; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300; line-height: 1.05;
  color: var(--text); margin-bottom: 52px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 600; }
.fade-in { opacity:0; transform:translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════ ROUTES ═══════════════════════ */
.routes-section { background: var(--bg2); }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.route-card {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
}
.route-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: var(--transition);
}
.route-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.route-card:hover::before { opacity: 1; }
.route-flag { font-size: 24px; margin-bottom: 12px; }
.route-cities {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  line-height: 1.1; color: var(--text); margin-bottom: 14px;
}
.route-price {
  font-size: 30px; font-weight: 700;
  color: var(--gold); font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}
.route-price sup { font-size: 15px; font-weight: 400; vertical-align: super; }
.route-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); }
.route-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.route-badge.daily { background: rgba(13,115,119,.1); color: var(--accent-teal); border: 1px solid rgba(13,115,119,.2); }
.route-badge.custom { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.route-on-request { font-size: 17px; font-weight: 500; color: var(--muted); margin-bottom: 8px; }

/* ═══════════════════════ HOW IT WORKS ═══════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step-card {
  text-align: center; padding: 40px 20px 32px;
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--radius); position: relative; transition: var(--transition);
}
.step-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-weight: 700;
  color: rgba(184,134,11,.1); line-height: 1;
  position: absolute; top: 10px; left: 20px;
}
.step-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--gold-dim); border: 1.5px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--gold);
}
.step-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.steps-grid .step-card:not(:last-child)::after {
  content: '→'; position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%); color: var(--gold-border); font-size: 22px; z-index: 1;
}

/* ═══════════════════════ SERVICES ═══════════════════════ */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 28px; }
.service-card {
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: 30px;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.svc-ico {
  width: 54px; height: 54px; border-radius: 14px; border: 1.5px solid;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.svc-ico svg { width: 26px; height: 26px; }
.service-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

.border-banner {
  display: flex; align-items: center; gap: 28px;
  background: linear-gradient(135deg, rgba(184,134,11,.07), rgba(184,134,11,.03));
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius); padding: 28px 32px; margin-top: 12px;
}
.border-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.border-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════ FLEET ═══════════════════════ */
.fleet-section { background: var(--bg2); }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fleet-card {
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition); position: relative;
}
.fleet-card:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: var(--shadow); }
.fleet-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--bg2); border: 1.5px solid var(--border-light);
  color: var(--muted); margin-bottom: 16px;
}
.fleet-badge.gold { background: var(--gold-dim); border-color: var(--gold-border); color: var(--gold); }
.fleet-badge.vip { background: linear-gradient(135deg,rgba(139,0,0,.1),rgba(192,57,43,.08)); border-color: rgba(192,57,43,.3); color: var(--red-accent); }
.fleet-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fleet-pax { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.fleet-features { list-style: none; }
.fleet-features li {
  font-size: 14px; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
}
.fleet-features li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.fleet-features li:last-child { border: none; }

/* ═══════════════════════ REVIEWS ═══════════════════════ */
.reviews-section { background: var(--bg); }
.slider-wrap { overflow: hidden; border-radius: var(--radius); }
.slider-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-slide { flex: 0 0 100%; }
.review-card {
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: 40px 48px; position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; line-height: 1;
  color: rgba(184,134,11,.08);
  position: absolute; top: 10px; left: 28px; font-weight: 700;
}
.review-stars { color: var(--gold); font-size: 20px; margin-bottom: 20px; letter-spacing: 3px; }
.review-text {
  font-size: 18px; color: var(--text2);
  line-height: 1.75; font-weight: 400;
  margin-bottom: 24px; max-width: 700px; font-style: italic;
}
.review-author { font-size: 14px; color: var(--gold); font-weight: 700; letter-spacing: .05em; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.slider-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border-light);
  color: var(--text); cursor: pointer; font-size: 17px;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-light); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.slider-dot.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* ═══════════════════════ BOOKING ═══════════════════════ */
.booking-section { background: var(--bg2); }
.booking-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; font-weight: 600;
}
.form-control {
  width: 100%; background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: 10px; padding: 12px 16px;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 15px; transition: var(--transition); appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--gold-border); background: var(--gold-dim);
}
.form-control option { background: var(--surface); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.messenger-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.msg-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 9px;
  border: 1.5px solid var(--border-light);
  background: var(--surface); color: var(--muted);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500; transition: var(--transition);
}
.msg-tab:hover { border-color: var(--gold-border); color: var(--text); }
.msg-tab.active { border-color: var(--gold); background: var(--gold-dim); color: var(--gold); }

.price-panel { position: sticky; top: 88px; }
.price-box {
  background: var(--surface); border: 1.5px solid var(--gold-border);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow);
}
.price-label-sm { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.price-route { font-size: 16px; color: var(--text); font-weight: 700; margin-bottom: 4px; }
.price-class-name { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.price-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.price-currency { font-size: 30px; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-note { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.divider { height: 1px; background: var(--border-light); margin: 18px 0; }
.features-list { list-style: none; margin-bottom: 22px; }
.features-list li {
  font-size: 14px; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px;
}
.features-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.features-list li:last-child { border: none; }

.btn-book {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff; border: none; cursor: pointer;
  border-radius: 10px; padding: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  transition: var(--transition);
}
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(184,134,11,.4); }
.btn-book:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ── PRICE LOCK NOTE ── */
.price-lock-note {
  display: flex; align-items: center; gap: 8px;
  background: rgba(26,122,74,.08); border: 1px solid rgba(26,122,74,.2);
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: var(--accent-green); font-weight: 600;
  margin-bottom: 16px;
}
.price-lock-note svg { flex-shrink: 0; }

/* ═══════════════════════ CONTACTS ═══════════════════════ */
.contacts-section { background: var(--bg); }
.contacts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.contact-card {
  background: var(--surface); border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: 26px; transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; border: 1.5px solid;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.contact-svg { width: 22px; height: 22px; }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 8px; font-weight: 700; }
.contact-val { display: block; font-size: 14px; color: var(--text); text-decoration: none; font-weight: 600; transition: var(--transition); }
.contact-val:hover { color: var(--gold); }
.contact-badge {
  padding: 1px 8px; border-radius: 10px;
  font-size: 10px; font-weight: 700;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--gold-border); margin-left: 4px;
}
.contact-person { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
  background: var(--text); color: rgba(255,255,255,.7);
  padding: 48px 24px; text-align: center;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-brand span { color: var(--gold-rich); }
.footer-cities { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .5; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer-social { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; transition: var(--transition); font-weight: 500; }
.footer-social:hover { color: var(--gold-rich); }
.footer-note { font-size: 12px; opacity: .4; }

/* ═══════════════════════ TOAST ═══════════════════════ */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface); border: 1.5px solid var(--gold-border);
  border-radius: 12px; padding: 14px 28px;
  font-size: 15px; color: var(--text);
  opacity: 0; transition: var(--transition); z-index: 999;
  pointer-events: none; box-shadow: var(--shadow);
  font-weight: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1100px) {
  .widget-row { grid-template-columns: 1fr 1fr 1fr; }
  .contacts-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid .step-card::after { display: none; }
  .wcar-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .price-panel { position: static; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .header-socials { display: none; }
  .site-header { padding: 0 20px; }
  .contacts-grid { grid-template-columns: repeat(2,1fr); }
  .wcar-grid { grid-template-columns: repeat(3,1fr); }
  .promo-inner { padding: 16px 20px; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 16px 40px; }
  .hero-widget { padding: 20px 16px; border-radius: 18px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 30px; }
  .widget-tabs { margin-bottom: 14px; }
  .widget-tab { font-size: 12px; padding: 10px 6px; }
  .wcar-grid { grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 14px; }
  .wcar-card { padding: 10px 5px 8px; }
  .wcar-icon { width: 58px; height: 26px; }
  .wcar-icon svg { width: 58px; height: 26px; }
  .wcar-name { font-size: 11px; }
  .wcar-model { font-size: 9px; }
  .widget-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .widget-row .widget-field:nth-child(1) { grid-column: 1/-1; }
  .widget-row .widget-field:nth-child(4) label { display: none; }
  .widget-row .widget-field:nth-child(4) { grid-column: 1/-1; }
  .btn-search { width: 100%; text-align: center; font-size: 13px; padding: 12px; }
  .services-grid, .fleet-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .border-banner { flex-direction: column; gap: 16px; }
  .section { padding: 60px 16px; }
  .booking-grid { gap: 20px; }
  .review-card { padding: 28px 24px; }
  .promo-inner { gap: 14px; }
  .promo-headline { font-size: 20px; }
  .promo-prices { gap: 12px; }
}

/* ═══ FLEET PHOTO ═══ */
.fleet-photo-block {
  margin: 14px 0;
  border-radius: 12px;
  overflow: hidden;
  animation: fadePhotoIn .35s ease;
}
@keyframes fadePhotoIn {
  from { opacity:0; transform: translateY(-8px); }
  to   { opacity:1; transform: translateY(0); }
}
.fleet-photo {
  width: 100%;
  object-fit: cover; display: block;
  border-radius: 10px;
  /* border: 1.5px solid var(--border-light); */
}
.fleet-photo-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 10px 0 4px; padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--gold-border);
  background: var(--gold-dim); color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.fleet-photo-btn:hover,
.fleet-photo-btn--active { background: var(--gold); color: #fff; border-color: var(--gold); }
.fleet-photo-btn--vip { border-color: rgba(192,57,43,.35); background: rgba(192,57,43,.08); color: var(--red-accent); }
.fleet-photo-btn--vip:hover,
.fleet-photo-btn--vip.fleet-photo-btn--active { background: var(--red-accent); color: #fff; border-color: var(--red-accent); }

/* ═══ REQUIRED FIELDS ═══ */
.req-star {
  color: var(--red-accent);
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-left: 6px; vertical-align: middle;
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.2);
  border-radius: 6px; padding: 1px 7px;
}
.form-group--required .form-control,
.form-group--required input[type="text"] {
  border-color: rgba(184,134,11,.35);
}
.form-group--required .form-control:focus,
.form-group--required input[type="text"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,.12);
}
.field-error {
  border-color: var(--red-accent) !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,.12) !important;
  animation: shake .35s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%     { transform: translateX(-7px); }
  60%     { transform: translateX(7px); }
}

/* подсветка всего блока выбора мессенджера при ошибке */
.contact-group-error .messenger-tabs {
  outline: 2px solid var(--red-accent);
  outline-offset: 4px;
  border-radius: 10px;
  animation: shake .35s ease;
}
.contact-group-error .messenger-tabs::after {
  content: '';
}
