/* ============================================================
   САМОЛЕТ62 — Modern Landing CSS
   ============================================================ */

/* ----- CSS VARIABLES ----- */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #1e3a6e;
  --navy-light: #2a4f96;
  --orange:     #e8732a;
  --orange-dark:#c4591a;
  --orange-glow:rgba(232,115,42,.18);
  --white:      #ffffff;
  --gray-50:    #f8f9fc;
  --gray-100:   #f0f2f7;
  --gray-200:   #e2e6f0;
  --gray-400:   #9aa5bc;
  --gray-600:   #5a677e;
  --gray-800:   #2c3650;
  --text:       #222b45;
  --shadow-sm:  0 2px 8px rgba(13,27,62,.08);
  --shadow-md:  0 6px 24px rgba(13,27,62,.12);
  --shadow-lg:  0 16px 48px rgba(13,27,62,.18);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --transition: .25s ease;
  --font:       'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body:  'Inter', 'Montserrat', system-ui, sans-serif;
  --container:  1200px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ----- CONTAINER ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-accent {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-accent:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,115,42,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-outline-primary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-outline-primary:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg  { padding: 15px 32px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* ----- SECTION COMMON ----- */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-label--light { color: rgba(255,255,255,.7); }
.section-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title--white { color: var(--white); }
.section-sub {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-head .section-sub { margin: 0 auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar { padding: 0; }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition);
}
.scrolled .logo-text { color: var(--navy); }
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--orange);
  transition: right var(--transition);
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--white); }
.scrolled .nav-links a { color: var(--gray-600); }
.scrolled .nav-links a:hover { color: var(--navy); }

.nav-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--orange); }
.scrolled .nav-phone { color: var(--navy); }
.scrolled .nav-phone:hover { color: var(--orange); }

.nav-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}
.nav-phone-name {
  margin-left: 3px;
  color: var(--orange);
  font-weight: 700;
}
.nav-phone-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  white-space: nowrap;
}
.scrolled .nav-phone-sub { color: var(--gray-400); }
.nav-tg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-tg:hover { background: #2CA5E0; color: #fff; }
.scrolled .nav-tg { background: rgba(44,165,224,.15); color: #229ED9; }
.scrolled .nav-tg:hover { background: #2CA5E0; color: #fff; }

.nav-max {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-max:hover { background: #6B5CF5; color: #fff; }
.scrolled .nav-max { background: rgba(107,92,245,.15); color: #6B5CF5; }
.scrolled .nav-max:hover { background: #6B5CF5; color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.scrolled .burger span { background: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../img/header/bg03.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,62,.88) 0%,
    rgba(13,27,62,.65) 60%,
    rgba(30,58,110,.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,115,42,.2);
  border: 1px solid rgba(232,115,42,.5);
  color: #ffb07a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-phones {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-phones a {
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color var(--transition);
}
.hero-phones a:hover { color: var(--orange); }
.hero-phones .sep { color: rgba(255,255,255,.3); }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.4);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
  background: var(--navy);
  padding: 28px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  cursor: default;
}
.feature-item:hover { background: rgba(255,255,255,.06); }
.feature-icon { font-size: 1.8rem; }
.feature-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 96px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.75;
}
.about-text .btn { margin-top: 12px; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
  transform: translateY(-2px);
}
.stat-num {
  font-family: var(--font);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   CARS SECTION
   ============================================================ */
.cars-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.car-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.car-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.car-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}
.car-badge--business { background: #6c4a1f; }
.car-badge--minivan  { background: #1a4a3a; }
.car-badge--bus      { background: #2d1b5e; }

.car-gallery { position: relative; }
.car-gallery > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.car-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.car-thumbs img {
  height: 50px;
  object-fit: cover;
  width: 100%;
  transition: opacity var(--transition);
  filter: brightness(.9);
}
.car-thumbs img:hover { filter: brightness(1.1); }

.car-info { padding: 20px; }
.car-name {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.car-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.5;
}
.car-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.car-specs span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 100px;
}
.car-btn { font-size: 0.82rem; padding: 9px 18px; width: 100%; justify-content: center; }

/* ============================================================
   PRICES SECTION
   ============================================================ */
.prices-section {
  padding: 96px 0;
  background: var(--white);
}

/* Tab radio buttons hidden */
.price-tabs input[type="radio"] { display: none; }

.tab-labels {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 6px;
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-labels::-webkit-scrollbar { display: none; }

.tab-label {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-label:hover { color: var(--navy); background: rgba(255,255,255,.6); }

/* Show/hide panes */
.tab-pane { display: none; }

#tab-clf:checked ~ .tab-labels label[for="tab-clf"],
#tab-biz:checked ~ .tab-labels label[for="tab-biz"],
#tab-mvn:checked ~ .tab-labels label[for="tab-mvn"],
#tab-bus:checked ~ .tab-labels label[for="tab-bus"] {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

#tab-clf:checked ~ #pane-clf,
#tab-biz:checked ~ #pane-biz,
#tab-mvn:checked ~ #pane-mvn,
#tab-bus:checked ~ #pane-bus { display: block; }

.airport-info {
  text-align: center;
  margin-bottom: 32px;
  color: var(--gray-600);
}
.distance-badge {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid rgba(232,115,42,.3);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.price-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  background: var(--white);
}
.price-card:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.price-card--popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow-md);
}
.price-card__popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card__class {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.price-card__cars {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  line-height: 1.4;
}
.price-card__seats {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.price-card__price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.price-card__price span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Tariff header inside tab */
.tariff-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.tariff-cars {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 10px;
  font-style: italic;
}
.tariff-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tariff-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: .03em;
}

/* Full price table */
.full-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.full-price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.full-price-table th:last-child { text-align: right; }
.full-price-table td {
  padding: 10px 18px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text);
  vertical-align: middle;
}
.full-price-table tbody tr:last-child td { border-bottom: none; }
.full-price-table tbody tr:hover td { background: var(--gray-50); }
.full-price-table td:last-child { text-align: right; }
/* Group header rows */
.full-price-table .tg-head td {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-bottom: none;
}
.full-price-table .tg-head td:hover { background: var(--navy) !important; }
/* Price cell */
.pc {
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

/* Work hours note */
.work-hours-note {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding: 20px 28px;
  background: linear-gradient(90deg, #0d1b3e08 0%, #e8732a0a 100%);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.wh-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 220px;
}
.wh-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.wh-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wh-item strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gray-500);
  font-weight: 700;
}
.wh-item span {
  font-size: 1rem;
  color: var(--navy);
}
.wh-divider {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Other routes (legacy, kept for compatibility) */
.other-routes {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.route-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}
.route-row:last-child { border-bottom: none; }
.route-row:hover { background: var(--gray-50); }
.route-name { font-weight: 600; color: var(--navy); }
.route-dist { font-size: 0.85rem; color: var(--gray-400); }
.route-price { font-weight: 700; color: var(--orange); font-size: 1.05rem; }

/* Compare table */
.compare-table-wrap {
  margin-top: 56px;
}
.compare-title {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.table-scroll { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text);
}
.compare-table td:first-child { text-align: left; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--gray-50); }
.tr-highlight td { background: #fff9f5; }
.compare-table small { font-weight: 400; color: var(--gray-400); }

/* Extra charges */
.extra-charges {
  margin-top: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.extra-title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.extra-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  gap: 12px;
}
.extra-name { font-size: 0.88rem; color: var(--gray-600); }
.extra-price { font-weight: 700; color: var(--orange); white-space: nowrap; }
.extra-note { font-size: 0.82rem; color: var(--gray-400); line-height: 1.5; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.services-section .section-label { color: var(--orange); }
.services-section .section-title { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(232,115,42,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.service-card--accent {
  background: rgba(232,115,42,.12);
  border-color: rgba(232,115,42,.3);
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--orange);
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { color: #ffb07a; }

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.order-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.order-info .section-title { color: var(--navy); margin-bottom: 24px; }
.order-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.order-perks li { font-size: 0.9rem; color: var(--gray-600); }
.order-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  transition: color var(--transition);
}
.order-phone-link:hover { color: var(--orange); }
.order-phone-link svg { color: var(--orange); }

/* Form */
.order-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-consent {
  margin-bottom: 20px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--gray-600);
}
.checkbox-label input { margin-top: 2px; accent-color: var(--orange); }
.checkbox-label a { color: var(--orange); text-decoration: underline; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}
.form-success.visible { display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 96px 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  background: var(--white);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.review-card--featured {
  background: var(--gray-50);
  border-color: var(--navy-light);
}
.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}
.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-role {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ============================================================
   BOARD SECTION
   ============================================================ */
.board-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.board-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.board-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.board-card--accent {
  background: var(--navy);
  border-color: var(--navy);
}
.board-card--accent .board-card__name { color: var(--white); }
.board-card--accent .board-card__code { color: rgba(255,255,255,.5); }
.board-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.board-card__name {
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.board-card__code {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.board-card__links {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.board-link {
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.board-link--dep {
  background: var(--orange);
  color: var(--white);
}
.board-link--dep:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.board-link--arr {
  background: var(--gray-100);
  color: var(--navy);
}
.board-link--arr:hover {
  background: var(--gray-200);
}
.board-card--accent .board-link--arr {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.board-card--accent .board-link--arr:hover {
  background: rgba(255,255,255,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 240px;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 32px; width: auto; object-fit: contain; }
.footer-logo span {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-about {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.footer-heading {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav li, .footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--orange); }
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-phone, .footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.footer-phone:hover, .footer-email:hover { color: var(--orange); }
.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.fab {
  position: fixed;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: all var(--transition);
  z-index: 900;
  color: var(--white);
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.3); }
.fab-phone {
  bottom: 90px;
  background: #25d366;
}
.fab-top {
  bottom: 24px;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
}
.fab-top.visible { opacity: 1; pointer-events: all; }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1100;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p {
  font-size: 0.84rem;
  color: rgba(255,255,255,.7);
  flex: 1;
}
.cookie-notice a { color: var(--orange); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--navy);
  padding: 32px 24px;
  gap: 20px;
  z-index: 999;
}
.nav-links.open a {
  font-size: 1.2rem;
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .order-inner { grid-template-columns: 1fr; }
  .order-info { max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr 1fr; }
  .extra-list { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-contact-block { display: none; }
  .burger { display: flex; }
}

@media (max-width: 700px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-phones { flex-direction: column; gap: 6px; }
  .cars-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 24px 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-title { font-size: 1rem; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .price-cards { grid-template-columns: 1fr; }
  .tab-label { min-width: 80px; font-size: 0.74rem; padding: 8px 8px; }
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  /* Таблицы маршрутов: скрываем столбец «Расстояние» */
  .full-price-table th:nth-child(2),
  .full-price-table td:nth-child(2) { display: none; }
  .full-price-table .tg-head td { padding: 7px 10px; }
  .full-price-table th,
  .full-price-table td { padding: 8px 10px; font-size: 0.8rem; }
  .full-price-table th { font-size: 0.72rem; letter-spacing: .01em; }
  /* Сравнительная таблица: скрываем доп. текст в ячейках */
  .compare-table th small,
  .compare-table td small { display: none; }
  .compare-table th,
  .compare-table td { padding: 9px 8px; font-size: 0.75rem; }
}
