/* VibeTicket Brand System - Нова кольорова палітра */
:root {
  --bg: #EAF6FF;           /* Основний фон: світло-блакитний */
  --bg-secondary: #F7FBFF; /* Фон секцій: дуже світлий блакитний */
  --bg-white: #FFFFFF;     /* Білий фон для секцій */
  --surface: #FFFFFF;      /* Поверхні елементів */
  --muted: #6B7280;        /* Другорядний текст */
  --text: #333333;         /* Основний текст: темно-сірий */
  --text-secondary: #4B5563; /* Другорядний текст */
  --accent: #00BFA6;       /* Акцентний: яскравий бірюзовий */
  --accent-2: #2196F3;     /* Додатковий акцент: небесний синій */
  --accent-3: #FFC947;     /* Додатковий акцент: теплий жовто-оранжевий */
  --accent-hover: #009688; /* Темніший бірюзовий для hover */
  --accent-2-hover: #1976D2; /* Темніший синій для hover */
  --outline: rgba(0, 191, 166, 0.1);
  --shadow: 0 4px 20px rgba(0, 191, 166, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 191, 166, 0.12);
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);

  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --container: 1400px;
  
  /* Animation variables */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background-color 0.3s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
  border-bottom: 1px solid var(--outline);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo { 
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(0,191,166,0.2));
  position: relative;
  z-index: 10;
}

.brand-text {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
}

.nav-toggle { 
  display: none; 
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.nav-toggle:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.nav-list a {
  color: var(--muted);
  font-weight: 500;
  transition: all var(--transition-normal);
  padding: 8px 0;
  position: relative;
}
.nav-list a:hover { 
  color: var(--accent); 
  transform: translateY(-1px);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-normal);
}

.nav-list a:hover::after {
  width: 100%;
}

/* Header CTA buttons */
.cta-inline {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cta-inline .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition-normal);
  min-height: 48px;
}

.cta-inline .btn i {
  font-size: 1.1rem;
}

.cta-inline .btn-viber {
  background: var(--accent);
  color: white;
  border: none;
  box-shadow: var(--shadow-soft);
}

.cta-inline .btn-viber:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-inline .btn-telegram {
  background: var(--accent-2);
  color: white;
  border: none;
  box-shadow: var(--shadow-soft);
}

.cta-inline .btn-telegram:hover {
  background: var(--accent-2-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  font-weight: 600;
  min-height: 48px;
  cursor: pointer;
}
.btn:hover { 
  transform: translateY(-2px); 
  border-color: var(--accent);
  box-shadow: var(--shadow);
  background: var(--surface);
}
.btn:active { 
  transform: translateY(0); 
  box-shadow: var(--shadow-soft);
}

.btn-lg { 
  padding: 16px 24px; 
  font-size: 1.1rem; 
  font-weight: 700;
}
.btn-primary { 
  background: var(--accent); 
  border-color: var(--accent); 
  color: white; 
  box-shadow: var(--shadow);
}

.btn-secondary { 
  background: var(--accent-2); 
  border-color: var(--accent-2); 
  color: white; 
  box-shadow: var(--shadow);
}

.btn-ghost { 
  background: var(--surface); 
  border-color: var(--outline); 
}

.btn-viber { 
  background: var(--accent); 
  border-color: var(--accent); 
  color: white; 
  box-shadow: var(--shadow);
}

.btn-telegram { 
  background: var(--accent-2); 
  border-color: var(--accent-2); 
  color: white; 
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-white) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 191, 166, 0.03) 0%, rgba(33, 150, 243, 0.03) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* FLAT ІЛЮСТРАЦІЯ ЯК ФОН ДЛЯ ФОРМИ */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: blur(1px) brightness(1.1);
  transform: scale(1.1);
}

/* Градієнт поверх ілюстрації для кращої читабельності */
.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.9) 30%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.7) 100%
  );
  z-index: 2;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero h1 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(32px, 5vw, 56px);
  margin: 0 0 28px;
  color: var(--text);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin: 0 0 36px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-cta .btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition-normal);
  text-decoration: none;
  box-shadow: var(--shadow);
  min-width: 200px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-cta .btn i {
  font-size: 1.3rem;
  transition: all var(--transition-normal);
}

.hero-cta .btn:hover i {
  transform: scale(1.1);
}

.btn-viber {
  background: var(--accent);
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.btn-viber:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-viber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-viber:hover::before {
  left: 100%;
}

.btn-telegram {
  background: var(--accent-2);
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.btn-telegram:hover {
  background: var(--accent-2-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-telegram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-telegram:hover::before {
  left: 100%;
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  background: var(--surface);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.1), transparent);
  transition: left var(--transition-slow);
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item i {
  color: var(--accent-3);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.feature-item:hover i {
  transform: scale(1.1);
  color: var(--accent);
}

.feature-item:hover .feature-item-text {
  transform: translateX(4px);
}

.feature-item-text {
  transition: transform var(--transition-normal);
  position: relative;
  z-index: 2;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  min-width: 140px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.stat-item:hover {
  background: var(--surface);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.1), transparent);
  transition: left var(--transition-slow);
}

.stat-item:hover::before {
  left: 100%;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.hero-art { position: relative; height: 420px; }
.ticket-illustration {
  position: absolute; inset: 40px; border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 2px solid #e9ecef;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  
  /* Ticket design */
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  overflow: hidden;
  color: #212529;
  font-family: 'Courier New', monospace;
  min-height: 280px;
}

.ticket-illustration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(124,92,255,0.03) 2px,
    rgba(124,92,255,0.03) 4px
  );
  border-radius: var(--radius);
}

/* Ticket header */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #dee2e6;
}

.ticket-logo {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ticket-number {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 600;
}

/* Ticket route */
.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(24,211,178,0.08));
  border-radius: 8px;
  border: 1px solid rgba(124,92,255,0.2);
}

.route-from, .route-to {
  text-align: center;
  flex: 1;
}

.city {
  font-size: 1.3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 4px;
}

.time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.date {
  font-size: 0.8rem;
  color: #6c757d;
}

.route-arrow {
  color: var(--accent);
  margin: 0 16px;
}

/* Ticket details */
.ticket-details {
  margin-bottom: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f1f3f4;
}

.detail-row:last-child {
  border-bottom: none;
}

.label {
  font-weight: 600;
  color: #495057;
  font-size: 0.85rem;
}

.value {
  font-weight: 500;
  color: #212529;
  font-size: 0.85rem;
}

/* Ticket footer */
.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px dashed #dee2e6;
}

.qr-placeholder {
  width: 32px;
  height: 32px;
  background: repeating-linear-gradient(
    45deg,
    #000,
    #000 2px,
    transparent 2px,
    transparent 4px
  );
  border-radius: 4px;
}

.ticket-status {
  font-size: 0.8rem;
  font-weight: 600;
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Sections */
.section { 
  padding: 80px 0; 
  position: relative;
}

.section:nth-child(even) {
  background: var(--bg-white);
}

.section:nth-child(odd) {
  background: var(--bg-secondary);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.1;
}
.section-header p { 
  margin: 0; 
  color: var(--text-secondary); 
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* How it works */
.how-it-works {
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.step-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.step-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.05), transparent);
  transition: left var(--transition-slow);
}

.step-item:hover::before {
  left: 100%;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.step-item:hover .step-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.step-item:hover .step-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.step-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.step-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Routes */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.route-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 32px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: all var(--transition-normal);
}

.route-card:hover::before {
  height: 6px;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.route-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.05), transparent);
  transition: left var(--transition-slow);
}

.route-card:hover::after {
  left: 100%;
}
.route-card h3 { 
  margin: 0 0 12px; 
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.route-card p { 
  margin: 0 0 20px; 
  color: var(--text-secondary); 
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.route-cta { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.route-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.route-card:hover .route-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.route-card:hover .route-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.seo-copy { margin-top: 14px; color: var(--muted); font-size: 0.95rem; }

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.benefit {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.05), transparent);
  transition: left var(--transition-slow);
}

.benefit:hover::before {
  left: 100%;
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: var(--shadow-soft);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
}

.benefit:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.benefit:hover .benefit-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: var(--radius);
  animation: pulse 2s infinite;
}
.benefit h3 { 
  margin: 16px 0 12px; 
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.benefit p { 
  margin: 0; 
  color: var(--text-secondary); 
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Reviews */
.reviews-carousel {
  margin-top: 60px;
  position: relative;
}

.reviews-swiper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.swiper-slide {
  padding: 0;
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.swiper-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.05), transparent);
  transition: left var(--transition-slow);
}

.swiper-slide:hover::before {
  left: 100%;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
  display: block;
  object-fit: cover;
}

.swiper-slide img:hover {
  transform: scale(1.02);
}

/* Додаткові стилі для кращого відображення зображень */
.swiper-slide img {
  min-height: 200px;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
}

.swiper-slide img[src*="assets/review/"] {
  background: none;
  min-height: auto;
}

/* ЗАВЖДИ ПОКАЗУЄМО ТІЛЬКИ 1 СЛАЙД */
.reviews-swiper .swiper-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.reviews-swiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Центруємо карусель */
.reviews-carousel {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Додаткові стилі для зображень відгуків */
.reviews-swiper .swiper-slide img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Мобільні стилі для завжди 1 слайда */
@media (max-width: 768px) {
  .reviews-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0 !important;
  }
  
  .reviews-carousel {
    max-width: 100% !important;
    padding: 0 20px !important;
  }
}

@media (max-width: 480px) {
  .reviews-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0 !important;
  }
  
  .reviews-carousel {
    max-width: 100% !important;
    padding: 0 16px !important;
  }
}

.swiper-slide img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.1) 0%, transparent 70%);
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.swiper-slide img:hover::after {
  opacity: 1;
}

/* FAQ */
.faq details { 
  border: 1px solid var(--outline); 
  border-radius: var(--radius); 
  padding: 20px 24px; 
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.faq details:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.faq details::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.05), transparent);
  transition: left var(--transition-slow);
}

.faq details:hover::before {
  left: 100%;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq details {
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq details:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,191,166,0.1);
}

.faq details + details { margin-top: 0; }
.faq summary { 
  cursor: pointer; 
  font-weight: 600; 
  color: var(--text);
  padding: 16px 20px;
  transition: all var(--transition-normal);
  position: relative;
  z-index: 2;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--outline);
}

.faq summary:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.faq p { 
  margin: 0; 
  color: var(--text-secondary); 
  line-height: 1.6;
  position: relative;
  z-index: 2;
  padding: 20px;
}

/* Payment notice styles */
.payment-notice {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-notice:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0,191,166,0.15);
  transform: translateY(-2px);
}

.payment-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.payment-notice:hover::before {
  transform: scaleX(1);
}

.payment-notice-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.payment-notice-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.payment-notice-title {
  font-weight: 600;
  color: var(--text);
  margin: 0;
  font-size: 1rem;
}

.payment-notice-content {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.payment-notice-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.payment-notice-toggle:hover {
  color: var(--accent-2);
}

.payment-notice-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 12px;
  padding: 0 16px;
  border-left: 2px solid var(--outline);
}

.payment-notice-details.expanded {
  max-height: 200px;
}

.payment-notice-details p {
  margin: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Elegant payment hint for hero section */
.payment-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 191, 166, 0.3);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.payment-hint:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 191, 166, 0.4);
  box-shadow: 0 2px 8px rgba(0, 191, 166, 0.1);
}

.hint-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
}

.hint-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.hint-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.hint-toggle:hover {
  color: var(--accent-2);
}

.hint-details {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 8px;
  padding: 0 16px;
  border-left: 2px solid rgba(0, 191, 166, 0.2);
  opacity: 0;
  transform: translateY(-10px);
}

.hint-details.expanded {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}

.hint-details p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Enhanced booking form styles */
.booking-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 24px 0;
  position: relative;
  z-index: 3;
}

/* Autocomplete styles */
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--outline);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--outline);
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background-color: rgba(0, 191, 166, 0.1);
}

.autocomplete-item .city-name {
  font-weight: 500;
  color: var(--text);
}

.autocomplete-item .country-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

  .form-field {
  position: relative;
}

/* Покращення для автодоповнення на десктопі */
.form-field input:focus + .autocomplete-list,
.form-field:focus-within .autocomplete-list {
  display: block;
}
  
  .booking-form h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  /* Mobile autocomplete styles */
  @media (max-width: 768px) {
    .autocomplete-list {
      max-height: 150px;
      border-radius: 0 0 8px 8px;
      position: fixed;
      top: auto;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 400px;
      z-index: 9999;
    }
    
    .autocomplete-item {
      padding: 10px 12px;
      font-size: 0.9rem;
    }
    
    .autocomplete-item .city-name {
      font-size: 0.9rem;
    }
    
    .autocomplete-item .country-name {
      font-size: 0.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .autocomplete-list {
      max-height: 120px;
    }
    
    .autocomplete-item {
      padding: 8px 10px;
      font-size: 0.85rem;
    }
    
    .autocomplete-item .city-name {
      font-size: 0.85rem;
    }
    
    .autocomplete-item .country-name {
      font-size: 0.7rem;
    }
  }

/* Form Container - Busbud Style */
.form-container {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  min-height: 100px;
}

.form-field {
  flex: 1;
  position: relative;
  padding: 0;
  margin: 0;
  border-right: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Ширша форма на десктопі */
@media (min-width: 1200px) {
  .form-field {
    min-width: 200px;
  }
}

@media (min-width: 1400px) {
  .form-field {
    min-width: 220px;
  }
}

@media (min-width: 1600px) {
  .form-field {
    min-width: 240px;
  }
}

.form-field:last-child {
  border-right: none;
}

/* Збільшуємо загальну ширину форми на десктопі */
@media (min-width: 1200px) {
  .form-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .booking-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
}

@media (min-width: 1400px) {
  .form-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .booking-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
  
  .hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

@media (min-width: 1600px) {
  .form-container {
    max-width: 1600px;
    margin: 0 auto;
  }
  
  .booking-form {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .hero .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
  padding: 16px 20px 6px 20px;
  background: transparent;
  border-bottom: none;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  margin: 0;
  box-sizing: border-box;
  height: 48px;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.form-field input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-field input:hover,
.form-field select:hover {
  background-color: rgba(0, 191, 166, 0.05);
}

.form-field input:focus,
.form-field select:focus {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: inset 0 0 0 2px rgba(0, 191, 166, 0.1);
}

/* Form field focus states */
.form-field:focus-within {
  background-color: rgba(0, 191, 166, 0.05);
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 191, 166, 0.15);
  z-index: 10;
}

.form-field:focus-within label {
  color: var(--accent);
  font-weight: 600;
}

/* Form container focus effect */
.form-container:focus-within {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(0, 191, 166, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Збільшуємо ширину контейнера форми на десктопі */
@media (min-width: 1200px) {
  .booking-form .container {
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .booking-form .container {
    max-width: 1400px;
  }
}

@media (min-width: 1600px) {
  .booking-form .container {
    max-width: 1600px;
  }
}

/* Smooth scroll to form on focus */
.booking-form {
  scroll-margin-top: 100px;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Примусове розширення форми */
.form-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}

.form-field {
  width: 100%;
  box-sizing: border-box;
  flex: 1;
}

/* Збільшуємо ширину самої форми на десктопі */
@media (min-width: 1200px) {
  .form-unified {
    max-width: 1200px;
    margin: 0 auto;
  }
}

@media (min-width: 1400px) {
  .form-unified {
    max-width: 1400px;
    margin: 0 auto;
  }
}

@media (min-width: 1600px) {
  .form-unified {
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* Enhanced focus animations */
.form-field input:focus,
.form-field select:focus {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: inset 0 0 0 2px rgba(0, 191, 166, 0.2), 0 2px 8px rgba(0, 191, 166, 0.1);
  transform: translateY(-2px);
}

/* Focused field state */
.form-field.focused {
  background-color: rgba(0, 191, 166, 0.08);
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(0, 191, 166, 0.2);
  z-index: 20;
}

.form-field.focused label {
  color: var(--accent);
  font-weight: 700;
  transform: translateY(-2px);
}

/* Search Button - Busbud Style */
.search-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 140px;
  justify-content: center;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-family: inherit;
}

.search-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

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

.search-btn i {
  font-size: 14px;
}

/* Form Options */
.form-options {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #4a5568;
  user-select: none;
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  position: relative;
  background: white;
  transition: all 0.2s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-option input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-option:hover .checkmark {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 191, 166, 0.1);
}

/* Calendar and Select Styling for Busbud Form */
.form-field input[type="date"],
.form-field input[type="datetime-local"] {
  position: relative;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  transition: all 0.3s ease;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Date picker calendar styling */
.form-field input[type="date"]::-webkit-calendar-picker-indicator,
.form-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-field input[type="date"]::-moz-calendar-picker-indicator,
.form-field input[type="datetime-local"]::-moz-calendar-picker-indicator {
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-field input[type="date"]::-ms-clear,
.form-field input[type="datetime-local"]::-ms-clear,
.form-field input[type="date"]::-ms-expand,
.form-field input[type="datetime-local"]::-ms-expand {
  display: none;
}

/* Enhanced form styling */
.form-field input[type="date"]:not([value]),
.form-field input[type="datetime-local"]:not([value]) {
  color: #a0aec0;
}

.form-field input[type="date"][value],
.form-field input[type="datetime-local"][value] {
  color: #2d3748;
}

.form-field select:invalid {
  color: #a0aec0;
}

.form-field select:valid {
  color: #2d3748;
}

/* Form container hover effect */
.form-container:hover {
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s ease;
}

/* Form field hover effects */
.form-field:hover {
  background-color: rgba(0, 191, 166, 0.05);
}

.form-field:hover label {
  color: var(--accent);
}

/* Enhanced focus states */
.form-field:focus-within {
  background-color: #f7fafc;
}

.form-field:focus-within label {
  color: #3182ce;
}

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

.hero-cta .btn {
  min-width: 180px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

/* CTA bottom */
.cta-bottom { 
  padding: 48px 0 72px;
  position: relative;
  isolation: isolate;
  z-index: 2;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.cta-inner {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.cta-inner h2 { 
  margin: 0 0 16px; 
  font-family: Manrope, Inter, system-ui, sans-serif; 
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.cta-inner p { 
  margin: 0 0 24px; 
  color: rgba(255, 255, 255, 0.9); 
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-inner .hero-cta {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.cta-inner .btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(10px);
  position: relative;
  isolation: isolate;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.cta-inner .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px) translateZ(20px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cta-inner .btn:active {
  transform: translateY(-2px) translateZ(10px);
  transition-duration: 0.1s;
}

.cta-inner .btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) translateZ(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
}

.cta-inner .btn:hover::before {
  transform: translateX(100%) translateZ(0);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--outline);
  background: var(--bg-secondary);
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-brand .brand-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 12px rgba(0,191,166,0.2));
}

.footer-brand .brand-text {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.footer-list a {
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-list i {
  width: 16px;
  text-align: center;
  color: var(--accent);
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  color: var(--text-secondary);
}

.footer-list li i.fa-clock {
  color: var(--accent);
}

.footer-list li i.fa-info-circle {
  color: var(--accent-2);
}

/* Стилі для окремої секції популярних напрямків */
.footer-routes-section {
  padding: 40px 0;
  border-top: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.02);
}

.footer-routes-section .footer-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.25rem;
  color: var(--accent);
}

/* Адаптивні стилі для секції з квитками */
@media (max-width: 1200px) {
  .footer-routes-section {
    padding: 30px 0;
  }
  
  .footer-routes-section .footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .footer-routes-section {
    padding: 25px 0;
  }
  
  .footer-routes-section .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .footer-routes-section {
    padding: 20px 0;
  }
  
  .footer-routes-section .footer-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
}

.routes-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

/* Адаптивна сітка маршрутів */
@media (max-width: 1200px) {
  .routes-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .routes-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .routes-compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.route-section {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(0, 191, 166, 0.2);
}

/* Адаптивні стилі для секцій маршрутів */
@media (max-width: 768px) {
  .route-section {
    padding: 8px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .route-section {
    padding: 6px;
    border-radius: 4px;
  }
}

.route-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0, 191, 166, 0.3);
}

.route-header i {
  color: #00bfa6;
  font-size: 12px;
  width: 14px;
}

.route-header span {
  color: #00bfa6;
  font-size: 12px;
  font-weight: 600;
}

/* Адаптивні стилі для заголовків маршрутів */
@media (max-width: 768px) {
  .route-header {
    margin-bottom: 6px;
    padding-bottom: 4px;
  }
  
  .route-header i {
    font-size: 11px;
    width: 12px;
  }
  
  .route-header span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .route-header {
    margin-bottom: 4px;
    padding-bottom: 3px;
  }
  
  .route-header i {
    font-size: 10px;
    width: 10px;
  }
  
  .route-header span {
    font-size: 10px;
  }
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.route-tag {
  background: rgba(0, 191, 166, 0.1);
  color: #666;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 10px;
  border: 1px solid rgba(0, 191, 166, 0.2);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.route-tag:hover {
  background: rgba(0, 191, 166, 0.2);
  color: #00bfa6;
  transform: translateY(-1px);
}

/* Адаптивні стилі для тегів маршрутів */
@media (max-width: 768px) {
  .route-tags {
    gap: 3px;
  }
  
  .route-tag {
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .route-tags {
    gap: 2px;
  }
  
  .route-tag {
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 6px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 32px;
  border-top: 1px solid var(--outline);
}

.legal {
  display: flex;
  gap: 24px;
}

.legal a {
  color: var(--text-secondary);
  text-decoration: underline;
  font-size: 0.9rem;
}

.legal a:hover {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; height: 360px; }
  
  /* Адаптивність для футера */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .footer-routes-section {
    padding: 30px 0;
  }
  
  .footer-routes-section .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .routes-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-routes-section {
    padding: 20px 0;
  }
  
  .footer-routes-section .footer-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .routes-compact {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .route-section {
    padding: 8px;
  }
  
  .route-header {
    margin-bottom: 6px;
    padding-bottom: 4px;
  }
  
  .route-header span {
    font-size: 11px;
  }
  
  .route-tag {
    font-size: 9px;
    padding: 2px 5px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  /* Header mobile */
  .header-inner { height: 64px; }
  .brand-logo { width: 160px; height: 38px; }
  .nav-list { gap: 20px; }
  .cta-inline { gap: 12px; }
  .cta-inline .btn { 
    padding: 10px 16px; 
    min-height: 44px; 
  }
  
  /* Hero mobile */
  .hero { padding: 80px 0 40px; }
  .hero h1 { font-size: clamp(28px, 6vw, 40px); }
  .hero p { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; align-items: center; gap: 16px; }
  .hero-cta .btn { width: 100%; max-width: 280px; padding: 16px 24px; }
  .hero-stats { 
    flex-direction: row; 
    gap: 12px; 
    margin-top: 40px; 
    justify-content: center; 
    flex-wrap: nowrap;
  }
  .stat-item { 
    padding: 16px 12px; 
    min-width: 80px; 
    flex: 1;
  }
  .stat-number { 
    font-size: 1.5rem; 
  }
  .stat-label { 
    font-size: 0.7rem; 
  }
  .trust-badges { flex-direction: column; gap: 8px; text-align: center; }
  .hero-features { 
    flex-direction: column; 
    gap: 16px; 
    margin-top: 32px; 
  }
  .feature-item { 
    padding: 16px 20px; 
    justify-content: center; 
  }
  
  /* Ticket mobile - fix positioning */
  .hero-art { 
    height: auto; 
    position: relative; 
    margin-top: 24px; 
  }
  .ticket-illustration { 
    position: relative; 
    inset: auto; 
    padding: 16px; 
    min-height: 240px;
    margin: 0;
  }
  .ticket-logo { font-size: 1.2rem; }
  .ticket-route { padding: 12px; }
  .city { font-size: 1.1rem; }
  .time { font-size: 1rem; }
  .route-arrow { margin: 0 8px; }
  .route-arrow svg { width: 24px; height: 12px; }
  
  /* Sections mobile */
  .section { padding: 50px 0; }
  .section-header h2 { font-size: clamp(24px, 5vw, 32px); }
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 1rem; }
  
  /* Routes mobile */
  .routes-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  .route-card { 
    padding: 20px; 
    min-height: 200px; 
  }
  .route-cta { 
    flex-direction: column; 
    gap: 12px; 
  }
  .route-cta .btn { 
    width: 100%; 
    justify-content: center; 
    padding: 12px 20px; 
  }
  .route-icon { 
    width: 48px; 
    height: 48px; 
    font-size: 1.3rem; 
    margin-bottom: 16px; 
  }
  
  /* How it works mobile */
  .steps-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  .step-item { 
    padding: 24px 16px; 
  }
  .step-icon { 
    width: 60px; 
    height: 60px; 
    font-size: 1.5rem; 
    margin-bottom: 16px; 
  }
  .step-item h3 { 
    font-size: 1.2rem; 
    margin-bottom: 12px; 
  }
  
  /* Benefits mobile */
  .benefits-grid { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  }
  .benefit { 
    padding: 20px; 
    text-align: center; 
  }
  .benefit-icon { 
    width: 48px; 
    height: 48px; 
    font-size: 1.4rem; 
    margin-bottom: 16px; 
  }
  .benefit h3 { 
    font-size: 1.1rem; 
    margin: 12px 0 8px; 
  }
  
  /* Reviews mobile */
  .reviews-carousel {
    margin-top: 40px;
  }
  .swiper-slide { 
    padding: 16px; 
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  /* FAQ mobile */
  .faq details { 
    padding: 16px 20px; 
  }
  .faq summary { 
    font-size: 0.95rem; 
  }
  .faq p { 
    font-size: 0.9rem; 
    margin-top: 12px; 
  }
  
  /* CTA mobile */
  .cta-inner { 
    padding: 32px 20px; 
  }
  .cta-inner h2 { 
    font-size: 1.5rem; 
  }
  .cta-inner p { 
    font-size: 1rem; 
    margin-bottom: 20px; 
  }
  
  /* Footer mobile */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
    text-align: center; 
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 16px; 
    text-align: center; 
  }
  .footer-list a { 
    justify-content: center; 
  }
  .footer-list li { 
    justify-content: center; 
  }
  .legal { 
    flex-direction: column; 
    gap: 12px; 
  }
  
  /* Back to top mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  /* Navigation mobile */
  .nav-toggle {
    display: block;
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    z-index: 21;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
    z-index: 20;
  }
  
  .nav-list.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInDown 0.3s ease-out;
  }

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

@media (max-width: 720px) {
  .nav-toggle { 
    display: inline-flex; 
    background: transparent; 
    color: var(--text); 
    border: 1px solid var(--outline); 
    padding: 8px 10px; 
    border-radius: 10px; 
    font-size: 0.9rem;
  }
  .nav-list { 
    display: none; 
    position: absolute; 
    right: 16px; 
    top: 56px; 
    background: var(--surface); 
    border: 1px solid var(--outline); 
    border-radius: 12px; 
    padding: 12px; 
    width: 200px; 
    box-shadow: var(--shadow); 
  }
  .nav-list.open { 
    display: grid; 
  }
  .nav-list li { 
    margin-bottom: 8px; 
  }
  .nav-list a { 
    display: block; 
    padding: 8px 12px; 
    border-radius: 8px; 
  }
  .nav-list a:hover { 
    background: rgba(255,255,255,0.05); 
  }
  .cta-inline { 
    display: none; 
  }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  
  /* Header extra small */
  .header-inner { height: 56px; }
  .brand-logo { width: 140px; height: 34px; }
  
  /* Hero extra small */
  .hero { padding: 48px 0 20px; }
  .hero h1 { font-size: 24px; line-height: 1.2; }
  .hero p { font-size: 0.9rem; }
  .hero-stats { 
    gap: 16px; 
    margin-top: 24px; 
  }
  .stat-item { 
    padding: 12px; 
    min-width: 60px; 
  }
  .stat-number { 
    font-size: 1.5rem; 
  }
  .stat-label { 
    font-size: 0.7rem; 
  }
  
  /* Ticket extra small */
  .hero-art { 
    height: auto; 
    position: relative; 
    margin-top: 20px; 
  }
  .ticket-illustration { 
    position: relative; 
    inset: auto; 
    padding: 12px; 
    min-height: 200px;
    margin: 0;
  }
  .ticket-logo { font-size: 1.1rem; }
  .ticket-number { font-size: 0.7rem; }
  .ticket-route { 
    padding: 10px; 
    flex-direction: column; 
    gap: 8px; 
  }
  .route-from, .route-to { 
    text-align: center; 
  }
  .route-arrow { 
    transform: rotate(90deg); 
    margin: 4px 0; 
  }
  .city { font-size: 1rem; }
  .time { font-size: 0.9rem; }
  .date { font-size: 0.7rem; }
  
  /* Sections extra small */
  .section { padding: 32px 0; }
  .section-header h2 { font-size: 20px; }
  .section-header p { font-size: 0.9rem; }
  
  /* Cards extra small */
  .route-card, .benefit, .review { 
    padding: 14px; 
  }
  .route-card h3 { font-size: 1.1rem; }
  .route-card p { font-size: 0.85rem; }
  .benefit h3 { font-size: 1rem; }
  .benefit p { font-size: 0.85rem; }
  
  /* Buttons extra small */
  .btn { 
    padding: 10px 16px; 
    font-size: 0.9rem; 
  }
  .btn-lg { 
    padding: 12px 20px; 
    font-size: 1rem; 
  }
  
  /* FAQ extra small */
  .faq details { 
    padding: 10px 12px; 
  }
  .faq summary { 
    font-size: 0.9rem; 
  }
  .faq p { 
    font-size: 0.85rem; 
  }
  
  /* CTA extra small */
  .cta-inner { 
    padding: 16px; 
  }
  .cta-inner h2 { 
    font-size: 1.3rem; 
  }
  .cta-inner p { 
    font-size: 0.9rem; 
  }
  
  /* Footer extra small */
  .footer-grid { 
    padding: 20px 0; 
  }
  .footer-title { 
    font-size: 0.9rem; 
  }
  .footer-list a { 
    font-size: 0.85rem; 
  }
  .legal { 
    flex-direction: column; 
    gap: 8px; 
  }
  .legal a { 
    font-size: 0.8rem; 
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn { 
    min-height: 44px; 
    padding: 12px 20px; 
  }
  .nav-list a { 
    min-height: 44px; 
    display: flex; 
    align-items: center; 
  }
  .route-cta .btn { 
    min-height: 44px; 
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { padding: 40px 0 20px; }
  .hero-art { 
    height: auto; 
    position: relative; 
    margin-top: 20px; 
  }
  .ticket-illustration { 
    position: relative; 
    inset: auto; 
    min-height: 200px;
    margin: 0;
  }
  .section { padding: 32px 0; }
}

/* Touch device specific styles */
.touch-device .btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Tickets section */
.tickets {
  display: block;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Адаптивна сітка квитків для ВСІХ екранів */
@media (max-width: 1400px) {
  .tickets-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0 12px;
  }
}

@media (max-width: 1200px) {
  .tickets-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    padding: 0 10px;
  }
}

@media (max-width: 992px) {
  .tickets-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .tickets-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    padding: 0 6px;
  }
}

@media (max-width: 576px) {
  .tickets-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .tickets-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 2px;
  }
}

@media (max-width: 360px) {
  .tickets-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }
}

.ticket-illustration {
  position: relative; 
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 2px solid #e9ecef;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
   
  /* Ticket design */
  display: flex;
  flex-direction: column;
  padding: 16px;
  position: relative;
  color: #212529;
  font-family: 'Courier New', monospace;
  min-height: 220px;
}

/* Адаптивні стилі для квитків на ВСІХ екранах */
@media (max-width: 1400px) {
  .ticket-illustration {
    padding: 15px;
    min-height: 210px;
  }
}

@media (max-width: 1200px) {
  .ticket-illustration {
    padding: 14px;
    min-height: 200px;
  }
}

@media (max-width: 992px) {
  .ticket-illustration {
    padding: 13px;
    min-height: 190px;
  }
}

@media (max-width: 768px) {
  .ticket-illustration {
    padding: 12px;
    min-height: 180px;
  }
}

@media (max-width: 576px) {
  .ticket-illustration {
    padding: 11px;
    min-height: 170px;
  }
}

@media (max-width: 480px) {
  .ticket-illustration {
    padding: 10px;
    min-height: 160px;
  }
}

@media (max-width: 360px) {
  .ticket-illustration {
    padding: 8px;
    min-height: 150px;
  }
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px dashed #dee2e6;
}

.ticket-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.ticket-number {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 600;
}

/* Адаптивні стилі для заголовків квитків на ВСІХ екранах */
@media (max-width: 1400px) {
  .ticket-header {
    margin-bottom: 19px;
    padding-bottom: 11px;
  }
  
  .ticket-logo {
    font-size: 1.35rem;
  }
  
  .ticket-number {
    font-size: 0.78rem;
  }
}

@media (max-width: 1200px) {
  .ticket-header {
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
  
  .ticket-logo {
    font-size: 1.3rem;
  }
  
  .ticket-number {
    font-size: 0.75rem;
  }
}

@media (max-width: 992px) {
  .ticket-header {
    margin-bottom: 17px;
    padding-bottom: 9px;
  }
  
  .ticket-logo {
    font-size: 1.25rem;
  }
  
  .ticket-number {
    font-size: 0.73rem;
  }
}

@media (max-width: 768px) {
  .ticket-header {
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
  
  .ticket-logo {
    font-size: 1.2rem;
  }
  
  .ticket-number {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .ticket-header {
    margin-bottom: 15px;
    padding-bottom: 7px;
  }
  
  .ticket-logo {
    font-size: 1.15rem;
  }
  
  .ticket-number {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .ticket-header {
    margin-bottom: 14px;
    padding-bottom: 6px;
  }
  
  .ticket-logo {
    font-size: 1.1rem;
  }
  
  .ticket-number {
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .ticket-header {
    margin-bottom: 13px;
    padding-bottom: 5px;
  }
  
  .ticket-logo {
    font-size: 1.05rem;
  }
  
  .ticket-number {
    font-size: 0.62rem;
  }
}

.ticket-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(24,211,178,0.08));
  border-radius: 8px;
  border: 1px solid rgba(124,92,255,0.2);
}

.route-from, .route-to {
  text-align: center;
  flex: 1;
}

.city {
  font-size: 1.3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 4px;
}

.time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2px;
}

.date {
  font-size: 0.8rem;
  color: #6c757d;
}

.route-arrow {
  margin: 0 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.route-arrow svg {
  width: 32px;
  height: 16px;
}

/* Адаптивні стилі для маршрутів квитків на ВСІХ екранах */
@media (max-width: 1400px) {
  .ticket-route {
    margin-bottom: 23px;
    padding: 15px;
  }
  
  .city {
    font-size: 1.25rem;
  }
  
  .time {
    font-size: 1.05rem;
  }
  
  .date {
    font-size: 0.78rem;
  }
  
  .route-arrow {
    margin: 0 15px;
  }
  
  .route-arrow svg {
    width: 30px;
    height: 15px;
  }
}

@media (max-width: 1200px) {
  .ticket-route {
    margin-bottom: 22px;
    padding: 14px;
  }
  
  .city {
    font-size: 1.2rem;
  }
  
  .time {
    font-size: 1rem;
  }
  
  .date {
    font-size: 0.75rem;
  }
  
  .route-arrow {
    margin: 0 14px;
  }
  
  .route-arrow svg {
    width: 28px;
    height: 14px;
  }
}

@media (max-width: 992px) {
  .ticket-route {
    margin-bottom: 21px;
    padding: 13px;
  }
  
  .city {
    font-size: 1.15rem;
  }
  
  .time {
    font-size: 0.98rem;
  }
  
  .date {
    font-size: 0.73rem;
  }
  
  .route-arrow {
    margin: 0 13px;
  }
  
  .route-arrow svg {
    width: 26px;
    height: 13px;
  }
}

@media (max-width: 768px) {
  .ticket-route {
    margin-bottom: 20px;
    padding: 12px;
  }
  
  .city {
    font-size: 1.1rem;
  }
  
  .time {
    font-size: 0.95rem;
  }
  
  .date {
    font-size: 0.7rem;
  }
  
  .route-arrow {
    margin: 0 12px;
  }
  
  .route-arrow svg {
    width: 24px;
    height: 12px;
  }
}

@media (max-width: 576px) {
  .ticket-route {
    margin-bottom: 19px;
    padding: 11px;
  }
  
  .city {
    font-size: 1.05rem;
  }
  
  .time {
    font-size: 0.93rem;
  }
  
  .date {
    font-size: 0.68rem;
  }
  
  .route-arrow {
    margin: 0 11px;
  }
  
  .route-arrow svg {
    width: 22px;
    height: 11px;
  }
}

@media (max-width: 480px) {
  .ticket-route {
    margin-bottom: 18px;
    padding: 10px;
    flex-direction: column;
    gap: 8px;
  }
  
  .city {
    font-size: 1rem;
  }
  
  .time {
    font-size: 0.9rem;
  }
  
  .date {
    font-size: 0.65rem;
  }
  
  .route-arrow {
    margin: 8px 0;
    transform: rotate(90deg);
  }
  
  .route-arrow svg {
    width: 20px;
    height: 10px;
  }
}

@media (max-width: 360px) {
  .ticket-route {
    margin-bottom: 17px;
    padding: 9px;
    gap: 6px;
  }
  
  .city {
    font-size: 0.95rem;
  }
  
  .time {
    font-size: 0.85rem;
  }
  
  .date {
    font-size: 0.62rem;
  }
  
  .route-arrow {
    margin: 6px 0;
  }
  
  .route-arrow svg {
    width: 18px;
    height: 9px;
  }
}

/* Ticket details */
.ticket-details {
  margin-bottom: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f1f3f4;
  font-size: 0.8rem;
}

.detail-row span:first-child {
  color: #6c757d;
  font-weight: 500;
}

.detail-row span:last-child {
  color: #212529;
  font-weight: 600;
}

/* Адаптивні стилі для деталей квитків */
@media (max-width: 1200px) {
  .ticket-details {
    margin-bottom: 18px;
  }
  
  .detail-row {
    padding: 5px 0;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .ticket-details {
    margin-bottom: 16px;
  }
  
  .detail-row {
    padding: 4px 0;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .ticket-details {
    margin-bottom: 14px;
  }
  
  .detail-row {
    padding: 3px 0;
    font-size: 0.65rem;
  }
}

.ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 2px dashed #dee2e6;
}

.qr-code {
  width: 32px;
  height: 32px;
  background: #28a745;
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(40, 167, 69, 0.3);
  flex-shrink: 0;
}

.status {
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 600;
}

/* Адаптивні стилі для футера квитків */
@media (max-width: 1200px) {
  .ticket-footer {
    padding-top: 14px;
  }
  
  .qr-code {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }
  
  .status {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .ticket-footer {
    padding-top: 12px;
  }
  
  .qr-code {
    width: 28px;
    height: 28px;
    font-size: 0.6rem;
  }
  
  .status {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .ticket-footer {
    padding-top: 10px;
  }
  
  .qr-code {
    width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }
  
  .status {
    font-size: 0.65rem;
  }
}

/* Mobile ticket improvements */
@media (max-width: 768px) {
  .ticket-illustration {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-width: 1px;
  }
  
  .ticket-route {
    margin-bottom: 20px;
  }
  
  .ticket-details {
    margin-bottom: 16px;
  }
  
  .ticket-footer {
    padding-top: 12px;
  }
}

.touch-device .nav-list a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Prevent text selection on buttons */
.btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Improve button feedback on touch */
@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .nav-list a:active {
    background: rgba(255,255,255,0.1);
  }
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
  .container {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  
  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border-width: 2px;
  }
  
  .ticket-illustration {
    border-width: 3px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn:hover {
    transform: none;
  }
}

/* Reviews Section */
.reviews {
  background: var(--bg-secondary);
}

.reviews-carousel {
  margin-top: 48px;
  position: relative;
}

/* Swiper Styles */
.reviews-swiper {
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}



.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.02);
}

/* Additional carousel fixes to prevent image splitting */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* Ensure proper slide sizing */
  width: 100%;
}

.review-slide {
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
  /* Prevent slide content from being cut */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.review-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 500px;
  /* Fix for mobile image display */
  min-height: 200px;
  /* Prevent image from being split */
  object-position: center;
  /* Ensure image maintains aspect ratio */
  aspect-ratio: auto;
  /* Force image to respect container */
  max-width: 100%;
  /* Prevent any splitting */
  flex-shrink: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.carousel-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.carousel-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.3);
}

.carousel-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.carousel-btn i {
  font-size: 1.2rem;
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .reviews-carousel {
    margin-top: 24px;
  }
  
  .carousel-container {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  
  .carousel-controls {
    margin-top: 20px;
    gap: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .carousel-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .carousel-btn:hover {
    transform: scale(1.05);
  }
  
  .carousel-btn i {
    font-size: 1.1rem;
  }
  
  .carousel-dots {
    display: flex;
    gap: 8px;
    order: 0;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
  }
  
  .dot:hover {
    background: var(--accent);
    border-color: var(--accent);
  }
}

@media (max-width: 480px) {
  .reviews-carousel {
    margin-top: 20px;
  }
  
  .carousel-controls {
    margin-top: 16px;
    gap: 16px;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
  
  .carousel-btn i {
    font-size: 1rem;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .carousel-dots {
    gap: 6px;
  }
}

.route-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.route-card h3 {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.route-card p {
  margin: 0 0 20px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}

.route-card p i {
  margin-right: 6px;
  color: var(--accent);
  width: 16px;
  text-align: center;
}

.route-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.route-cta .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.route-cta .btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.route-cta .btn i {
  font-size: 1rem;
}

/* Mobile Optimization */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .routes-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-bg-image {
    opacity: 0.3;
    filter: blur(2px) brightness(1.2);
  }
  
  .hero-background::after {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.9) 100%
    );
  }
  
  .hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-header h2 {
    font-size: clamp(24px, 5vw, 32px);
  }
  
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .route-card {
    padding: 20px;
    min-height: 160px;
  }
  
  .route-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .route-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .route-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .route-cta {
    flex-direction: column;
    gap: 8px;
  }
  
  .route-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit {
    padding: 20px;
    text-align: center;
  }
  
  .benefit-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .tickets-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .ticket-illustration {
    padding: 12px;
    min-height: 180px;
  }
  
  .ticket-header {
    margin-bottom: 16px;
  }
  
  .ticket-logo {
    font-size: 1.2rem;
  }
  
  .ticket-route {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .city {
    font-size: 1.1rem;
  }
  
  .time {
    font-size: 1rem;
  }
  
  .date {
    font-size: 0.7rem;
  }
  
  .carousel-controls {
    margin-top: 20px;
    gap: 16px;
  }
  
  .carousel-btn {
    width: 48px;
    height: 48px;
  }
  
  .carousel-btn i {
    font-size: 1rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }
  
  .hero h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .hero-cta .btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .stat-item {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .section {
    padding: 32px 0;
  }
  
  .section-header h2 {
    font-size: 20px;
  }
  
  .section-header p {
    font-size: 0.9rem;
  }
  
  .route-card {
    padding: 16px;
    min-height: 140px;
  }
  
  .route-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .route-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .route-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .route-cta .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .benefit {
    padding: 16px;
  }
  
  .benefit-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .benefit h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .benefit p {
    font-size: 0.85rem;
  }
  
  .ticket-illustration {
    padding: 10px;
    min-height: 160px;
  }
  
  .ticket-logo {
    font-size: 1.1rem;
  }
  
  .ticket-number {
    font-size: 0.7rem;
  }
  
  .ticket-route {
    padding: 10px;
    margin-bottom: 12px;
  }
  
  .city {
    font-size: 1rem;
  }
  
  .time {
    font-size: 0.9rem;
  }
  
  .date {
    font-size: 0.65rem;
  }
  
  .carousel-controls {
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
  
  .carousel-dots {
    order: -1;
  }
  
  .carousel-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 40px 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 16px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 32px 0;
  }
}

/* Touch device optimizations */
.touch-device .btn {
  min-height: 44px;
}

.touch-device .route-cta .btn {
  min-height: 44px;
}

.touch-device .carousel-btn {
  min-height: 44px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .route-card,
  .benefit,
  .ticket-illustration {
    border-width: 2px;
  }
  
  .carousel-btn {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .route-card:hover,
  .benefit:hover,
  .feature-item:hover,
  .stat-item:hover,
  .carousel-btn:hover {
    transform: none;
  }
  
  .carousel-track {
    transition: none;
  }
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-list a {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .legal {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 20px;
    padding: 20px 0;
  }
  
  .footer-title {
    font-size: 0.95rem;
  }
  
  .footer-list a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 10px 0 16px;
    gap: 12px;
  }
  
  .legal a {
    font-size: 0.85rem;
  }
}

/* CTA Bottom Section */
.cta-bottom { 
  padding: 48px 0;
  background: var(--bg-secondary);
}

.cta-inner {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-inner h2 { 
  margin: 0 0 16px; 
  font-family: Manrope, Inter, system-ui, sans-serif; 
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.cta-inner p { 
  margin: 0 0 32px; 
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-inner .hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-inner .btn {
  min-width: 200px;
  background: var(--accent);
  border: none;
  color: white;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--radius);
}

.cta-inner .btn:hover {
  background: var(--accent-hover);
}

.cta-inner .btn-telegram {
  background: var(--accent-2);
}

.cta-inner .btn-telegram:hover {
  background: var(--accent-2-hover);
}

@media (max-width: 768px) {
  .cta-bottom {
    padding: 32px 0;
  }
  
  .cta-inner {
    padding: 32px 24px;
  }

  .cta-inner h2 {
    font-size: 1.5rem;
  }

  .cta-inner p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .cta-inner .btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* Mobile carousel fixes */
@media (max-width: 768px) {
  .carousel-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
    /* Force container to respect slide boundaries */
    position: relative;
  }
  
  .review-slide {
    width: 100%;
    flex-shrink: 0;
  }
  
  .review-slide img {
    width: 100%;
    height: auto;
    max-height: 400px;
    /* Force image to fit properly */
    object-fit: contain;
    object-position: center;
    /* Prevent any splitting */
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .carousel-track {
    width: 100%;
    display: flex;
    /* Ensure smooth transitions */
    transition: transform 0.5s ease-in-out;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    border-radius: 6px;
    /* Ensure proper mobile display */
    width: 100%;
    max-width: 100%;
  }
  
  .review-slide img {
    max-height: 300px;
    /* Force proper image display */
    object-fit: contain;
    object-position: center;
    /* Prevent any image splitting */
    width: 100%;
    height: auto;
  }
  
  .carousel-track {
    /* Ensure proper slide sizing on small screens */
    width: 100%;
  }
  
  .review-slide {
    /* Force slide to take full width */
    width: 100%;
    min-width: 100%;
  }
}

/* Force carousel slide dimensions */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* Ensure proper slide sizing */
  width: 100%;
  /* Force track to respect slide boundaries */
  min-width: 100%;
}

.review-slide {
  min-width: 100%;
  flex-shrink: 0;
  /* Prevent slide content from being cut */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Force slide to take full width */
  width: 100%;
  /* Prevent any overflow */
  overflow: hidden;
}

.review-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 500px;
  /* Fix for mobile image display */
  min-height: 200px;
  /* Prevent image from being split */
  object-position: center;
  /* Ensure image maintains aspect ratio */
  aspect-ratio: auto;
  /* Force image to respect container */
  max-width: 100%;
  /* Prevent any splitting */
  flex-shrink: 0;
}

/* Booking Notifications */
.booking-notifications {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.booking-notification {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--outline);
  max-width: 320px;
  pointer-events: auto;
  overflow: hidden;
  animation: slideInRight 0.3s ease-out;
}

.notification-header {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--outline);
  background: var(--bg-white);
}

.notification-header i {
  color: var(--accent);
  font-size: 1rem;
}

.notification-content {
  padding: 16px;
  background: var(--surface);
}

.booking-notification .route {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.booking-notification .details {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.booking-notification .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.booking-notification.removing {
  animation: slideOutRight 0.3s ease-out forwards;
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .booking-notifications {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .booking-notification {
    max-width: none;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.booking-notification.removing {
  animation: slideOutRight 0.5s ease-in forwards;
}

/* Mobile notifications */
@media (max-width: 768px) {
  .booking-notifications {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  
  .booking-notification {
    max-width: none;
    margin-bottom: 10px;
  }
  
  .notification-header {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .notification-content {
    padding: 14px 16px;
  }
  
  .booking-notification .route {
    font-size: 1rem;
  }
  
  .booking-notification .price {
    font-size: 1.1rem;
  }
  
  /* Back to top mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  /* Navigation mobile */
  .nav-toggle {
    display: block;
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    z-index: 21;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: var(--surface);
    border: 1px solid var(--outline);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
    z-index: 20;
  }
  
  .nav-list.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fadeInDown 0.3s ease-out;
  }

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

/* Swiper Navigation - Modern Design */
.swiper-button-prev,
.swiper-button-next {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.9);
  position: relative;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  text-shadow: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: white;
}

.swiper-button-prev:active,
.swiper-button-next:active {
  transform: scale(0.95);
  box-shadow: 0 2px 15px rgba(124, 92, 255, 0.2);
}

/* Show buttons on hover */
.reviews-swiper:hover .swiper-button-prev,
.reviews-swiper:hover .swiper-button-next {
  opacity: 1;
  transform: scale(1);
}

/* Show buttons when carousel is focused or active */
.reviews-swiper:focus-within .swiper-button-prev,
.reviews-swiper:focus-within .swiper-button-next,
.reviews-swiper:active .swiper-button-prev,
.reviews-swiper:active .swiper-button-next {
  opacity: 1;
  transform: scale(1);
}

/* Pagination styling */
.swiper-pagination {
  position: relative;
  bottom: 20px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: var(--shadow-soft);
}

/* Touch-friendly area for buttons */
.swiper-button-prev,
.swiper-button-next {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 191, 166, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.back-to-top:hover::before {
  left: 100%;
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.98);
}

.back-to-top i {
  position: relative;
  z-index: 2;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: var(--border);
  opacity: 0.5;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.swiper-pagination-bullet:hover {
  background: var(--accent);
  opacity: 0.8;
  transform: scale(1.1);
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.2);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

.swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(0, 191, 166, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 1.5s infinite reverse;
  z-index: -2;
}

.swiper-pagination-bullet-active::before {
  background: radial-gradient(circle, rgba(0, 191, 166, 0.3) 0%, transparent 70%);
  animation: pulse 2s infinite;
  z-index: -1;
}

.swiper-pagination-bullet-active::after {
  background: radial-gradient(circle, rgba(0, 191, 166, 0.1) 0%, transparent 70%);
  animation: pulse 1.5s infinite reverse;
  z-index: -2;
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow) var(--bounce);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all var(--transition-slow) var(--bounce);
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all var(--transition-slow) var(--bounce);
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--transition-slow) var(--bounce);
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Swiper Styles */
@media (max-width: 768px) {
  .reviews-swiper {
    margin: 0 -16px;
    border-radius: 0;
  }
  
  .swiper-slide {
    padding: 10px;
  }
  
  .swiper-slide img {
    max-height: 400px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 48px;
    height: 48px;
    opacity: 0.9;
    /* Always visible on mobile */
    opacity: 0.9 !important;
    transform: scale(1) !important;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1rem;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.1rem;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
}

@media (max-width: 480px) {
  .swiper-slide img {
    max-height: 300px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 44px;
    height: 44px;
    opacity: 0.9;
    /* Always visible on mobile */
    opacity: 0.9 !important;
    transform: scale(1) !important;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 0.9rem;
  }
  
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1rem;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 1;
    transform: translateY(-1px) scale(1.02);
  }
}

/* Photo Modal */
.photo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-close i {
  font-size: 1.2rem;
}

.modal-image-container {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.modal-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.modal-nav-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.modal-nav-btn i {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Make swiper slides clickable */
.swiper-slide {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.02);
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
  }
  
  .modal-close i {
    font-size: 1rem;
  }
  
  .modal-nav-btn {
    width: 48px;
    height: 48px;
  }
  
  .modal-nav-btn i {
    font-size: 1.1rem;
  }
  
  .modal-navigation {
    padding: 0 10px;
  }
}

/* Booking Form Styles */
.booking-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--outline);
  margin: 32px 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.booking-form h3 {
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 4px;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  width: 100%;
  height: 48px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input[type="date"] {
  cursor: pointer;
  padding-right: 12px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .booking-form {
    padding: 24px;
    margin: 24px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .form-group input,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

.form-group input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  background: var(--bg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 40px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1);
  transform: translateY(-1px);
  background: var(--bg-white);
}

.form-group input:hover,
.form-group select:hover {
  border-color: var(--accent-2);
}

.form-group input.error,
.form-group select.error {
  border-color: #ff4d4d;
  background-color: rgba(255, 77, 77, 0.05);
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

.error-message {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: 6px;
  animation: fadeIn 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.error-message::before {
  content: '⚠️';
  font-size: 0.9rem;
}

@keyframes shake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
  40%, 60% { transform: translate3d(4px, 0, 0); }
}

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

.booking-form .hero-cta {
  justify-content: center;
  margin: 0;
}

.booking-form .btn {
  min-width: 180px;
  justify-content: center;
  transition: all var(--transition-normal);
}

.booking-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* Mobile Booking Form */
@media (max-width: 768px) {
  .booking-form {
    padding: 24px 20px;
    margin-bottom: 32px;
  }
  
  .booking-form h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .form-container {
    flex-direction: column;
    border-radius: 10px;
    margin-bottom: 16px;
  }
  
  .form-field {
    border-bottom: 1px solid #e1e5e9;
  }
  
  .form-field:last-child {
    border-bottom: none;
  }
  
  .form-field label {
    font-size: 0.75rem;
    padding: 8px 16px 2px 16px;
    background: transparent;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .form-field input,
  .form-field select {
    padding: 10px 16px;
    font-size: 1rem;
    height: 44px;
  }
  
  .search-btn {
    min-width: 100%;
    padding: 16px 24px;
    border-radius: 0;
  }
  
  .form-options {
    margin: 12px 0;
    justify-content: center;
  }
  
  /* Mobile calendar and select adjustments */
  .form-field input[type="date"],
  .form-field input[type="datetime-local"] {
    background-size: 14px;
    background-position: right 10px center;
    padding-right: 35px;
  }
  
  .form-field select {
    background-size: 14px;
    background-position: right 10px center;
    padding-right: 35px;
  }
  
  /* Mobile payment hint improvements */
  .payment-hint {
    margin: 20px auto 0;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 191, 166, 0.05) 0%, rgba(0, 191, 166, 0.1) 100%);
    border: 1px solid rgba(0, 191, 166, 0.2);
    box-shadow: 0 2px 12px rgba(0, 191, 166, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: fit-content;
    justify-content: center;
  }
  
  .hint-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .hint-text {
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .hint-text .hint-main-text {
    font-weight: 500;
    color: var(--text);
  }
  
  .hint-text .hint-toggle {
    margin-left: auto;
  }
  
  .hint-toggle {
    background: var(--accent);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 191, 166, 0.2);
  }
  
  .hint-toggle:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }
  
  .hint-details {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(0, 191, 166, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  .hint-details.expanded {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .hint-details p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-bg-image {
    opacity: 0.25;
    filter: blur(3px) brightness(1.3);
  }
  
  .hero-background::after {
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.98) 100%
    );
  }
  
  .booking-form {
    padding: 20px 16px;
    margin-bottom: 24px;
  }
  
  .booking-form h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .form-container {
    margin-bottom: 12px;
  }
  
  .form-field label {
    font-size: 0.7rem;
    padding: 6px 12px 1px 12px;
    letter-spacing: 0.3px;
  }
  
  .form-field input,
  .form-field select {
    padding: 8px 12px;
    font-size: 0.9rem;
    height: 38px;
  }
  
  .hero-cta .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  /* Extra small mobile payment hint */
  .payment-hint {
    margin: 16px auto 0;
    padding: 12px;
    gap: 8px;
    max-width: fit-content;
    justify-content: center;
  }
  
  .hint-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  
  .hint-text {
    font-size: 0.8rem;
    min-width: 150px;
  }
  
  .hint-toggle {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .modal-nav-btn {
    width: 44px;
    height: 44px;
  }
  
  .modal-nav-btn i {
    font-size: 1rem;
  }
  
  .modal-close {
    top: -35px;
    width: 36px;
    height: 36px;
  }
  
  .modal-close i {
    font-size: 0.9rem;
  }
}


