@font-face {
  font-family: "JetBrains Mono";
  src: url(../fonts/JetBrainsMono-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --gold: #c9a96e;
  --gold-light: #e0c992;
  --gold-dark: #a8884f;
  --text-primary: #f5f0e8;
  --text-secondary: #b0a898;
  --text-muted: #7a7268;
  --border: rgba(201, 169, 110, 0.15);
  --border-light: rgba(201, 169, 110, 0.08);
  --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e0c992 50%, #a8884f 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.2);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-gap: 64px;
  --section-gap-mobile: 40px;
  --inner-padding: 48px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

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

.badge-werbung {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0a0a0a;
  background: var(--gradient-gold);
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.header-notice {
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 220px;
  line-height: 1.3;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  padding: 12px 16px;
  text-align: left;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  min-height: 44px;
}

.mobile-nav-link:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.hero {
  padding-top: 100px;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-gold {
  background: var(--gradient-gold);
  color: #0a0a0a;
}

.badge-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.badge-dark {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #0a0a0a;
  padding: 12px 28px;
  font-size: 0.85rem;
}

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

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 0.85rem;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(201, 169, 110, 0.1);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 12px 8px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.advantages {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.advantage-flag {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
}

.advantage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.advantage-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.routes {
  padding: var(--section-gap) 0;
  background: var(--bg-primary);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.route-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.route-card:hover .route-img img {
  transform: scale(1.05);
}

.route-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-popular {
  background: #e74c3c;
  color: #fff;
}

.badge-romantic {
  background: #e84393;
  color: #fff;
}

.badge-nature {
  background: #27ae60;
  color: #fff;
}

.badge-exclusive {
  background: var(--gradient-gold);
  color: #0a0a0a;
}

.badge-city {
  background: #2980b9;
  color: #fff;
}

.badge-vip {
  background: linear-gradient(135deg, #8e44ad, #9b59b6);
  color: #fff;
}

.route-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.route-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.route-duration {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  padding: 3px 10px;
  border-radius: 3px;
}

.route-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.route-body > p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.route-highlights {
  list-style: none;
  margin-bottom: 16px;
}

.route-highlights li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-highlights li i {
  color: var(--gold);
  font-size: 0.7rem;
}

.route-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.route-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.price-per {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.fleet {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.fleet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.fleet-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.fleet-text > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.spec-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.spec-card i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.spec-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fleet-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fleet-img-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.fleet-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-img-secondary {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.fleet-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.experience {
  padding: var(--section-gap) 0;
  background: var(--bg-primary);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.experience-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--gold-light);
  border: 1px solid var(--border);
}

.experience-overlay-badge i {
  font-size: 1.2rem;
  color: var(--gold);
}

.experience-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.experience-text > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.experience-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.exp-feature {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.exp-feature:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.exp-feature > i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.exp-feature h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.exp-feature p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(201, 169, 110, 0.12);
  position: absolute;
  top: 12px;
  right: 16px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 16px;
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-embedded {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}

.faq-embedded h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-embedded h3 i {
  color: var(--gold);
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s ease;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question i {
  color: var(--gold);
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
  max-height: 300px;
  padding-bottom: 16px;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.reviews {
  padding: var(--section-gap) 0;
  background: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars i {
  color: var(--gold);
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-route-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  padding: 4px 12px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.contact {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.perk i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form h3 i {
  color: var(--gold);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 32px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 300px;
}

.footer-contacts h4,
.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-company {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.footer-address,
.footer-email,
.footer-phone {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-address i,
.footer-email i,
.footer-phone i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 5px 0;
  text-align: left;
  transition: color 0.3s ease;
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
}

.footer-disclaimer h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.7;
  max-width: 900px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-image {
    order: -1;
  }

  .hero-img-wrapper {
    aspect-ratio: 16/9;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-inner {
    grid-template-columns: 1fr;
  }

  .experience-inner {
    grid-template-columns: 1fr;
  }

  .experience-image {
    aspect-ratio: 16/9;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-notice {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .header-right {
    margin-left: 0;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-inner {
    padding: 24px 16px 32px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .advantages,
  .routes,
  .fleet,
  .experience,
  .process,
  .reviews,
  .contact {
    padding: var(--section-gap-mobile) 0;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .fleet-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-features {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-wrapper {
    padding: 24px 16px;
  }

  .faq-embedded {
    padding: 20px 16px;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .fleet-specs {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer-disclaimer p {
    font-size: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
.legal-page {
  padding-top: 120px;
  padding-bottom: 64px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.legal-page::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.legal-content::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.legal-content h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  border-radius: 3px;
  background: var(--gradient-gold);
}

.legal-content .legal-date {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 34px 0 14px;
  padding-left: 18px;
  position: relative;
  z-index: 1;
}

.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--gradient-gold);
  transform: rotate(45deg);
  border-radius: 1px;
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 10px;
  position: relative;
  z-index: 1;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.legal-content ul,
.legal-content ol {
  list-style: none;
  padding-left: 0;
  margin: 16px 0;
  position: relative;
  z-index: 1;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.legal-content li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.legal-content ol {
  counter-reset: legal-counter;
}

.legal-content ol li {
  counter-increment: legal-counter;
  padding-left: 36px;
}

.legal-content ol li::before {
  content: counter(legal-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  border-radius: 4px;
  padding: 2px 7px;
  top: 2px;
}

.legal-content strong {
  color: var(--gold-light);
  font-weight: 600;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--gold);
}

.footer-reg,
.footer-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-reg i,
.footer-date i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

.footer-legal h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-legal a.footer-link {
  text-decoration: none;
}

.footer-inner {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .legal-page {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .legal-content {
    padding: 32px 22px;
    border-radius: 12px;
  }

  .legal-content h1 {
    font-size: 1.5rem;
  }

  .legal-content h2 {
    font-size: 1.3rem;
    margin-top: 26px;
  }

  .legal-content h3 {
    font-size: 1.15rem;
  }

  .legal-content p,
  .legal-content li {
    font-size: 0.95rem;
  }
}

.footer-reg,
.footer-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-reg i,
.footer-date i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
}

.footer-legal h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-legal a.footer-link {
  text-decoration: none;
}

.footer-inner {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .legal-page {
    padding-top: 96px;
    padding-bottom: 40px;
  }

  .legal-content {
    padding: 24px 12px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.4rem;
  }

  .legal-content h3 {
    font-size: 1.2rem;
  }
}
section[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 768px) {
  section[id] {
    scroll-margin-top: 78px;
  }
    .logo img {
      width: 36px;
      height: 36px;
    }
        .logo span {
          display: none;
        }
        body {
          word-break: break-word;
        }
}

/* Cookie consent banner */
.cookie-consent-banner{position:fixed;left:20px;right:20px;bottom:20px;z-index:99999;display:none;max-width:1180px;margin:0 auto;background:#111827;color:#fff;border:1px solid rgba(255,255,255,.18);border-radius:14px;box-shadow:0 18px 50px rgba(0,0,0,.35);padding:18px 20px;font-family:inherit}
.cookie-consent-banner.is-visible{display:block}
.cookie-consent-inner{display:flex;align-items:center;justify-content:space-between;gap:20px}
.cookie-consent-text{display:flex;flex-direction:column;gap:5px;line-height:1.45}
.cookie-consent-text strong{font-size:17px}
.cookie-consent-text span{font-size:14px;color:#e5e7eb}
.cookie-consent-text a{color:#e0c992;text-decoration:underline}
.cookie-consent-actions{display:flex;gap:10px;flex-shrink:0}
.cookie-consent-actions button{border:1px solid #c9a96e;border-radius:8px;padding:10px 18px;cursor:pointer;font:inherit;font-weight:700}
#cookie-decline{background:transparent;color:#fff}
#cookie-accept{background:#c9a96e;color:#111827}
@media(max-width:720px){.cookie-consent-banner{left:10px;right:10px;bottom:10px;padding:16px}.cookie-consent-inner{align-items:stretch;flex-direction:column}.cookie-consent-actions{width:100%}.cookie-consent-actions button{flex:1}}
