/*
Theme Name: NextAirBus PRO v15
Theme URI: https://nextairbus.com/
Author: NextAirBus
Description: Багатомовна тема для пасажирських перевезень Чернівці ↔ Сучава, Ясси, Бухарест, Кишинів — Modern Clean Design
Version: 16.4.3
License: GNU General Public License v2 or later
Text Domain: nextairbus
Tags: transport, multilingual, booking, responsive, clean, modern
*/

/* ===== CSS VARIABLES вЂ” Modern Clean ===== */
:root {
  /* Brand Colors */
  --primary:       #0daf4f;
  --primary-dark:  #087a37;
  --primary-light: #20c76a;
  --primary-glow:  rgba(13, 175, 79, 0.15);
  --accent:        #e6f9ee;
  
  /* Surface */
  --surface:       #ffffff;
  --surface-alt:   #f9fcfb;
  --surface-card:  #ffffff;
  
  /* Text */
  --text:          #1c2b24;
  --text-muted:    #5e7468;
  --text-inverse:  #ffffff;
  --text-link:     var(--primary);
  
  /* Grays */
  --gray-50:   #fafdfb;
  --gray-100:  #f6faf8;
  --gray-200:  #e8f1ed;
  --gray-300:  #c5d9d0;
  --gray-400:  #9fb5a8;
  --gray-600:  #5e7468;
  --gray-800:  #1c2b24;
  
  /* Status */
  --success: #0daf4f;
  --warning: #c9751a;
  --danger:  #d93025;
  --info:    #18a558;
  
  /* UI Elements */
  --border:        #d7e7df;
  --border-hover:  #b5cdc0;
  --border-focus:  var(--primary);
  
  --shadow-sm:  0 2px 8px rgba(13, 175, 79, 0.06);
  --shadow-md:  0 8px 24px rgba(13, 175, 79, 0.12);
  --shadow-lg:  0 16px 48px rgba(13, 175, 79, 0.16);
  --shadow-hover: 0 20px 60px rgba(13, 175, 79, 0.2);
  
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  
  /* Animation */
  --transition:      0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 76px;
  --section-gap: 88px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--text-link);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

::selection {
  background: var(--primary);
  color: white;
}

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

.section {
  padding: var(--section-gap) 0;
}

.section-sm {
  padding: 56px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: var(--radius-pill);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto 56px;
  max-width: 600px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.3) 40%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s, transform 0.6s;
  transform: translateX(-100%);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn-primary {
  background: linear-gradient(270deg, var(--primary), #00d4aa, var(--primary-light), var(--primary));
  background-size: 600% 600%;
  animation: btnGradientFlow 4s ease infinite;
  color: var(--text-inverse);
  box-shadow: 0 4px 20px rgba(13,175,79,0.35);
  border: none;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(13,175,79,0.5);
}

.btn-primary:active { transform: translateY(0); }

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: var(--surface);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; display: flex; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== LOGO ===== */
.site-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition), transform var(--transition);
}

.site-logo:hover img { opacity: 0.9; transform: scale(1.02); }

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .site-logo img { height: 36px; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--primary);
  color: var(--text-inverse);
  padding: 14px 28px;
  z-index: 2000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--transition), opacity var(--transition);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* Visible only when a keyboard user focuses it */
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

/* ===== HEADER ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

#site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: var(--header-height); */
  gap: 24px;

  padding-top: 10px;
  padding-bottom: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-600);
  transition: all var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.current::after {
  transform: translateX(-50%) scaleX(1);
}

.site-nav a:hover,
.site-nav a.current {
  background: var(--accent);
  color: var(--primary);
}

.site-nav a[aria-current="page"] {
  background: var(--primary);
  color: var(--text-inverse);
}

.site-nav a[aria-current="page"]::after { display: none; }

/* Language Switcher */
.lang-switcher-container {
  position: relative;
  display: inline-block;
  margin: 0 12px;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--gray-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}

.lang-current:hover {
  border-color: var(--primary);
  background: var(--surface);
}

.lang-current::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: var(--transition);
  margin-bottom: 2px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 90px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-slow);
  z-index: 999;
}

.lang-dropdown a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: var(--transition-fast);
}

.lang-dropdown a:hover { background: var(--gray-100); color: var(--primary); }
.lang-dropdown a.active { background: var(--primary); color: var(--text-inverse); pointer-events: none; }

.lang-switcher-container:hover .lang-dropdown,
.lang-switcher-container.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher-container:hover .lang-current::after,
.lang-switcher-container.open .lang-current::after {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}

.header-cta .btn { padding: 12px 28px; font-size: 0.98rem; }

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover { background: var(--gray-100); }

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
  margin: 0 auto;
}

.mobile-open .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-open .menu-toggle span:nth-child(2) { opacity: 0; }
.mobile-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
@keyframes nab-hero-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  background: linear-gradient(-45deg, #0daf4f, #0a913f, #0b8038, #0c9a46, #078a3b, #0a913f, #0daf4f);
  background-size: 400% 400%;
  animation: nab-hero-shift 18s ease infinite;
  color: var(--text-inverse);
  padding: 110px 0 96px;
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; background: linear-gradient(135deg, #0daf4f 0%, #0a913f 55%, #087c38 100%); }
}

/* ============================================================
   HERO ROAD — напівпрозора анімація дороги (ефект руху вперед)
============================================================ */
.hero-road {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 200%;
  height: 68%;
  transform: translateX(-50%) perspective(360px) rotateX(64deg);
  transform-origin: bottom center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  filter: blur(0.6px);
  -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 88%);
  mask-image: linear-gradient(to top, #000 8%, transparent 88%);
}
/* Бічні лінії розмітки дороги */
.hero-road::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 33%, rgba(255,255,255,0.28) 33.5%, transparent 34.2%),
    linear-gradient(90deg, transparent 65.8%, rgba(255,255,255,0.28) 66.5%, transparent 67%);
}
/* Центральна пунктирна лінія, що рухається на глядача */
.hero-road::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -60%;
  width: 4.5%;
  height: 220%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom,
    rgba(255,255,255,0.6) 0 16px,
    transparent 16px 44px);
  background-size: 100% 44px;
  animation: nab-road-move 1.1s linear infinite;
}
@keyframes nab-road-move {
  from { background-position-y: 0; }
  to   { background-position-y: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-road::after { animation: none; }
}

/* Preferred contact-method field — smooth reveal after phone is entered */
.nab-contact-method[hidden] { display: none; }
.nab-contact-method.nab-cm-show {
  animation: nab-cm-reveal 0.35s ease;
}
@keyframes nab-cm-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(13, 175, 79, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(13, 175, 79, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-inverse);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero h1 { color: var(--text-inverse); margin-bottom: 24px; }
.hero h1 span { color: var(--primary-light); }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.hero-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.hero-consult {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.hero-social-icons {
  display: flex;
  gap: 12px;
}

.hero-icon-link {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.hero-icon-link:hover {
  transform: translateY(-4px) scale(1.08);
  color: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-icon-link:nth-child(1):hover { background: #229ED9; border-color: #229ED9; }
.hero-icon-link:nth-child(2):hover { background: #7360f2; border-color: #7360f2; }
.hero-icon-link:nth-child(3):hover { background: #25D366; border-color: #25D366; }

.hero-icon-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
/* PNG icons from WP media */
.hero-icon-link img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

/* Hero airport transfer info block */
.hero-flight-info {
  margin-top: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  backdrop-filter: blur(6px);
  width: 100%;
}
.hero-flight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 6px;
}
.hero-flight-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin: 0 0 10px;
  line-height: 1.5;
}
.hero-schedule-mini {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-schedule-mini span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 3px 9px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  font-variant-numeric: tabular-nums;
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  width: fit-content;
}
.hero-call-btn:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-2px);
}
.hero-call-btn svg { flex-shrink: 0; }

/* LEGACY — keep for non-hero usage */
.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-social-link:hover {
  background: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-2px);
}

.hero-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-inverse);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===== BOOKING CARD ===== */
.booking-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  width: 100%;
  border: 1px solid var(--border);
}

.booking-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Forms */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group label span { color: var(--danger); margin-left: 3px; }

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text);
  background: var(--gray-50);
  transition: all var(--transition);
  appearance: none;
}

.form-control:hover { border-color: var(--border-hover); }

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-control.error { border-color: var(--danger); background: #fef2f2; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e7468' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking-card .btn { margin-top: 10px; }

/* Route Selector with swap */
.route-selector-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.route-selector-wrap .form-group { flex: 1; margin-bottom: 0; }

.route-swap-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  margin-bottom: 0;
}

.route-swap-btn:hover {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
  transform: rotate(180deg);
}

/* Success Message */
.form-success {
  display: none;
  background: var(--accent);
  border: 1px solid var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== ROUTES ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) { .routes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .routes-grid { grid-template-columns: 1fr; } }

.route-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.route-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 18px 20px;
  color: var(--text-inverse);
}

.route-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}

.route-city { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.route-arrow { color: rgba(255, 255, 255, 0.7); font-size: 1.4rem; flex-shrink: 0; }

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.route-meta span img.emoji {
  width: 14px;
  height: 14px;
}

.route-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}

.route-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.route-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.route-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Іконна сітка amenities — 3 в ряд */
.route-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.route-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--gray-100, #f5f5f5);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 4px 8px;
  text-align: center;
}
.ra-icon {
  font-size: 1.3rem;
  line-height: 1;
}
.ra-icon img.emoji {
  width: 20px;
  height: 20px;
}
.ra-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.route-card .btn {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

/* ===== SCHEDULE ===== */
.schedule-section { background: var(--surface-alt); }

.schedule-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.schedule-tab {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.schedule-tab.active,
.schedule-tab:hover {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.schedule-table-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.schedule-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table thead tr { background: var(--gray-800); color: var(--text-inverse); }

.schedule-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}

.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--accent); }

.schedule-table .time-dep {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.schedule-table .time-arr { font-weight: 600; color: var(--text); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.status-available { background: var(--accent); color: var(--primary-dark); }
.status-few { background: #fff7ed; color: var(--warning); }
.status-full { background: #fef2f2; color: var(--danger); }
.seats-count { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }

/* ===== CONTACT BAR (under schedule) ===== */
.contact-bar {
  text-align: center;
  padding: 40px 0 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-bar p {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-bar-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.cb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  transition: all var(--transition);
}
.cb-icon:hover { transform: translateY(-3px); }
.cb-icon:nth-child(1):hover { background: #229ED9; color: white; border-color: #229ED9; }
.cb-icon:nth-child(2):hover { background: #7360f2; color: white; border-color: #7360f2; }
.cb-icon:nth-child(3):hover { background: #25D366; color: white; border-color: #25D366; }

.cb-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cb-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.cb-call-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.cb-call-btn svg { flex-shrink: 0; }

/* ===== FEATURES вЂ” 6 in a row on PC ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  transition: all var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--text-inverse);
}

.feature-card h4 { margin-bottom: 8px; color: var(--gray-800); font-size: 0.95rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== FULL BOOKING FORM ===== */
.booking-section { background: var(--surface-alt); }

.booking-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.booking-form-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 32px 40px;
  color: var(--text-inverse);
  text-align: center;
}

.booking-form-header h2 { color: var(--text-inverse); margin-bottom: 8px; font-size: 1.8rem; }
.booking-form-header p { color: rgba(255, 255, 255, 0.9); font-size: 1rem; }
.booking-form-body { padding: 40px; }
.booking-form-body .form-group { margin-bottom: 24px; }

.booking-form-body label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.booking-form-body label span { color: var(--danger); margin-left: 4px; }

.booking-form-footer {
  padding: 24px 40px 32px;
  background: var(--gray-100);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.booking-total {
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-total strong {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 800;
}

.passengers-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 10px;
  background: var(--surface);
  width: 100%;
}

.passengers-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.passengers-btn:hover { background: var(--primary); color: var(--text-inverse); border-color: var(--primary); }
.passengers-btn:active { transform: scale(0.95); }

#passengers-count {
  flex: 1;
  font-weight: 800;
  font-size: 1.25rem;
  text-align: center;
  color: var(--text);
}

/* ===== REVIEWS вЂ” Stories Slider ===== */
.reviews-section { overflow: hidden; }

.stories-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.stories-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 10px 0;
}

.story-card {
  flex: 0 0 calc((100% - 64px) / 5);
  aspect-ratio: 9/16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  background: linear-gradient(135deg, var(--primary-dark), var(--gray-800));
}

.story-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.story-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.story-card-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.story-card-text {
  color: white;
  font-size: 0.8rem;
  line-height: 1.5;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.story-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 0.7rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.story-card-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
}

.story-card-route {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.stories-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.stories-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.stories-nav button:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.stories-nav button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-inverse);
  padding: 88px 0;
  text-align: center;
}

.cta-banner h2 { color: var(--text-inverse); margin-bottom: 16px; }

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-item:hover {
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value { font-weight: 600; color: var(--gray-800); font-size: 1.05rem; }
.contact-value a:hover { color: var(--primary); }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  border: 1px solid var(--border);
  text-align: center;
  padding: 24px;
}

/* ===== FOOTER вЂ” Redesigned ===== */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #111b14 40%, var(--primary-dark) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .site-logo {
  color: var(--text-inverse);
  margin-bottom: 20px;
}

.footer-brand .site-logo img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.8);
}

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

.footer-social a.tg:hover { background: #0088cc; color: white; }
.footer-social a.viber:hover { background: #7360f2; color: white; }
.footer-social a.wa:hover { background: #25D366; color: white; }
.footer-social a.phone:hover { background: var(--primary); color: white; }

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

/* ===== Instagram icon (brand-gradient SVG, keeps its own colors) ===== */
.footer-social a.ig svg { width: 26px; height: 26px; fill: none; }
.footer-social a.ig:hover { background: rgba(225, 48, 108, 0.85); }

.cb-icon.cb-ig svg { width: 26px; height: 26px; fill: none; }
.cb-icon.cb-ig:hover { background: #fff; border-color: #E1306C; }

.hcb-app.hcb-ig svg { width: 46px; height: 46px; display: block; }

.footer-col h5 {
  color: var(--text-inverse);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}

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

.footer-col ul a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
  display: inline-block;
}

.footer-col ul a:hover { color: var(--text-inverse); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .lang-switcher-container { margin: 0; }
.footer-bottom .lang-current { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--text-inverse); }
.footer-bottom .lang-dropdown { background: var(--gray-800); border-color: rgba(255,255,255,0.15); }

/* ===== PAGE CONTENT (non-homepage) ===== */
.page-content {
  padding: 48px 0 88px;
  min-height: 50vh;
}

.page-content .container {
  max-width: 900px;
}

.page-content h1 {
  margin-bottom: 32px;
  color: var(--primary);
}

.page-content .entry-content {
  line-height: 1.8;
  font-size: 1.05rem;
}

.page-content .entry-content p { margin-bottom: 1.2em; }
.page-content .entry-content h2 { margin: 1.5em 0 0.5em; }
.page-content .entry-content h3 { margin: 1.2em 0 0.4em; }
.page-content .entry-content img { border-radius: var(--radius); margin: 1em 0; }
.page-content .entry-content ul,
.page-content .entry-content ol { margin: 1em 0; padding-left: 1.5em; list-style: disc; }
.page-content .entry-content a { color: var(--primary); text-decoration: underline; }

/* Blog listing */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.post-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-card-thumb {
  aspect-ratio: 16/9;
  background: var(--gray-200);
  overflow: hidden;
}

.post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 24px;
}

.post-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.post-card-body h3 {
  margin-bottom: 12px;
}

.post-card-body h3 a { color: var(--text); }
.post-card-body h3 a:hover { color: var(--primary); }

.post-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== BLOG SINGLE POST ===== */

/* Hero */
.post-hero {
  background: linear-gradient(150deg, #0d2818 0%, #1a4a2a 55%, #0d2818 100%);
  color: #fff;
  padding: 52px 0 48px;
}
.post-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.post-breadcrumbs a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.post-breadcrumbs a:hover { color: #fff; }
.post-category-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.post-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  max-width: 760px;
  margin-bottom: 14px;
}
.post-hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 20px;
}
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* Layout */
.post-body-wrap {
  padding: 52px 0 80px;
  background: var(--gray-50, #fafafa);
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* Article */
.post-article {
  background: var(--surface, #fff);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.post-entry {
  font-size: 1.04rem;
  line-height: 1.82;
  color: var(--text, #1a1a1a);
}
.post-entry p { margin-bottom: 1.25em; }
.post-entry h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 2em 0 0.5em;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-100, #f0f0f0);
}
.post-entry h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5em 0 0.4em;
  color: var(--text);
}
.post-entry ul, .post-entry ol {
  margin: 0.8em 0 1.2em 1.4em;
}
.post-entry ul li, .post-entry ol li {
  margin-bottom: 0.4em;
  line-height: 1.65;
}
.post-entry a {
  color: var(--primary, #228B54);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-entry a:hover { opacity: 0.8; }
.post-entry table {
  border-radius: 10px;
  overflow: hidden;
  font-size: 0.9rem;
}
.post-entry strong { color: var(--text); }

/* Lead paragraph */
.post-entry .nab-lead {
  font-size: 1.12rem;
  color: var(--text-muted, #555);
  line-height: 1.75;
  margin-bottom: 2em;
  padding-left: 16px;
  border-left: 3px solid var(--primary, #228B54);
}

/* Info box */
.nab-info-box {
  background: #f0fff6;
  border: 1px solid #b3e8c8;
  border-left: 4px solid var(--primary, #228B54);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 1.5em 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #1a3a2a;
}

/* Blog CTA block */
.nab-blog-cta {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #0d2818, #1a4a2a);
  color: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  margin: 2em 0;
  flex-wrap: wrap;
}
.nab-blog-cta-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.nab-blog-cta-body {
  flex: 1;
  min-width: 200px;
}
.nab-blog-cta-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.nab-blog-cta-body span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.nab-blog-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin-top: 14px;
}
.nab-blog-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nab-blog-cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.nab-cta-phone { background: rgba(255,255,255,0.15); color: #fff; }
.nab-cta-tg    { background: #229ED9; color: #fff; }
.nab-cta-wa    { background: #25D366; color: #fff; }

/* Related links in content */
.nab-blog-related {
  background: var(--gray-50, #fafafa);
  border: 1px solid var(--border, #e8e8e8);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 2em 0;
}
.nab-blog-related-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
}
.nab-blog-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nab-blog-related-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--primary, #228B54);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.15s;
}
.nab-blog-related-list a::before { content: '→'; font-size: 0.8em; }
.nab-blog-related-list a:hover { gap: 12px; }

/* Share row */
.post-share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border, #e8e8e8);
  margin-top: 36px;
  flex-wrap: wrap;
}
.post-share-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.post-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.post-share-btn:hover { opacity: 0.82; }
.post-share-tg { background: #e6f4fd; color: #229ED9; }
.post-share-wa { background: #e6faf0; color: #25D366; }
.post-share-fb { background: #e8edf8; color: #1877F2; }

/* Post nav */
.post-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px solid var(--border, #e8e8e8);
  padding-top: 24px;
}
.post-nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border, #e8e8e8);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.post-nav-item:hover {
  border-color: var(--primary, #228B54);
  box-shadow: 0 2px 12px rgba(34,139,84,0.1);
}
.post-nav-arrow {
  font-size: 1.2rem;
  color: var(--primary, #228B54);
  flex-shrink: 0;
}
.post-nav-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.post-nav-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.post-nav-text {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-widget {
  background: var(--surface, #fff);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.post-widget h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.post-widget-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.post-widget-booking p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.post-widget-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.post-widget-link:hover { opacity: 0.82; }
.post-widget-tg { background: #e6f4fd; color: #229ED9; }
.post-widget-wa { background: #e6faf0; color: #25D366; }

/* Related list (sidebar) */
.post-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-related-list li a {
  font-size: 0.86rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border, #eee);
  transition: color 0.2s;
}
.post-related-list li:last-child a { border-bottom: none; padding-bottom: 0; }
.post-related-list li a:hover { color: var(--primary, #228B54); }

/* Route facts widget */
.post-widget-route {
  background: linear-gradient(135deg, #0d2818, #1a4a2a);
  color: #fff;
}
.post-widget-route h3 { color: #fff; }
.post-route-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.post-route-flag { font-size: 1.6rem; }
.post-route-arrow { font-size: 1rem; color: rgba(255,255,255,0.5); }
.post-route-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-route-facts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.post-route-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.post-route-facts strong { font-size: 1rem; color: #6ef4a8; font-weight: 800; }
.post-route-facts span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* Responsive */
@media (max-width: 960px) {
  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    position: static;
    order: -1;
  }
  .post-widget-related { display: none; }
}
@media (max-width: 640px) {
  .post-hero { padding: 36px 0 32px; }
  .post-hero-title { font-size: 1.6rem; }
  .post-article { padding: 24px 18px; }
  .post-nav { flex-direction: column; }
  .nab-blog-cta { flex-direction: column; }
}

.pagination-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-wrap a,
.pagination-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: all var(--transition);
}

.pagination-wrap .current { background: var(--primary); color: white; border-color: var(--primary); }
.pagination-wrap a:hover { border-color: var(--primary); color: var(--primary); }

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

.fade-up { opacity: 0; animation: fadeUp 0.6s var(--transition) both; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-content { align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-social { align-items: center; text-align: center; }
  .hero-social-icons { justify-content: center; }
  .hero-call-btn { margin: 0 auto; }
  .hero-consult { text-align: center; }
  .hero-stats { justify-content: center; }
  .booking-card { max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .map-placeholder { min-height: 320px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .story-card { flex: 0 0 calc((100% - 32px) / 3); }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  
  .mobile-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 32px;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
  }
  
  .mobile-open .site-nav a {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 1.05rem;
  }
  
  .mobile-open .site-nav a::after { display: none; }
  
  .mobile-open #site-header .lang-switcher-container {
    display: block;
    margin: 16px auto 0;
    text-align: center;
    width: fit-content;
  }
  
  .section { padding: 64px 0; }
  .routes-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand .site-logo { justify-content: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .booking-form-body { padding: 32px 28px; }
  .booking-form-body .form-row { grid-template-columns: 1fr; }
  .booking-form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 28px;
  }
  .booking-total { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  
  .schedule-tab {
    width: 100%;
    text-align: center;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Stories: 1 per view on mobile */
  .story-card {
    flex: 0 0 calc(100% - 16px);
  }
  
  .route-selector-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  
  .route-swap-btn {
    align-self: center;
    transform: rotate(90deg);
  }
  
  .route-swap-btn:hover {
    transform: rotate(270deg);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
  .route-card-header { padding: 20px; }
  .route-card-body { padding: 24px; }
  .route-price { font-size: 1.5rem; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .section-title::after { width: 50px; }

  /* Compact mobile hero banner — tighter, more modern, everything visible above the fold */
  .hero { padding: 64px 0 40px; }
  .hero-display { margin-bottom: 14px; }
  .hero-headline-big { font-size: clamp(2rem, 8.5vw, 2.7rem); line-height: 0.98; margin-bottom: 10px; }
  .hero-headline-sub { font-size: 0.72rem; letter-spacing: 0.12em; }
  .hero-desc { margin: 10px 0 16px; font-size: 0.95rem; }
  .hero-cities-row { gap: 8px; }
  .hero-overline { margin-bottom: 12px; }
  .hero-actions { gap: 10px; }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* ===== v4.0 additions ===== */

/* Field error highlight */
.field-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

.form-error-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: min(520px, 92vw);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

/* Total price display */
.total-price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--accent, #e6f9ee);
  border-radius: var(--radius, 12px);
  font-size: 0.95rem;
}
.total-price-wrap strong {
  font-size: 1.25rem;
  color: var(--primary, #0daf4f);
  font-weight: 800;
}



/* ===== v7.0 — NEOMORPHIC CONTACTS ===== */
.contacts-neo {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contacts-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.neo-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--radius-lg, 16px);
  box-shadow: 8px 8px 20px rgba(0,0,0,0.06), -6px -6px 16px rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.neo-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 28px rgba(0,0,0,0.1), -8px -8px 20px rgba(255,255,255,0.9);
}
.neo-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--primary);
}
.neo-icon svg { width: 22px; height: 22px; }
.neo-icon-phone { background: #e8f8ef; color: #0daf4f; }
.neo-icon-mail { background: #eef3ff; color: #4a6cf7; }
.neo-icon-pin { background: #fff3e8; color: #f59e0b; }
.neo-icon-send { background: #e8f4fd; color: #229ED9; }
.neo-icon-msg { background: #f0e8fd; color: #7360f2; }
.neo-contact-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 2px;
}
.neo-contact-value { font-weight: 600; font-size: 0.95rem; }
.neo-contact-value a { color: var(--text); }
.neo-contact-value a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .contacts-neo { grid-template-columns: 1fr; }
}

/* ===== ABOUT US — SEO Section ===== */
.about-section { background: var(--gray-100); }
.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.about-text p { margin-bottom: 16px; }
.about-text h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text);
}
.about-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.about-expandable.expanded {
  max-height: 3000px;
}
.about-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 28px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}
.about-toggle-btn:hover {
  background: var(--primary);
  color: white;
}
.about-toggle-btn.active {
  background: var(--primary);
  color: white;
}

/* ===== THANK YOU PAGE ===== */
.ty-section {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: linear-gradient(160deg, #f0faf4 0%, #e8f5f0 50%, #f5f9ff 100%);
}
.ty-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 52px 48px 44px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  border: 1px solid rgba(34,139,84,0.08);
}

/* Animated check SVG */
.ty-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}
.ty-check svg { width: 72px; height: 72px; }
.ty-check-circle {
  stroke: var(--primary, #228B54);
  fill: none;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: ty-circle 0.5s ease-out 0.1s forwards;
}
.ty-check-mark {
  stroke: var(--primary, #228B54);
  fill: none;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: ty-check-draw 0.35s ease-out 0.6s forwards;
}
@keyframes ty-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes ty-check-draw {
  to { stroke-dashoffset: 0; }
}

.ty-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.ty-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps */
.ty-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 36px;
  padding: 24px 20px;
  background: var(--gray-100, #f7f7f7);
  border-radius: 16px;
}
.ty-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.ty-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary, #228B54);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ty-step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ty-step-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.ty-step-text span {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.ty-step-arrow {
  font-size: 1.1rem;
  color: var(--primary, #228B54);
  font-weight: 700;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Contacts */
.ty-contacts {
  border-top: 1px solid var(--border, #e8e8e8);
  padding-top: 28px;
  margin-bottom: 28px;
}
.ty-contacts-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ty-contacts-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ty-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary, #228B54);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ty-phone-btn:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }
.ty-messenger-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.ty-msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.ty-msg-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.ty-msg-tg { background: #e8f4ff; color: #0088cc; }
.ty-msg-vb { background: #f3e8ff; color: #7360f2; }
.ty-msg-wa { background: #e8f8ec; color: #25d366; }

.ty-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .ty-card { padding: 36px 22px 32px; }
  .ty-title { font-size: 1.6rem; }
  .ty-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .ty-step { flex-direction: row; text-align: left; gap: 12px; }
  .ty-step-arrow { display: none; }
}

/* ===== INDIVIDUAL TRANSFER PAGE ===== */
.itr-hero {
  padding: 72px 0 60px;
  background: linear-gradient(150deg, #0f2e1a 0%, #1a4a2a 60%, #0f2e1a 100%);
  color: #fff;
  overflow: hidden;
}
.itr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.itr-hero-text .section-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.itr-hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.itr-hero-text h1 span {
  color: var(--primary-light, #5fd98a);
}
.itr-hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 28px;
}
.itr-hero-text .btn-primary {
  background: var(--primary, #228B54);
  border-color: var(--primary, #228B54);
  font-size: 1rem;
}

/* Contact bar below hero button */
.itr-contact-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.itr-cb-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.itr-cb-phone:hover { color: #fff; }
.itr-cb-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.25);
}
.itr-cb-apps {
  display: flex;
  align-items: center;
  gap: 8px;
}
.itr-cb-app {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}
.itr-cb-app:hover { background: rgba(255,255,255,0.22); transform: scale(1.08); }
.itr-cb-app img { display: block; }

/* Hero card (features) */
.itr-hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px 26px;
  backdrop-filter: blur(8px);
}
.itr-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.itr-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.itr-fi {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.itr-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1px;
}
.itr-feature p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.4;
}

/* Routes grid */
.itr-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.itr-route-card {
  background: var(--surface);
  border: 1px solid var(--border, #e8e8e8);
  border-radius: 14px;
  padding: 20px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.itr-route-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}
.itr-rc-icon { font-size: 1.6rem; margin-bottom: 10px; }
.itr-rc-cities {
  font-size: 0.87rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.itr-rc-cities strong { color: var(--text); font-weight: 700; }
.itr-rc-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.itr-rc-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--gray-100, #f5f5f5);
  padding: 3px 9px;
  border-radius: 50px;
}

/* Who-for grid */
.itr-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.itr-who-card {
  background: var(--surface);
  border: 1px solid var(--border, #e8e8e8);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.itr-who-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.itr-who-icon { font-size: 2rem; margin-bottom: 12px; }
.itr-who-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.itr-who-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Form */
.itr-form-wrap {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.itr-form-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border, #e8e8e8);
}
.itr-form-contacts span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.itr-form-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive */
@media (max-width: 960px) {
  .itr-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .itr-hero-text h1 { font-size: 2rem; }
  .itr-routes-grid { grid-template-columns: repeat(2, 1fr); }
  .itr-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .itr-hero { padding: 48px 0 40px; }
  .itr-hero-text h1 { font-size: 1.7rem; }
  .itr-routes-grid { grid-template-columns: 1fr; }
  .itr-who-grid { grid-template-columns: 1fr; }
  .itr-form-wrap { padding: 24px 18px; }
}

/* ===== SEO: breadcrumbs + landing pages ===== */
.nab-breadcrumbs {
  background: var(--gray-100, #f5f5f5);
  border-bottom: 1px solid var(--border, #e8e8e8);
  font-size: 0.82rem;
  padding: 10px 0;
}
.nab-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
}
.nab-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nab-breadcrumbs li:not(:last-child)::after {
  content: '›';
  opacity: 0.45;
  font-size: 1rem;
  line-height: 1;
}
.nab-breadcrumbs li:last-child {
  color: var(--text, #1a1a1a);
  font-weight: 600;
}
.nab-breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  transition: color .15s;
}
.nab-breadcrumbs a:hover {
  color: var(--primary-dark, #006b30);
  text-decoration: underline;
}
.route-landing {
  padding-bottom: 48px;
}
.route-landing-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 12px 0;
}
.route-landing-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.route-landing-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.route-stat {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.route-stat strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text);
}
.route-stat span {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.route-landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.route-related {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.nab-seo-links {
  padding: 40px 0 0;
}
.nab-seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 16px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.nab-seo-links-grid a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
}
.nab-seo-links-grid a:hover {
  color: #fff;
  text-decoration: underline;
}
.nab-seo-links .section-title {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.route-related .nab-seo-links-grid a {
  color: var(--primary);
}

/* ===== v13 NEW STYLES ===== */

/* Seats urgency / scarcity counter */
.seats-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(234,88,12,0.1), rgba(239,68,68,0.08));
  border: 1px solid rgba(234,88,12,0.28);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #9a3412;
  margin-bottom: 14px;
  animation: seats-pulse 2.5s ease-in-out infinite;
}
.seats-urgency strong {
  font-weight: 800;
  font-size: 1.1rem;
  color: #c2410c;
}
@keyframes seats-pulse {
  0%, 100% { border-color: rgba(234,88,12,0.28); }
  50%       { border-color: rgba(234,88,12,0.55); box-shadow: 0 0 0 3px rgba(234,88,12,0.07); }
}

/* Footer v13 — Neomorphism dark */
.site-footer {
  background: #080a09;
  color: rgba(255,255,255,0.78);
  padding: 64px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,175,79,0.4) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin: 14px 0 24px;
  line-height: 1.7;
}
/* Footer social icons — PNG or SVG */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(13,175,79,0.5);
  background: rgba(13,175,79,0.15);
  color: #fff;
  box-shadow: 0 6px 20px rgba(13,175,79,0.25);
}
.footer-social a.tg:hover    { background: rgba(34,158,217,0.2); border-color: #229ED9; }
.footer-social a.viber:hover { background: rgba(115,96,242,0.2); border-color: #7360f2; }
.footer-social a.wa:hover    { background: rgba(37,211,102,0.2); border-color: #25D366; }
.footer-social a.phone:hover { background: rgba(13,175,79,0.2);  border-color: var(--primary); }
.footer-social a svg  { width: 20px; height: 20px; fill: currentColor; }
.footer-social a img  { width: 24px; height: 24px; object-fit: contain; display: block; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--primary-light); }

/* Footer SEO links */
.nab-seo-links { padding: 36px 0 0; }
.nab-seo-links .section-title { color: rgba(255,255,255,0.35); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0; }
.nab-seo-links .section-title::after { display: none; }
.nab-seo-links-grid { display: flex; flex-wrap: wrap; gap: 8px 16px; list-style: none; padding: 12px 0 0; margin: 0; }
.nab-seo-links-grid a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.nab-seo-links-grid a:hover { color: var(--primary-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0;
}

/* About section FAQ below */
.about-faq {
  max-width: 800px;
  margin: 48px auto 0;
}
.about-faq h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.about-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.about-faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  cursor: default;
}
.about-faq-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Mobile: compact form */
@media (max-width: 768px) {
  .form-group { margin-bottom: 14px; }
  .form-control { padding: 11px 14px; font-size: 0.95rem; }
  .form-group label { font-size: 0.78rem; margin-bottom: 5px; }
  .booking-card { padding: 20px; }
  .booking-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
  .booking-form-body { padding: 20px 16px; }
  .hero-flight-info { padding: 12px 14px; }
  .hero-schedule-mini span { padding: 2px 8px; font-size: 0.75rem; }
  .hero-icon-link { width: 52px; height: 52px; border-radius: 14px; }
  .hero-icon-link img { width: 28px; height: 28px; }
  .hero-icon-link svg { width: 24px; height: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { justify-content: flex-start; }
}

/* Blog single.php styles */
.single-post-article {
  max-width: 780px;
  margin: 0 auto;
}
.post-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.post-cat-badge {
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
}
.post-cat-badge:hover { background: var(--primary); color: #fff; }
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.post-content h2, .post-content h3 {
  margin: 2em 0 0.75em;
  color: var(--text);
  font-family: var(--font-display);
}
.post-content p { margin-bottom: 1.4em; }
.post-content a { color: var(--primary); text-decoration: underline; }
.post-content ul, .post-content ol { padding-left: 1.6em; margin-bottom: 1.4em; }
.post-content li { margin-bottom: 0.5em; }
.post-content img { border-radius: var(--radius-lg); max-width: 100%; height: auto; }
.post-content blockquote {
  border-left: 4px solid var(--primary);
  margin: 2em 0;
  padding: 16px 24px;
  background: var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
}
.post-thumbnail-wrap { margin-bottom: 32px; border-radius: var(--radius-xl); overflow: hidden; }
.post-thumbnail-wrap img { width: 100%; height: auto; display: block; }

/* Archive grid */
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.blog-card-thumb { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }
.blog-card-read { color: var(--primary); font-weight: 600; text-decoration: none; }
.blog-card-read:hover { text-decoration: underline; }

/* Post related articles */
.post-related { margin-top: 56px; padding-top: 40px; border-top: 2px solid var(--border); }
.post-related-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }

/* ============================================================
   HERO DISPLAY — two-line edge-to-edge headline
============================================================ */
.hero-display {
  margin-bottom: 22px;
}

.hero-headline-big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: #fff;
  margin: 0 0 16px;
  white-space: normal;
}

.hero-headline-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-sub-dot {
  color: var(--primary-light);
  opacity: 0.7;
}

/* ============================================================
   HERO SOCIAL BLOCK — icons + call button aligned
============================================================ */
.hero-social-block {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

/* Icons: image fills the button completely, no inner gap */
.hero-icon-link {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  padding: 0 !important;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.18) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  flex-shrink: 0;
}
.hero-icon-link img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 14px;
  display: block;
}
.hero-icon-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
}
.hero-social-icons {
  display: flex;
  gap: 10px;
}

/* Call button: same width as icons row, same border-radius */
.hero-call-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  padding: 10px 14px !important;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}
.hero-call-btn:hover {
  background: rgba(255,255,255,0.18) !important;
  transform: translateY(-1px);
}

/* ============================================================
   ROUTE SCHEDULE STRIP
============================================================ */
.route-schedule-strip {
  margin-bottom: 16px;
}
.route-schedule-range {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.rsr-time {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.rsr-line {
  flex: 1;
  position: relative;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rsr-freq {
  background: var(--surface);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0 6px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.route-schedule-dots {
  display: flex;
  gap: 0;
  justify-content: space-between;
  padding: 0 2px;
}
.rsd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0.5;
  flex-shrink: 0;
}
.rsd-dot:first-child,
.rsd-dot:last-child {
  opacity: 1;
  background: var(--primary);
  width: 10px;
  height: 10px;
}

/* ============================================================
   BOOKING CARD — compact height
============================================================ */
.booking-card { padding: 22px !important; }
.booking-card h3 { font-size: 1.05rem !important; margin-bottom: 14px !important; }
.booking-card .form-group { margin-bottom: 11px !important; }
.booking-card .form-control { padding: 9px 12px !important; font-size: 0.88rem !important; }
.booking-card .form-group label { font-size: 0.75rem !important; margin-bottom: 4px !important; }
.booking-card .route-selector-wrap { margin-bottom: 12px !important; }
.booking-card .form-row { gap: 10px; margin-bottom: 0; }
.booking-card .total-price-wrap { margin-bottom: 10px !important; font-size: 0.88rem; }

/* ============================================================
   FAQ SECTION (standalone, id=faq)
============================================================ */
.faq-section { background: var(--gray-100); }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.25s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding-bottom: 0;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   SCARCITY: seats-pulse animation
============================================================ */
@keyframes seats-pulse-anim {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.08); }
  60%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}
.seats-pulse { animation: seats-pulse-anim 0.8s ease; }

/* ============================================================
   HERO OVERLINE — flag + route label + badge
============================================================ */
.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  backdrop-filter: blur(6px);
}

.hero-ol-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.hero-ol-route {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-ol-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a7d38;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100px;
  padding: 3px 11px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.hero-display {
  margin-bottom: 20px;
}

/* ============================================================
   HERO CITIES ROW — pill badges for route destinations
============================================================ */
.hero-cities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-cities-row span {
  display: inline-flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 10px 28px;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}

.hero-cities-row span:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}

/* ============================================================
   HERO DESC
============================================================ */
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

/* ============================================================
   HERO CONTACT BAR — frosted glass pill: phone | divider | apps
============================================================ */
.hero-contact-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  margin-top: 20px;
}

.hcb-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s;
}
.hcb-phone:hover { background: rgba(255,255,255,0.1); }
.hcb-phone svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.8; }

.hcb-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.hcb-apps {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4px;
}

.hcb-app {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.hcb-app:hover {
  background: rgba(255,255,255,0.14);
  transform: scale(1.1);
}
.hcb-app img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

/* Responsive: stack contact bar on small screens */
@media (max-width: 480px) {
  .hero-contact-bar {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
  }
  .hcb-phone {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    padding: 10px 16px;
  }
  .hcb-sep {
    display: none;
  }
  .hcb-apps {
    width: 100%;
    justify-content: center;
    padding: 4px 0;
  }
}

/* ============================================================
   HERO ALIGNMENT — all elements match h1 "ПАСАЖИРСЬКІ" width
   inline-flex: width = widest child (h1), align-items: stretch
   makes every sibling fill that same width
============================================================ */
.hero-content {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

/* Overline stays compact, doesn't stretch */
.hero-overline {
  align-self: flex-start;
}


/* Remove old max-width on desc so it fills the column */
.hero-desc {
  max-width: none !important;
}

/* City pills spread edge-to-edge */
.hero-cities-row {
  justify-content: space-between;
}
.hero-cities-row span {
  flex: 1;
  text-align: center;
}

/* CTAs spread from left to right edge */
.hero-actions {
  justify-content: space-between;
}
.hero-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Contact bar fills full column width */
.hero-contact-bar {
  display: flex !important;
}
.hcb-phone {
  flex: 1;
}

/* Mobile: revert to centered stack, don't apply edge-to-edge logic */
@media (max-width: 767px) {
  .hero-content {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
  }
  .hero-headline-big {
    white-space: normal;
    text-align: center;
  }
  .hero-desc {
    text-align: center;
    max-width: 90vw !important;
  }
  .hero-cities-row {
    justify-content: center;
    gap: 6px;
  }
  .hero-cities-row span {
    flex: unset;
    font-size: 1.05rem;
    padding: 8px 18px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-actions .btn {
    flex: unset;
  }
  .hero-overline {
    align-self: center;
  }
}

/* ============================================================
   MOBILE HERO — сучасний компактний редизайн (≤600px)
   Піднімає контент під меню, ущільнює ритм, перетворює
   міста-пілюлі на слім-чіпи, стискає контакт-бар — щоб форма
   бронювання опинилась максимально високо.
============================================================ */
@media (max-width: 600px) {
  .hero { padding: 22px 0 26px; }

  /* Overline chip */
  .hero-overline {
    margin: 0 auto 12px;
    padding: 5px 12px 5px 9px;
    gap: 6px;
  }
  .hero-ol-flag { font-size: 0.95rem; }
  .hero-ol-route { font-size: 0.68rem; letter-spacing: 0.04em; }
  .hero-ol-badge { font-size: 0.62rem; padding: 2px 8px; }

  /* Headline — щільний і жирний */
  .hero-display { margin-bottom: 12px; }
  .hero-headline-big {
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }

  /* Міста призначення — слім route-чіпи */
  .hero-cities-row { gap: 6px; margin-bottom: 14px; }
  .hero-cities-row span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-width: 1px;
  }

  /* Опис — компактний */
  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px !important;
    max-width: 92vw !important;
  }

  /* CTA — стек на всю ширину, тонші */
  .hero-actions {
    flex-direction: column;
    gap: 9px;
    width: 100%;
    margin-bottom: 4px;
  }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-lg { padding: 13px 24px; font-size: 1rem; }

  /* Контакт-бар — компактна картка */
  .hero-contact-bar { margin-top: 12px; }
  .hcb-phone { padding: 9px 14px; font-size: 0.9rem; }
  .hcb-app { width: 46px; height: 46px; }
  .hcb-app img { width: 34px; height: 34px; }
  .hcb-app.hcb-ig svg { width: 38px; height: 38px; }
}

/* ============================================================
   INDIVIDUAL TRANSFER SECTION (повернуто з v12)
============================================================ */
.individual-transfer-section {
  background: #fff;
}
.individual-transfer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(13,175,79,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.section-title-left {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin: 8px 0 16px;
  line-height: 1.2;
}
.individual-transfer-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.individual-transfer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.individual-transfer-list li {
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.transfer-card-big {
  background: linear-gradient(135deg, var(--primary) 0%, #006b30 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(13,175,79,0.3);
}
.transfer-card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.transfer-card-big h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.transfer-card-big p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  line-height: 1.6;
}
.transfer-airports {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.airport-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.88rem;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 900px) {
  .individual-transfer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================================
   AIRLINE TICKETS SECTION (перенесено з v1)
============================================================ */
.airline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.airline-step {
  background: var(--surface-card, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition, .2s);
}
.airline-step:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: var(--primary-light, #4caf50);
  transform: translateY(-4px);
}
.airline-step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark, #006b30));
  color: #fff; font-weight: 800; font-size: 1.3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
}
.airline-step h4 { margin-bottom: 8px; color: var(--text); font-size: 1rem; font-weight: 700; }
.airline-step p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.contact-bar {
  text-align: center;
  padding: 40px 0 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-bar p { font-size: 1.05rem; color: var(--text); font-weight: 600; margin: 0; }
.contact-bar-icons { display: flex; gap: 12px; justify-content: center; align-items: center; }

.cb-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.cb-icon:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.cb-icon img { width: 32px; height: 32px; object-fit: contain; display: block; }

.cb-call-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 100px;
  background: #f0f0f0; border: 1px solid var(--border);
  color: var(--text); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.cb-call-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.cb-call-btn svg { flex-shrink: 0; }

@media (max-width: 1024px) { .airline-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .airline-steps { grid-template-columns: 1fr; } }

/* ============================================================
   INDIVIDUAL TRANSFER SECTION (перенесено з v1)
============================================================ */
.individual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.individual-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 1024px) {
  .individual-grid { grid-template-columns: 1fr; gap: 32px; }
}

.route-transfer-note {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  background: rgba(13,175,79,0.08);
  border: 1px solid rgba(13,175,79,0.2);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 12px 0;
}

/* ============================================================
   ROUTE CARD — двосторонній flip
============================================================ */

/* Міста — плавна анімація при зміні напрямку */
.route-city {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.route-city.flipping {
  opacity: 0;
  transform: translateY(-6px);
}

/* Двостороння стрілка */
.route-arrow-dual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-shrink: 0;
  line-height: 1;
}
.route-arrow-line {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: opacity 0.3s ease, color 0.3s ease;
  line-height: 1;
}
.route-arrow-line.active {
  color: #fff;
  opacity: 1;
}
.route-arrow-line:not(.active) {
  opacity: 0.35;
}

/* Бейдж "Туди / Назад" */
.route-dir-badge {
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rdb-fwd, .rdb-bck {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 3px 10px;
  color: #fff;
  transition: opacity 0.3s;
}

/* ===== v15 SEO landing presentation ===== */
.route-landing-content {
  background: var(--surface);
  border: 1px solid var(--gray-200, #e8ece9);
  border-radius: var(--radius-xl, 16px);
  padding: 32px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
  line-height: 1.75;
}
.route-landing-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  color: var(--text);
}
.route-landing-content h2:first-child { margin-top: 0; }
.route-landing-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.route-landing-content a:hover { color: var(--primary-dark); }
.route-landing-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}
.route-landing-content ul,
.route-landing-content ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}
.route-landing-article {
  max-width: 920px;
  margin: 0 auto;
}
.route-landing-stats .route-stat strong {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .route-landing-content { padding: 22px 18px; }
}

/* ============================================================
   v16.4 — CTA messengers, separated mobile contact bar,
   compact route selector, dark footer mobile polish
============================================================ */

/* CTA banner — messengers under the phone */
.cta-messengers {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cta-msg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.2s;
  text-decoration: none;
  overflow: hidden;
}
.cta-msg:hover { transform: translateY(-3px); background: rgba(255,255,255,0.22); }
.cta-msg img { width: 28px; height: 28px; object-fit: contain; display: block; }
.cta-msg.cta-ig svg { width: 44px; height: 44px; display: block; }

/* Mobile: separate the hero contact bar into distinct pieces */
@media (max-width: 600px) {
  .hero-contact-bar {
    background: transparent !important;
    border: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px;
    padding: 0;
    overflow: visible;
    width: 100%;
    margin-top: 14px;
  }
  .hcb-phone {
    flex: unset;
    width: auto;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 11px 22px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .hcb-sep { display: none; }
  .hcb-apps {
    width: auto;
    justify-content: center;
    gap: 12px;
    padding: 0;
  }
  .hcb-app {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
  }
  .hcb-app img { width: 30px; height: 30px; }
  .hcb-app.hcb-ig svg { width: 50px; height: 50px; }
}

/* Compact route selector on mobile (both forms) */
@media (max-width: 600px) {
  .route-selector-wrap { margin-bottom: 12px !important; }
  .route-selector-wrap .form-group { margin-bottom: 0; }
}

/* Footer — mobile polish (dark theme, centered) */
@media (max-width: 600px) {
  .site-footer { padding-top: 44px; }
  .footer-grid { text-align: center; gap: 28px; padding-bottom: 32px; }
  .footer-brand .site-logo { justify-content: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; max-width: 320px; }
  .footer-social { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 18px 0; }
}

/* NAB site-update article fix */
/* NAB site-update article fix */ .nab-su{--su-green:#0daf4f;--su-green-2:#13e64f;--su-ink:#1c2b24;--su-mut:#5e7468;--su-line:rgba(28,43,36,.1);--su-lime:#b7f000;--su-ease:cubic-bezier(.16,1,.3,1);color:var(--su-ink);font-size:1.05rem;line-height:1.75} .nab-su a.nab-blex-link{color:var(--su-green);font-weight:650;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:3px} .entry-content .nab-su-hero,.nab-su-hero{position:relative;overflow:hidden;display:block;margin:0 0 2rem;padding:clamp(28px,5vw,48px);border-radius:28px;background:radial-gradient(circle at 88% 12%,rgba(19,230,79,.22),transparent 28%),linear-gradient(145deg,#0b1510,#13241b 70%)!important;color:#fff!important;box-shadow:0 28px 70px rgba(11,21,16,.22)} .nab-su-hero::before{content:"";position:absolute;inset:0;opacity:.18;pointer-events:none;background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);background-size:44px 44px} .nab-su-kicker{position:relative;z-index:1;display:inline-flex;align-items:center;gap:8px;margin-bottom:14px;font-size:11px;font-weight:750;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.62);background:transparent!important} .nab-su-kicker i{width:7px;height:7px;border-radius:50%;background:var(--su-green-2);box-shadow:0 0 0 4px rgba(19,230,79,.2)} .entry-content .nab-su-hero h2,.nab-su-hero h2{position:relative;z-index:1;margin:0 0 12px;max-width:18ch;color:#fff!important;background:transparent!important;font-size:clamp(28px,4.4vw,44px);font-weight:800;letter-spacing:-.04em;line-height:1.05} .entry-content .nab-su-hero p,.nab-su-hero p{position:relative;z-index:1;margin:0 0 22px;max-width:54ch;color:rgba(255,255,255,.78)!important;background:transparent!important;font-size:1.02rem} .nab-su-hero-actions{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:10px} .nab-su-btn{display:inline-flex;align-items:center;gap:8px;padding:12px 20px;border-radius:999px;font-size:14px;font-weight:700;text-decoration:none!important} .nab-su-btn--primary{background:var(--su-green);color:#fff!important;box-shadow:0 12px 28px rgba(13,175,79,.28)} .nab-su-btn--ghost{border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.06);color:#fff!important} .nab-su-route{display:flex;flex-wrap:wrap;gap:8px;margin:1.25rem 0 0;position:relative;z-index:1} .nab-su-route span{display:inline-flex;align-items:center;gap:6px;padding:7px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.06)!important;color:rgba(255,255,255,.88)!important;font-size:12px;font-weight:650} .nab-su-route b{color:var(--su-green-2)} .entry-content .nab-su h2:not(.nab-su-hero h2):not(.nab-su-blex h2):not(.nab-su-final h2){color:var(--su-ink)!important;background:transparent!important} .nab-su-blex{background:linear-gradient(145deg,#0b1510,#13241b 70%);color:#fff;border-radius:24px;padding:clamp(22px,4vw,36px);margin:2rem 0} .entry-content .nab-su-blex h2,.entry-content .nab-su-blex h3{color:#fff!important;background:transparent!important} .nab-su-final{background:linear-gradient(145deg,#0b1510,#13241b);color:#fff;border-radius:24px;padding:clamp(22px,4vw,36px);margin:2rem 0} .entry-content .nab-su-final h2{color:#fff!important;background:transparent!important}

/* NAB site-update cards */
.nab-su-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:1.25rem 0 1.75rem}@media(max-width:720px){.nab-su-grid{grid-template-columns:1fr}}.nab-su-card{position:relative;overflow:hidden;padding:20px 18px;border:1px solid rgba(28,43,36,.1);border-radius:22px;background:rgba(255,255,255,.82);box-shadow:0 16px 36px rgba(0,0,0,.04)}.nab-su-card__n{display:inline-block;margin-bottom:8px;padding:4px 10px;border-radius:999px;background:rgba(13,175,79,.12);font-size:11px;font-weight:750;letter-spacing:.08em;color:#0daf4f}.nab-su-card h3{margin:0 0 8px!important;font-size:1.05rem!important;color:#1c2b24!important}.nab-su-card p{margin:0;font-size:.92rem;line-height:1.55;color:#5e7468}.nab-su-lead{font-size:1.18rem;line-height:1.65;margin:0 0 1.5rem;color:#1c2b24}.nab-su-steps{display:grid;gap:12px;margin:1.25rem 0 1.75rem}.nab-su-step{display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:start;padding:16px 18px;border:1px solid rgba(28,43,36,.1);border-radius:18px;background:#fff}.nab-su-step__n{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:#0daf4f;color:#fff;font-size:12px;font-weight:700}.nab-su-faq details{border:1px solid rgba(28,43,36,.1);border-radius:16px;padding:14px 16px;margin:0 0 10px;background:#fff}.nab-su-faq summary{cursor:pointer;font-weight:700;color:#1c2b24}
