/* ==========================================================================
   OKL TRAVEL & RENT — VIP AUDI A8 L LANDING PAGE STYLESHEET
   Ultra-modern, luxury dark aesthetic with brushed gold accents.
   Engineered for 100% Core Web Vitals, animated contrast & micro-sparks.
   ========================================================================== */

:root {
  --bg-main: #060606;
  --bg-card: #0d0d0d;
  --bg-card-hover: #141311;
  --bg-glass: rgba(12, 12, 12, 0.82);
  --bg-glass-card: rgba(18, 17, 15, 0.85);
  
  --gold-primary: #d9b75f;
  --gold-light: #fae49d;
  --gold-dark: #9e7f33;
  --gold-gradient: linear-gradient(135deg, #fae49d 0%, #d9b75f 50%, #9e7f33 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #ecd07a 50%, #af8938 100%);
  --gold-glow: rgba(217, 183, 95, 0.35);
  --gold-glow-subtle: rgba(217, 183, 95, 0.14);
  --gold-border: rgba(217, 183, 95, 0.28);
  --gold-border-bright: rgba(245, 220, 139, 0.6);
  --gold-border-subtle: #242017;
  
  --text-white: #ffffff;
  --text-primary: #f2f2f2;
  --text-secondary: #aaaaaa;
  --text-muted: #737373;
  --text-gold: #e8cc7a;
  
  --border-dark: #1e1e1e;
  --border-gold-subtle: rgba(217, 183, 95, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-card: 0 14px 40px -10px rgba(0, 0, 0, 0.9), 0 0 1px 1px rgba(217, 183, 95, 0.18);
  --shadow-gold: 0 6px 25px rgba(217, 183, 95, 0.4);
  
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom Luxury Golden Scrollbar */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) #070707;
}

/* Chrome, Edge, Safari, Opera Golden Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #080808;
  border-left: 1px solid #1c1a14;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fae49d 0%, #d9b75f 50%, #9e7f33 100%);
  border-radius: 9999px;
  border: 2px solid #080808;
  box-shadow: 0 0 10px rgba(217, 183, 95, 0.45);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffffff 0%, #fae49d 50%, #b89535 100%);
  box-shadow: 0 0 18px rgba(217, 183, 95, 0.85);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(217, 183, 95, 0.09) 0%, transparent 65%),
    radial-gradient(rgba(217, 183, 95, 0.05) 1px, transparent 0);
  background-size: 100% 100%, 36px 36px;
  background-position: 0 0, 0 0;
  background-attachment: scroll, fixed;
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 74px; /* Mobile sticky action bar spacer */
  position: relative;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* Background Animated Sparks Canvas (Global Floating Layer) */
.bg-sparks-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10; /* Floats over backgrounds, beneath header/drawers */
}

/* Dedicated Hero Sparks Canvas (Right behind Hero text & cards) */
.hero-sparks-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Background Ambient Glow Orbs */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  animation: floatAmbient 22s ease-in-out infinite alternate;
}

.orb-1 {
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, #fae49d 0%, rgba(217, 183, 95, 0) 70%);
}

.orb-2 {
  top: 40%;
  left: -12%;
  background: radial-gradient(circle, #d9b75f 0%, rgba(217, 183, 95, 0) 70%);
  animation-delay: -8s;
}

.orb-3 {
  bottom: -10%;
  right: 12%;
  background: radial-gradient(circle, #b89535 0%, rgba(184, 149, 53, 0) 70%);
  animation-delay: -15s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0) scale(1); opacity: 0.10; }
  50% { transform: translate(45px, -35px) scale(1.18); opacity: 0.18; }
  100% { transform: translate(-35px, 45px) scale(0.92); opacity: 0.12; }
}

/* Ensure all page content stacks cleanly above sparks */
.top-bar, .site-header, main, .site-footer, .mobile-sticky-bar, .mobile-drawer, .mobile-drawer-overlay, .lightbox {
  position: relative;
  z-index: 2;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Typography & Utilities */
.text-gold {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(217, 183, 95, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 16px rgba(217, 183, 95, 0.12);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-light);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.section-subtitle {
  font-size: 0.82rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.14;
  color: var(--text-white);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.section-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.72;
}

/* Section Luxury Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 44px;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 183, 95, 0.4), transparent);
}

.divider-diamond {
  color: var(--gold-primary);
  font-size: 0.75rem;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: all var(--transition-smooth);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #070707;
  box-shadow: 0 8px 25px rgba(217, 183, 95, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(217, 183, 95, 0.55);
  background: var(--gold-gradient-hover);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(217, 183, 95, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(217, 183, 95, 0.14);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 183, 95, 0.2);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.82rem;
  border-radius: 6px;
}

.btn-block {
  width: 100%;
}

/* Top Bar Announcement */
.top-bar {
  position: relative;
  z-index: 1100; /* Higher than .site-header (1000) so dropdown menu floats above header */
  background: #020202;
  border-bottom: 1px solid #1a1712;
  padding: 8px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar a:hover {
  color: var(--gold-primary);
}

@media (max-width: 767px) {
  .top-bar {
    padding: 6px 0;
  }
  .top-bar-content {
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  .top-bar-left {
    display: none; /* Prevents awkward multi-line wrapping on small phone screens */
  }
  .top-bar-right {
    gap: 12px;
    font-size: 0.75rem;
    justify-content: center;
    width: 100%;
  }
  .top-bar-right a[href^="mailto:"] {
    display: none; /* Email is already in footer and drawer, hide here to keep phone + language selector uncluttered */
  }
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 183, 95, 0.16);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  max-width: 175px;
  transition: max-width var(--transition-fast);
}

@media (min-width: 768px) {
  .brand-logo {
    max-width: 235px;
  }
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cfcfcf;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition-fast);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .header-actions .btn-sm {
    padding: 9px 13px;
    font-size: 0.74rem;
    letter-spacing: 0.3px;
  }
}

.header-phone-link {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .header-phone-link {
    display: flex;
  }
}

.header-phone-link:hover {
  color: var(--gold-primary);
}

.header-phone-link svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 183, 95, 0.2);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background: #090909;
  border-left: 1px solid var(--gold-border-subtle);
  z-index: 1001;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0,0,0,0.9);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid #1c1a16;
  padding-bottom: 16px;
}

.mobile-drawer-close {
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: #e6e6e6;
  padding: 10px 0;
  border-bottom: 1px solid #171717;
}

.mobile-nav-links a:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 54px 0 74px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 76px 0 100px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 28px 0 46px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.35rem, 5.4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: #ffffff;
  margin-top: 18px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.15;
    margin-top: 14px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #c8c8c8;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 580px;
}

@media (max-width: 767px) {
  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.62;
    margin-bottom: 24px;
  }
  .badge {
    padding: 6px 13px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    max-width: 100%;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .hero-cta-group {
    gap: 12px;
    margin-bottom: 26px;
  }
  .hero-cta-group .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 0.88rem;
  }
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 183, 95, 0.15);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .hero-trust-row {
    padding-top: 18px;
    gap: 12px 16px;
  }
  .trust-item {
    font-size: 0.8rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #a0a0a0;
}

.trust-item svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* Hero Media / Banner Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: linear-gradient(145deg, rgba(245, 220, 139, 0.5) 0%, rgba(30, 30, 30, 0.6) 35%, rgba(217, 183, 95, 0.35) 100%);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 35px rgba(217, 183, 95, 0.18);
  animation: heroCardGlow 8s ease-in-out infinite alternate;
  overflow: hidden;
}

@keyframes heroCardGlow {
  0% { box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 25px rgba(217, 183, 95, 0.15); }
  100% { box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.98), 0 0 45px rgba(217, 183, 95, 0.28); }
}

/* Sweep light shimmer animation across the vehicle hero */
.hero-card-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.08) 45%, rgba(217, 183, 95, 0.22) 50%, transparent 60%);
  background-size: 200% 100%;
  pointer-events: none;
  animation: lightSweep 6.5s ease-in-out infinite;
}

@keyframes lightSweep {
  0% { background-position: -200% 0; }
  50%, 100% { background-position: 200% 0; }
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 3px);
  display: block;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.8);
}

@media (max-width: 480px) {
  .hero-floating-badge {
    position: static;
    margin-top: 16px;
  }
}

.floating-badge-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.floating-badge-text p {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.floating-badge-rating {
  text-align: right;
}

.stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(217, 183, 95, 0.6);
}

.rating-sub {
  font-size: 0.72rem;
  color: #999;
}

/* ==========================================================================
   ANIMATED STATS & TRUST STRIP (Filling Space with Contrast)
   ========================================================================== */
.stats-strip {
  padding: 36px 0;
  background: linear-gradient(180deg, rgba(16, 15, 12, 0.95) 0%, rgba(9, 9, 8, 0.95) 100%);
  border-top: 1px solid rgba(217, 183, 95, 0.2);
  border-bottom: 1px solid rgba(217, 183, 95, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 10px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(217, 183, 95, 0.25), transparent);
  display: none;
}

@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    display: block;
  }
}

.stat-number {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(217, 183, 95, 0.2);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   KEY SPECS STRIP
   ========================================================================== */
.specs-strip {
  padding: 34px 0;
  background: #090909;
  border-bottom: 1px solid #1a1710;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 768px) {
  .specs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.spec-box {
  background: rgba(18, 17, 15, 0.75);
  border: 1px solid rgba(217, 183, 95, 0.16);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(8px);
}

.spec-box:hover {
  border-color: var(--gold-primary);
  background: rgba(25, 23, 19, 0.95);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.8), 0 0 20px rgba(217, 183, 95, 0.18);
}

.spec-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 183, 95, 0.12);
  border: 1px solid var(--gold-border-subtle);
  border-radius: 50%;
  color: var(--gold-primary);
}

.spec-value {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

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

/* ==========================================================================
   VEHICLE SHOWCASE (AUDI A8 L DEEP DIVE)
   ========================================================================== */
.vehicle-section {
  padding: 85px 0;
}

.vehicle-feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 64px;
}

@media (min-width: 992px) {
  .vehicle-feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 58px;
  }
  
  .vehicle-feature-row.reverse {
    direction: rtl;
  }
  
  .vehicle-feature-row.reverse > * {
    direction: ltr;
  }
}

.vehicle-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 25px rgba(217, 183, 95, 0.12);
}

.vehicle-img-frame img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vehicle-img-frame:hover img {
  transform: scale(1.04);
}

.vehicle-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(7, 7, 7, 0.88);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(217, 183, 95, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(217, 183, 95, 0.2);
}

.feature-item strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.feature-item span {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Luxury Equipment Matrix (Fills empty space with high contrast cards) */
.equipment-section-card {
  background: rgba(15, 14, 12, 0.9);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  margin-top: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .equipment-section-card {
    padding: 48px;
  }
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

@media (min-width: 640px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.equipment-item {
  background: rgba(24, 22, 18, 0.7);
  border: 1px solid rgba(217, 183, 95, 0.18);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all var(--transition-fast);
}

.equipment-item:hover {
  border-color: var(--gold-primary);
  background: rgba(30, 27, 21, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6), 0 0 15px rgba(217, 183, 95, 0.15);
}

.equipment-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.equipment-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.equipment-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES GRID (VIP TRANSFERS, BUSINESS, AIRPORTS)
   ========================================================================== */
.services-section {
  padding: 90px 0;
  background: rgba(8, 8, 8, 0.7);
  border-top: 1px solid #1a1712;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(217, 183, 95, 0.22);
  background: var(--bg-card-hover);
}

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

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(217, 183, 95, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(217, 183, 95, 0.15);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.62;
  margin-bottom: 22px;
}

.service-card-perks {
  list-style: none;
  font-size: 0.84rem;
  color: #b5b5b5;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid #1f1f1f;
  padding-top: 18px;
  margin-bottom: 24px;
}

.service-card-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-perks li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-card-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.service-card:hover .service-card-cta {
  gap: 12px;
  color: var(--gold-light);
}

/* ==========================================================================
   VIP JOURNEY PROCESS (4-Step Timeline Filling Vertical Space)
   ========================================================================== */
.journey-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #090909 0%, #050505 100%);
  border-top: 1px solid #1a1711;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .journey-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.journey-card {
  background: rgba(16, 15, 13, 0.8);
  border: 1px solid rgba(217, 183, 95, 0.18);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  position: relative;
  transition: all var(--transition-smooth);
}

.journey-card:hover {
  border-color: var(--gold-primary);
  background: rgba(22, 20, 16, 0.95);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 20px rgba(217, 183, 95, 0.16);
}

.journey-step-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: inline-block;
  margin-bottom: 12px;
}

.journey-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

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

/* ==========================================================================
   THREE PILLARS (DYSKRECJA, PUNKTUALNOŚĆ, STANDARD)
   ========================================================================== */
.pillars-section {
  padding: 85px 0;
  border-top: 1px solid #141414;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background: linear-gradient(180deg, #12110e 0%, #090908 100%);
  border: 1px solid #221e17;
  border-radius: var(--radius-md);
  padding: 38px 28px;
  position: relative;
  transition: all var(--transition-smooth);
}

.pillar-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(217, 183, 95, 0.18);
  transform: translateY(-4px);
}

.pillar-number {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 14px;
  display: block;
}

.pillar-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   AIRPORTS ROUTE TABLE & INTERACTIVE ROUTE PILLS
   ========================================================================== */
.airports-section {
  padding: 85px 0;
  background: rgba(10, 10, 10, 0.7);
}

.airports-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .airports-container {
    padding: 48px;
  }
}

.airports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .airports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .airports-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.airport-badge-card {
  background: #11100e;
  border: 1px solid #24221c;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: all var(--transition-fast);
}

.airport-badge-card:hover {
  border-color: var(--gold-primary);
  background: #191713;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7), 0 0 18px rgba(217, 183, 95, 0.2);
}

.airport-code {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-primary);
  letter-spacing: 1.5px;
}

.airport-city {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 4px 0;
}

.airport-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Quick Route Chips / Pills (High Interaction & Dense Content) */
.routes-chips-wrapper {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid #1f1f1f;
  text-align: center;
}

.routes-chips-title {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 16px;
}

.routes-chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.route-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(217, 183, 95, 0.22);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #e0e0e0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.route-chip:hover {
  background: rgba(217, 183, 95, 0.16);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 183, 95, 0.2);
}

.route-chip svg {
  color: var(--gold-primary);
}

/* ==========================================================================
   INTERACTIVE BOOKING & INQUIRY GATEWAY
   ========================================================================== */
.booking-section {
  padding: 95px 0;
  position: relative;
}

.booking-wrapper {
  background: var(--bg-glass-card);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(217, 183, 95, 0.18);
  padding: 30px 20px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .booking-wrapper {
    padding: 52px;
  }
}

@media (max-width: 480px) {
  .booking-wrapper {
    padding: 22px 14px;
    border-radius: var(--radius-md);
  }
}

/* Shimmer on Booking Border */
.booking-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  box-shadow: 0 0 15px var(--gold-primary);
}

/* Booking Tabs — Ultra-responsive Mobile & Desktop */
.booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: #080808;
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  border: 1px solid #1f1d18;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 880px) {
  .booking-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 8px;
    margin-bottom: 34px;
  }
}

.booking-tab-btn {
  width: 100%;
  min-width: 0;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  color: #999999;
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 680px) {
  .booking-tab-btn {
    flex-direction: row;
    padding: 13px 12px;
    font-size: 0.86rem;
    gap: 7px;
  }
}

.booking-tab-btn .tab-icon {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
}

.booking-tab-btn .tab-text {
  display: inline-block;
  line-height: 1.22;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
  text-align: center;
}

.booking-tab-btn:hover:not(.active) {
  background: rgba(217, 183, 95, 0.08);
  color: #e5e5e5;
  border-color: rgba(217, 183, 95, 0.2);
}

.booking-tab-btn.active {
  background: var(--gold-gradient);
  color: #070707;
  box-shadow: 0 4px 18px rgba(217, 183, 95, 0.35);
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 800;
}

.booking-tab-btn.active .tab-icon,
.booking-tab-btn.active .tab-text {
  color: #070707;
}

@media (max-width: 350px) {
  .booking-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .booking-tab-btn {
    flex-direction: row;
    gap: 8px;
    padding: 12px;
  }
}

/* Datetime grid helper */
.booking-datetime-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
}

@media (max-width: 440px) {
  .booking-datetime-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Form Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .required {
  color: var(--gold-primary);
}

.form-control {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid #2b2820;
  border-radius: 8px;
  padding: 15px 16px;
  color: #ffffff;
  font-size: 0.94rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(217, 183, 95, 0.22);
  background: #141414;
}

.form-control::placeholder {
  color: #5e5e5e;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9b75f' 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 14px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Custom Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #8c8c8c;
  line-height: 1.55;
}

.checkbox-group input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--gold-primary);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* Form Status Messages */
.form-status {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22c55e;
  color: #4ade80;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid #ef4444;
  color: #f87171;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   PHOTO GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-section {
  padding: 90px 0;
  background: rgba(8, 8, 8, 0.8);
}

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #24221c;
  aspect-ratio: 16 / 10;
  background: #111;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,7,7,0.88) 0%, rgba(7,7,7,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.gallery-item-tag {
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 2px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 35px rgba(217, 183, 95, 0.25);
}

.lightbox-caption {
  margin-top: 16px;
  color: #f0f0f0;
  font-size: 1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  color: #fff;
  font-size: 36px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  border-top: 1px solid #181612;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid #24211a;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-border);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6), 0 0 15px rgba(217, 183, 95, 0.12);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 183, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-primary);
  color: #070707;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.72;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 26px 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #020202;
  border-top: 1px solid #1a1711;
  padding: 75px 0 32px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.footer-brand p {
  font-size: 0.92rem;
  color: #a0a0a0;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 360px;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-contact-list a {
  color: #c4c4c4;
}

.footer-contact-list a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid #161616;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.82rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR (High Conversion Mobile-First)
   ========================================================================== */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--gold-border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-btn {
  flex: 1;
  padding: 13px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
}

.mobile-sticky-call {
  background: #191713;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
}

.mobile-sticky-book {
  background: var(--gold-gradient);
  color: #070707;
  box-shadow: 0 4px 15px rgba(217, 183, 95, 0.35);
}

/* ==========================================================================
   ACCESSIBILITY & UTILITIES
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   LANGUAGE SELECTOR & MULTILINGUAL UI
   ========================================================================== */

/* Top Bar & Header Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
  z-index: 1110;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 183, 95, 0.28);
  color: #f0f0f0;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.lang-switch-btn:hover,
.lang-dropdown.active .lang-switch-btn {
  background: rgba(217, 183, 95, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.lang-switch-btn .lang-flag {
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lang-flag-img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
  display: inline-block;
  flex-shrink: 0;
}

.lang-toast-flag-img {
  width: 26px;
  height: 18px;
  border-radius: 3px;
}

.lang-switch-btn .lang-arrow {
  width: 9px;
  height: 9px;
  transition: transform 0.25s ease;
  fill: currentColor;
}

.lang-dropdown.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0d0d0d;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95), 0 0 20px rgba(217, 183, 95, 0.25);
  padding: 6px;
  min-width: 155px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  list-style: none;
}

.lang-dropdown.active .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #cccccc;
  border-radius: 5px;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.lang-dropdown-menu a:hover {
  background: rgba(217, 183, 95, 0.1);
  color: var(--gold-light);
}

.lang-dropdown-menu a.active {
  background: rgba(217, 183, 95, 0.18);
  color: var(--gold-primary);
  font-weight: 700;
}

/* Mobile Drawer Language Segmented Toggle */
.drawer-lang-selector {
  margin: 16px 0 6px 0;
  padding: 4px;
  background: #141414;
  border: 1px solid rgba(217, 183, 95, 0.2);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.drawer-lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 2px;
  border-radius: 6px;
  text-decoration: none;
  color: #999999;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  text-align: center;
}

.drawer-lang-btn .drawer-lang-flag {
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 2px;
}

.drawer-lang-btn.active {
  background: var(--gold-gradient);
  color: #070707;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(217, 183, 95, 0.35);
}

.drawer-lang-btn:hover:not(.active) {
  background: rgba(217, 183, 95, 0.1);
  color: #ffffff;
}

/* Footer Language Links */
.footer-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 14px 0 0 0;
}

.footer-lang-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #888888;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #1c1a16;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-lang-list a:hover {
  color: var(--gold-light);
  border-color: rgba(217, 183, 95, 0.3);
}

.footer-lang-list a.active {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  font-weight: 700;
}

/* ==========================================================================
   LANGUAGE AUTO-DETECTION TOAST BANNER (Obsidian & Brushed Gold)
   ========================================================================== */
.lang-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  width: calc(100% - 48px);
  background: rgba(14, 13, 11, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 183, 95, 0.45);
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(217, 183, 95, 0.2);
  padding: 16px 20px;
  z-index: 99999;
  transform: translateY(120px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
}

.lang-toast.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .lang-toast {
    bottom: 84px; /* Above mobile sticky bar */
    right: 14px;
    left: 14px;
    width: auto;
    padding: 14px 16px;
  }
}

.lang-toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lang-toast-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toast-flag {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.lang-toast-text {
  font-size: 0.84rem;
  color: #e5e5e5;
  line-height: 1.35;
}

.lang-toast-text strong {
  color: var(--gold-light);
  display: block;
  font-size: 0.9rem;
}

.lang-toast-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-toast-btn-switch {
  background: var(--gold-gradient);
  color: #070707;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(217, 183, 95, 0.35);
  transition: all var(--transition-fast);
}

.lang-toast-btn-switch:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(217, 183, 95, 0.5);
}

.lang-toast-btn-close {
  background: transparent;
  border: none;
  color: #888888;
  font-size: 1.2rem;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lang-toast-btn-close:hover {
  color: #ffffff;
}

/* ==========================================================================
   MULTILINGUAL SUBPAGE FORM STYLING & POLISH (EN / DE / NL / RU)
   Ensures identical premium Obsidian & Gold aesthetic across all language pages
   ========================================================================== */
.booking-tabs .booking-tab {
  width: 100%;
  min-width: 0;
  padding: 13px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #24211a;
  color: #999999;
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.booking-tabs .booking-tab:hover:not(.active) {
  background: rgba(217, 183, 95, 0.08);
  color: #e5e5e5;
  border-color: rgba(217, 183, 95, 0.25);
}

.booking-tabs .booking-tab.active {
  background: var(--gold-gradient);
  color: #070707;
  box-shadow: 0 4px 18px rgba(217, 183, 95, 0.35);
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 800;
}

/* Direct input styling for form-group without .form-control class */
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d6d6d6;
  margin-bottom: 2px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="datetime-local"],
.form-group textarea,
.form-group select {
  width: 100%;
  background: #0e0e0e;
  border: 1px solid #2b2820;
  border-radius: 8px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 0.94rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(217, 183, 95, 0.22);
  background: #141414;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555555;
}

/* datetime-local calendar picker icon styling in dark mode */
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(100%) saturate(300%) hue-rotate(5deg);
  cursor: pointer;
  opacity: 0.85;
}
.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Submit section in multilingual pages */
.form-submit-wrap {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-submit {
  width: 100%;
  padding: 18px 30px;
  font-size: 1.05rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #888888;
  text-align: center;
}

.form-guarantee svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.form-message {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-message.success {
  display: block !important;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22c55e;
  color: #4ade80;
}

.form-message.error {
  display: block !important;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid #ef4444;
  color: #f87171;
}

.field-error {
  font-size: 0.76rem;
  color: #f87171;
  margin-top: 3px;
  display: none;
}

@media (max-width: 639px) {
  .booking-tabs {
    grid-template-columns: 1fr;
  }
}

