/* ==========================================================================
   FX Driving Experience - Premium Design System (Vanilla CSS)
   Theme: Carbon Dark, Neon Racing Red, White Typography, Glassmorphism
   ========================================================================== */

/* Fonts loaded via <link> in index.html for performance (no CSS @import render-block) */

:root {
  /* HSL Color System */
  --bg-main: hsl(222, 28%, 6%);         /* Carbon Black Deep Background */
  --bg-card: hsl(222, 24%, 10%);        /* Dark Carbon slate card background */
  --bg-card-hover: hsl(222, 24%, 14%);  /* Lighter card for hover hover states */
  --neon-red: hsl(346, 100%, 49%);       /* Racing Red Accent */
  --neon-red-glow: hsl(346, 100%, 49%, 0.3);
  --neon-red-dark: hsl(346, 100%, 35%);
  --text-primary: hsl(0, 0%, 100%);     /* Pure White */
  --text-secondary: hsl(218, 15%, 75%); /* Cool Grey */
  --text-muted: hsl(218, 10%, 50%);      /* Slate Grey */
  --border-color: hsl(222, 20%, 16%);   /* Subtle borders */
  --border-focus: hsl(346, 100%, 49%, 0.5);
  
  /* Layout Metrics */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-neon: 0 0 20px var(--neon-red-glow);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease-out;
  --transition-medium: all 0.25s ease-out;
  /* Gold accent — luxury motorsport premium */
  --gold-accent: hsl(38, 72%, 44%);
  --gold-accent-light: hsl(40, 85%, 60%);
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-red);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* CSS Base Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    /* `none` (nu translateY(0)) — cu fill-mode forwards, un transform rămas
       ar face ecranul containing block și ar strica position:fixed la copii
       (ex. bara sticky de total din booking pe mobil) */
    transform: none;
  }
}

@keyframes pulseRed {
  0% {
    box-shadow: 0 0 0 0 hsl(346, 100%, 49%, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px hsl(346, 100%, 49%, 0);
  }
  100% {
    box-shadow: 0 0 0 0 hsl(346, 100%, 49%, 0);
  }
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 15, 26, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 2rem;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--neon-red);
}

.logo-icon {
  background: var(--neon-red);
  color: var(--text-primary);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transform: skewX(-15deg);
  font-weight: 800;
  font-size: 1.1rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--neon-red);
  transition: var(--transition-fast);
}

nav a:hover {
  color: var(--neon-red);
}

nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  font-family: var(--font-display);
}

.btn-primary {
  background: var(--neon-red);
  color: var(--text-primary);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  background: var(--neon-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--neon-red);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-red {
  background: transparent;
  color: var(--neon-red);
  border: 1px solid var(--neon-red);
}

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

/* Page Section Utility */
section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--neon-red);
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 10;
  position: relative;
}

.hero-content {
  max-width: 750px;
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
  color: var(--neon-red);
  display: inline;
}

/* Sub-titlu cu cuvânt-cheie SEO sub wordmark-ul din H1 */
.hero-content h1 .hero-h1-kw {
  display: block;
  color: var(--text-secondary);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 0.9rem;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .hero-content h1 .hero-h1-kw {
    font-size: 1.1rem;
  }
}

.hero-content p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 650px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  z-index: 1;
  overflow: hidden;
  /* Posterul ca fundal: se vede instant și rămâne dacă videoul e ascuns (reduced-motion / no autoplay) */
  background: #07131e url('../video/hero-poster.webp') center center / cover no-repeat;
}

.hero-visual video, .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide img {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-visual .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 10, 18, 0.85) 0%, rgba(7, 10, 18, 0.45) 50%, rgba(7, 10, 18, 0.9) 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  background: rgba(10, 15, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.hero-stat-item h3 {
  color: var(--neon-red);
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.hero-stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0 !important;
}

/* Background Design elements */
.bg-glow-orange {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 60, 0.08) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

/* Packages / Pricing section */
#pricing {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 1.2rem;
}

/* ===== Pagina dedicată "Prețuri" — grupare OPEN / PRO ===== */
.pricing-group {
  margin-bottom: 3.5rem;
}
.pricing-group-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pricing-group-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}
.pricing-group-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  color: #fff;
}
.pricing-group-badge-open {
  background: var(--neon-red);
  box-shadow: var(--shadow-neon);
}
.pricing-group-badge-pro {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* ===== FAQ accordion ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-item[open] {
  border-color: var(--neon-red);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--neon-red);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: "\2212"; /* minus */
}
.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer p {
  margin: 0;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.package-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

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

.package-body {
  padding: 1.6rem 1.8rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-laps {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-red);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.package-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.package-description {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  min-height: 2.8em;
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.package-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.package-features li i {
  color: #22c55e;
  margin-top: 0.15rem;
}

.package-card .btn {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

/* Specific item highlight */
.package-card.highlighted {
  border-color: var(--neon-red);
  box-shadow: var(--shadow-neon);
}

.package-card.highlighted::before {
  display: none; /* replaced by .pkg-f1-popular badge inside the F1 header */
}

.pkg-f1-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--neon-red);
  padding: 0.28rem 1rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 16px rgba(255, 0, 60, 0.6);
}


/* Vehicle Specs Section */
.vehicle-selector {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 4rem;
}

.vehicle-selector-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
  color: var(--text-primary);
  border-color: var(--neon-red);
  background: rgba(255, 0, 60, 0.05);
}

.vehicle-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vehicle-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.vehicle-image-container img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  transition: var(--transition-smooth);
}

.vehicle-image-container img:hover {
  transform: scale(1.03) rotate(-2deg);
}

.vehicle-info h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.vehicle-info .tagline {
  color: var(--neon-red);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spec-item {
  border-left: 2px solid var(--border-color);
  padding-left: 1.2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-item:hover {
  border-color: var(--neon-red);
}

.spec-item h5 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.spec-item p {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Tier description — inline typewriter segment inside pricing toggle pill */
.tier-desc-typing {
  padding: 0.5rem 1.4rem 0.5rem 1.1rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-style: italic;
  border-left: 1px solid var(--border-color);
  white-space: nowrap;
}
.tier-desc-typing--sm {
  padding: 0.3rem 1.1rem 0.3rem 0.9rem;
  font-size: 0.8rem;
}
.tier-desc-typing::after {
  content: '|';
  color: var(--neon-red);
  animation: tierCursorBlink 0.55s step-end infinite;
  margin-left: 1px;
  opacity: 0;
}
.tier-desc-typing.is-typing::after {
  opacity: 1;
}
@keyframes tierCursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Track Section */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.track-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.circuit-svg, .circuit-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  transition: var(--transition-smooth);
}

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

.track-title {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.track-info-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.track-info-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.track-stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.track-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.track-stat-row i {
  color: var(--neon-red);
  margin-top: 0.3rem;
}

.track-stat-row p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Single Page Routing - Screens */
.route-screen {
  display: none;
  /* Fără `forwards`: Chrome ar reține transformul interpolat (matrice identitate)
     după animație, ceea ce face ecranul containing block și strică position:fixed
     la copii (bara sticky de total din booking pe mobil). Starea finală a animației
     coincide cu starea naturală, deci fill-mode nu e necesar. */
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-screen.active {
  display: block;
}

/* Booking Flow */
.booking-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.booking-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

/* Grid of option cards (for selecting packages in form) */
.package-select-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.package-option-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-option-card:hover, .package-option-card.selected {
  border-color: var(--neon-red);
  background: rgba(255, 0, 60, 0.03);
}

.package-option-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.package-option-details p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.package-option-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Date picker Grid */
.date-selector-container {
  margin-bottom: 2rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.calendar-day {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.calendar-day.unavailable {
  opacity: 0.2;
  cursor: not-allowed;
}

.calendar-day.available {
  border-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.available:hover {
  border-color: var(--neon-red);
  background: rgba(255, 0, 60, 0.05);
}

.calendar-day.selected {
  background: var(--neon-red);
  color: var(--text-primary);
  border-color: var(--neon-red);
  box-shadow: var(--shadow-neon);
}

.calendar-day-header {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

/* Credit Card Form & interactive card */
.payment-flow-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.credit-card-preview {
  perspective: 1000px;
  width: 100%;
  max-width: 380px;
  height: 220px;
  margin: 0 auto 1.5rem auto;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.credit-card-preview.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.card-front {
  background: linear-gradient(135deg, hsl(222, 24%, 18%) 0%, hsl(222, 28%, 6%) 100%);
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}

.card-back {
  background: linear-gradient(135deg, hsl(222, 24%, 10%) 0%, hsl(222, 28%, 4%) 100%);
  transform: rotateY(180deg);
  transform-style: preserve-3d;
  padding-left: 0;
  padding-right: 0;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: radial-gradient(circle, #ffe066 0%, #d4af37 100%);
  border-radius: 4px;
}

.card-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.2rem;
  align-self: flex-end;
}

.card-number-display {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  word-spacing: 0.1em;
  margin-top: 1rem;
  color: var(--text-primary);
}

.card-details-display {
  display: flex;
  justify-content: space-between;
}

.card-holder-display label, .card-expiry-display label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.card-holder-display p, .card-expiry-display p {
  font-size: 0.85rem;
  font-weight: 500;
}

.card-black-stripe {
  width: 100%;
  height: 45px;
  background: #000;
  margin-top: 1rem;
}

.card-cvv-display {
  padding: 0 1.5rem;
  margin-top: 1.5rem;
  text-align: right;
}

.card-cvv-display label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}

.card-cvv-white-stripe {
  background: #fff;
  height: 35px;
  color: #000;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  display: inline-block;
  width: 120px;
  text-align: right;
  letter-spacing: 0.1em;
}

/* Sidebar Order Summary */
.booking-summary-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.booking-summary-sidebar h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.8rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.summary-row.total {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* Drag and Drop File Upload */
.upload-zone {
  border: 2px dashed var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 1.5rem;
  position: relative;
}

.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--neon-red);
  background: rgba(255, 0, 60, 0.02);
}

.upload-zone i {
  font-size: 2.5rem;
  color: var(--neon-red);
  margin-bottom: 1rem;
}

.upload-zone h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.upload-zone p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.file-input {
  display: none;
}

.upload-preview {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
}

.upload-preview img {
  width: 80px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.preview-info h6 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.preview-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.remove-file-btn {
  color: var(--neon-red);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Digital Signature Canvas and agreement */
.contract-viewer {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 250px;
  overflow-y: scroll;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  white-space: pre-wrap;
  margin-bottom: 2rem;
}

.signature-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.signature-canvas-wrapper {
  background: #0d121f;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  height: 200px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.signature-canvas-wrapper canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  touch-action: none; /* Blochează gesturile browserului pentru desenare fluidă cu trackpad sau pe touch */
}

.signature-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Booking confirmation screen styling */
.success-screen-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4rem;
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  animation: pulseGreen 2s infinite;
}

/* Pașii următori după trimiterea cererii */
.booking-next-steps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: left;
  margin: 0 auto 2.5rem auto;
  max-width: 520px;
}
.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
}
.next-step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--neon-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon);
}
.next-step-body h4 {
  font-size: 1rem;
  margin: 0 0 0.3rem 0;
  color: var(--text-primary);
}
.next-step-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.booking-code-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.booking-code-box h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.booking-code-box p {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-red);
  letter-spacing: 0.1em;
}

/* Admin Dashboard screen style */
.admin-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  min-height: 70vh;
}

.admin-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-menu-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.admin-menu-btn:hover, .admin-menu-btn.active {
  background: rgba(255, 0, 60, 0.05);
  color: var(--text-primary);
  border-left: 3px solid var(--neon-red);
}

.admin-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 3rem;
}

.admin-panel-section {
  display: none;
}

.admin-panel-section.active {
  display: block;
}

/* Admin Data Table */
.admin-table-container {
  overflow-x: auto;
  margin-top: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.01);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
}

.badge-success { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.badge-warning { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.badge-danger { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

/* Document Viewer & Modal in Admin */
.admin-actions-cell {
  display: flex;
  gap: 0.5rem;
}

.btn-table-action {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

.admin-document-preview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3rem;
  animation: fadeInUp 0.4s ease;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--neon-red);
}

.modal-documents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.modal-doc-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.modal-doc-box img {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  border: 1px solid var(--border-color);
}

.modal-signature-box img {
  background: #0d121f;
  height: 120px;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  border: 1px solid var(--border-color);
}

/* Content Manager Form styling */
.content-manager-section h3 {
  margin-bottom: 2rem;
}

.content-group-title {
  font-size: 1.2rem;
  color: var(--neon-red);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--neon-red);
  padding-left: 0.75rem;
}

/* Footer Section */
footer {
  background: #070a12;
  border-top: 1px solid var(--border-color);
  padding: 2rem 2rem 2rem 2rem;
  margin-top: 8rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto 3rem auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-column h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
  color: var(--neon-red);
  padding-left: 5px;
}

.footer-column p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Iconițe sociale + hartă (discrete) în footer */
.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}
.footer-social a:hover {
  border-color: var(--neon-red);
  color: var(--neon-red);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--neon-red);
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 560px;
  margin: 3rem auto;
  align-items: start;
}

/* Divider vertical între secțiunile Destinatar și Cumpărător (doar la voucher, pe desktop) */
@media (min-width: 769px) {
  #booking-right-col.voucher-divider {
    border-left: 1px solid var(--border-color);
    padding-left: 2.5rem;
  }
}

.driver-req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem;
}

/* Booking Step Indicator */
.booking-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.step-indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-indicator-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.step-indicator-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 600;
  font-family: var(--font-display);
}

.step-indicator-line {
  flex: 1;
  height: 2px;
  background: var(--border-color);
  min-width: 60px;
  margin-bottom: 1.4rem;
  transition: background 0.4s ease;
}

.step-indicator-item.active .step-indicator-circle {
  background: var(--neon-red);
  border-color: var(--neon-red);
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.step-indicator-item.active .step-indicator-label {
  color: var(--neon-red);
}

.step-indicator-item.completed .step-indicator-circle {
  background: rgba(34, 197, 94, 0.15);
  border-color: #22c55e;
  color: #22c55e;
}

.step-indicator-item.completed .step-indicator-label {
  color: #22c55e;
}

.step-indicator-line.completed {
  background: #22c55e;
}

@media (max-width: 480px) {
  .step-indicator-line { min-width: 28px; }
  .step-indicator-label { font-size: 0.6rem; }
  .step-indicator-circle { width: 30px; height: 30px; font-size: 0.8rem; }
}

/* Calendar navigation */
.calendar-nav-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.calendar-nav-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.75rem;
}

.calendar-nav-btn:hover:not(:disabled) {
  border-color: var(--neon-red);
  color: var(--neon-red);
}

.calendar-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.calendar-month-label {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: capitalize;
  color: var(--text-primary);
}

/* Responsive Grid / Media Queries */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid > *:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  section {
    padding: 4rem 1.5rem;
  }
  #screen-specs > section {
    padding-top: 5.5rem;
  }
  .vehicle-selector {
    padding: 2.5rem;
  }
  .vehicle-details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .track-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .booking-container {
    grid-template-columns: 1fr;
  }
  .booking-summary-sidebar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 15, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
    margin-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 0;
  }
  .booking-summary-sidebar h4,
  .booking-summary-sidebar .discount-code-container,
  .booking-summary-sidebar .summary-row:not(.total) {
    display: none;
  }
  .booking-summary-sidebar .summary-row.total {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }
  .booking-summary-sidebar .summary-row.total span:first-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
  }
  .booking-summary-sidebar .summary-row.total span:last-child {
    font-size: 1.35rem;
    color: var(--neon-red);
    font-weight: 800;
  }
  #booking-sidebar-navigation {
    margin-top: 0 !important;
    flex-grow: 1;
    max-width: 240px;
  }
  #booking-sidebar-navigation .btn {
    padding: 0.65rem 1rem !important;
    font-size: 0.8rem !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .gift-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin: 1.5rem auto !important;
  }
  .driver-req-grid {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1.2rem !important;
  }
  .admin-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  nav {
    display: none; /* In simple SPA we keep a minimal mobile view or link triggers */
  }
  .hero-content h1 {
    font-size: 2.6rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid > *:last-child {
    grid-column: span 1;
  }
  .vehicle-selector-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .modal-documents-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Responsive Grid for Step 2 Checkout (Calendar side-by-side) */
@media (max-width: 992px) {
  .booking-step-2-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* Tablete (769–992px): meniul orizontal nu încape fără să se rupă pe rânduri.
   Activarea efectivă a bottom-nav la ≤992px e plasată la finalul fișierului,
   ca să fie după regula de bază `.mobile-bottom-nav{display:none}`. */
@media (max-width: 992px) {
  nav {
    display: none;
  }
}

/* Portal: grila celor două zone de upload (CI + permis) — pe mobil, o coloană */
.portal-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 640px) {
  .portal-docs-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop îngust / tabletă landscape (993–1199px): compactăm meniul ca să
   rămână pe un singur rând (altfel „Oferă un Cadou" se rupea vertical) */
@media (min-width: 993px) and (max-width: 1199px) {
  header {
    padding: 1rem 1.2rem;
  }
  .logo {
    font-size: 1.25rem;
  }
  nav ul {
    gap: 1.1rem;
  }
  nav a {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .nav-actions {
    gap: 0.8rem;
  }
  .nav-actions .btn {
    padding: 0.55rem 1rem !important;
    font-size: 0.78rem !important;
    white-space: nowrap;
  }
}

/* ==========================================================================
   COLOR-CODED PRICING CARD TIERS (Bronze, Silver, Gold, Pro)
   ========================================================================== */
.package-card.tier-bronze {
  border-top: 6px solid #cd7f32;
}
.package-card.tier-bronze .package-laps {
  color: #cd7f32 !important;
}
.package-card.tier-bronze:hover, .package-card.tier-bronze.highlighted {
  border-color: #cd7f32 !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(205, 127, 50, 0.28),
    0 0 24px rgba(205, 127, 50, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.package-card.tier-silver {
  border-top: 6px solid #a0aec0;
}
.package-card.tier-silver .package-laps {
  color: #a0aec0 !important;
}
.package-card.tier-silver:hover, .package-card.tier-silver.highlighted {
  border-color: #a0aec0 !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(160, 174, 192, 0.28),
    0 0 24px rgba(160, 174, 192, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.package-card.tier-gold {
  border-top: 6px solid #f1c40f;
}
.package-card.tier-gold .package-laps {
  color: #f1c40f !important;
}
.package-card.tier-gold:hover, .package-card.tier-gold.highlighted {
  border-color: #f1c40f !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(241, 196, 15, 0.36),
    0 0 30px rgba(241, 196, 15, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.package-card.tier-pro-1 {
  border-top: 6px solid #9ca3af;
}
.package-card.tier-pro-1 .package-laps {
  color: #9ca3af !important;
}
.package-card.tier-pro-1:hover, .package-card.tier-pro-1.highlighted {
  border-color: #9ca3af !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(156, 163, 175, 0.28),
    0 0 24px rgba(156, 163, 175, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.package-card.tier-pro-2 {
  border-top: 6px solid #ef4444;
}
.package-card.tier-pro-2 .package-laps {
  color: #ef4444 !important;
}
.package-card.tier-pro-2:hover, .package-card.tier-pro-2.highlighted {
  border-color: #ef4444 !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(239, 68, 68, 0.32),
    0 0 28px rgba(239, 68, 68, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.package-card.tier-pro-3 {
  border-top: 6px solid #06b6d4;
}
.package-card.tier-pro-3 .package-laps {
  color: #06b6d4 !important;
}
.package-card.tier-pro-3:hover, .package-card.tier-pro-3.highlighted {
  border-color: #06b6d4 !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(6, 182, 212, 0.32),
    0 0 28px rgba(6, 182, 212, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

/* ==========================================================================
   F1 TIMING-BOARD CARD HEADERS (Per-tier color via CSS custom property)
   ========================================================================== */
.tier-bronze { --tier-color: #cd7f32; --tier-color-rgb: 205,127,50; }
.tier-silver { --tier-color: #a0aec0; --tier-color-rgb: 160,174,192; }
.tier-gold   { --tier-color: #f1c40f; --tier-color-rgb: 241,196,15; }
.tier-pro-1  { --tier-color: #9ca3af; --tier-color-rgb: 156,163,175; }
.tier-pro-2  { --tier-color: #ef4444; --tier-color-rgb: 239,68,68; }
.tier-pro-3  { --tier-color: #06b6d4; --tier-color-rgb: 6,182,212; }

.pkg-f1-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.1rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}

.pkg-f1-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pkg-f1-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tier-color);
  box-shadow: 0 0 7px var(--tier-color);
  flex-shrink: 0;
}

.pkg-f1-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--tier-color);
  font-family: var(--font-display, 'Outfit', sans-serif);
}

.pkg-f1-laps {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.pkg-f1-sectors {
  display: flex;
  gap: 3px;
  padding: 0 1.1rem;
  margin-top: -1px;
}

.pkg-f1-sector {
  height: 3px;
  flex: 1;
  border-radius: 0 0 2px 2px;
  background: var(--tier-color);
  opacity: 0.75;
}

.pkg-f1-sector-dim {
  opacity: 0.2;
}

/* ==========================================================================
   F1 TIMING-BOARD GIFT VOUCHER MOCKUP
   ========================================================================== */
.f1-voucher-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 3rem;
  max-width: 430px;
}

.f1-voucher-card {
  width: 100%;
  background: #070b12;
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-display, 'Outfit', sans-serif);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.06);
  border-top: 3px solid var(--neon-red);
  user-select: none;
}

.f1-vc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  background: #0d1117;
}

.f1-vc-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.f1-vc-num {
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.f1-vc-brand {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.f1-vc-badge {
  background: var(--neon-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.f1-vc-redline {
  height: 2px;
  background: linear-gradient(90deg, var(--neon-red) 40%, transparent 100%);
}

.f1-vc-body {
  padding: 1.2rem 1.1rem 0.5rem;
}

.f1-vc-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.f1-vc-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.f1-vc-sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 1.1rem 1.1rem;
}

.f1-vc-sector {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f1-vc-sector-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  display: block;
  transition: background 0.3s ease;
}

.f1-vc-sector.lit .f1-vc-sector-bar {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.f1-vc-sector-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: color 0.3s ease;
}

.f1-vc-sector.lit .f1-vc-sector-label {
  color: #22c55e;
}

.f1-voucher-caption {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  font-style: italic;
}

/* ==========================================================================
   MOBILE DESIGN OPTIMIZATIONS (Bottom Navigation, Stats, Specs & Padding)
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 0.65rem 0.5rem;
  justify-content: space-around;
  align-items: center;
  z-index: 998;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0.25rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  flex: 1;
}

.mobile-nav-item i {
  font-size: 1.15rem;
}

.mobile-nav-item.active {
  color: var(--neon-red);
  text-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
}

@media (max-width: 768px) {
  /* Activate Mobile Bottom Bar and offset page body */
  .mobile-bottom-nav {
    display: flex;
  }
  
  body {
    padding-bottom: 75px !important;
  }
  
  /* Navigation Top Header: Hide phone, show logo and CTA only */
  #nav-phone {
    display: none !important;
  }
  
  header {
    padding: 0.8rem 1.2rem !important;
  }
  
  /* Hero stats optimization on small mobile */
  .hero-stats {
    gap: 1.2rem !important;
    padding: 0.8rem 1.2rem !important;
    width: 100% !important;
    justify-content: space-around !important;
    margin-top: 1.5rem !important;
    background: rgba(10, 15, 26, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  
  .hero-stat-item h3 {
    font-size: 1.4rem !important;
  }
  
  .hero-stat-item p {
    font-size: 0.65rem !important;
  }

  /* Form & Page Panels Padding Optimization */
  section {
    padding: 3rem 1rem !important; /* Smaller paddings on sides for maximum screen real-estate */
  }
  #screen-specs > section {
    padding-top: 5rem !important;
  }
  
  .booking-panel {
    padding: 1.2rem !important;
  }
  
  .booking-step h3 {
    font-size: 1.35rem !important;
    margin-bottom: 1.2rem !important;
    padding-bottom: 0.6rem !important;
  }
  
  /* Vehicle specifications responsive view */
  .vehicle-selector {
    padding: 1.2rem !important;
  }
  
  .specs-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  
  .spec-item {
    padding-left: 0.8rem !important;
  }
  
  /* Circuit visual optimization */
  .track-visual {
    padding: 1.5rem !important;
  }
  
  .circuit-svg, .circuit-img {
    max-width: 230px !important;
  }

  /* Card Credit Form 3D responsiveness */
  .credit-card-preview {
    height: 185px !important;
    max-width: 320px !important;
    margin-bottom: 1rem !important;
  }
  
  .card-face {
    padding: 1rem !important;
  }
  
  .card-number-display {
    font-size: 1.15rem !important;
    letter-spacing: 0.08em !important;
    margin-top: 0.5rem !important;
  }
  
  .card-holder-display p, .card-expiry-display p {
    font-size: 0.78rem !important;
  }
  
  .card-cvv-white-stripe {
    width: 90px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
    padding: 0.2rem 0.6rem !important;
  }
  
  .card-black-stripe {
    height: 35px !important;
    margin-top: 0.6rem !important;
  }
  
  .card-chip {
    width: 32px !important;
    height: 24px !important;
  }

  /* Admin document modal optimizations on mobile */
  .admin-document-preview-modal {
    padding: 0.5rem !important;
  }
  .modal-content-card {
    padding: 1.5rem 1rem !important;
  }
  .modal-documents-grid {
    gap: 1rem !important;
  }
  .modal-doc-box {
    padding: 1rem !important;
  }
  .modal-doc-box img {
    height: 180px !important;
  }
  .modal-signature-box img {
    height: 90px !important;
  }
  
  /* Body bottom padding adjustment when checkout or portal is active */
  body.checkout-active {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.1rem !important;
  }
  
  .hero-content p {
    font-size: 0.95rem !important;
  }
  
  .btn {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.88rem !important;
  }

  /* Header Logo & Button adjustments on very small mobile screens */
  .logo-text {
    font-size: 1rem !important;
  }
  .logo-icon {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.9rem !important;
  }
  header .btn {
    padding: 0.45rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
  header {
    padding: 0.6rem 0.8rem !important;
  }

  /* Stack hero buttons on narrow screens */
  .hero-buttons {
    flex-direction: column !important;
    gap: 0.8rem !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
  }

  /* Calendar day cell sizing & clean green available dot for narrow mobile screens */
  .calendar-grid {
    gap: 0.25rem !important;
  }
  .calendar-day {
    font-size: 0.8rem !important;
    padding: 0.2rem !important;
  }
  .calendar-day span {
    display: none !important;
  }
  .calendar-day.available::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #22c55e;
    border-radius: 50%;
    margin-top: 2px;
  }
  .calendar-day.selected::after {
    background: #fff;
  }
}

/* ===================================================================
   DESIGN UPGRADE v2 — Motorsport Aesthetic Enhancement Layer
   =================================================================== */

/* 1. Subtle dot-grid background texture for visual depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* 2. Animated top shimmer accent bar */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--neon-red) 30%,
    hsl(346,100%,65%) 50%,
    var(--neon-red) 70%,
    transparent 100%);
  background-size: 300% 100%;
  animation: topShimmer 5s linear infinite;
  z-index: 10001;
  pointer-events: none;
}

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

/* 3. Section header h2 — red pip accent above */
.section-header h2::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--neon-red);
  box-shadow: 0 0 14px rgba(255, 0, 60, 0.6);
  margin: 0 auto 1rem auto;
  border-radius: 2px;
}

/* 4. Hero h1 — F1-style left gradient stripe above title */
.hero-content h1::before {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-red) 60%, transparent);
  margin-bottom: 1rem;
  border-radius: 2px;
}

/* 5. Primary button — overflow hidden for clean edges */
.btn-primary {
  position: relative;
  overflow: hidden;
}

/* 6. Spec items — telemetry panel background + red dot on hover */
.spec-item {
  background: rgba(0, 0, 0, 0.22);
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.spec-item h5::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--neon-red);
  border-radius: 50%;
  margin-left: 0.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  vertical-align: middle;
}

.spec-item:hover h5::after {
  opacity: 1;
}

/* 7. Hero stat values — staggered live glow pulse */
@keyframes liveGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(255, 0, 60, 0.25); }
  50%       { text-shadow: 0 0 22px rgba(255, 0, 60, 0.65), 0 0 45px rgba(255, 0, 60, 0.2); }
}

.hero-stat-item h3 {
  animation: liveGlow 3.5s ease-in-out infinite;
}
.hero-stat-item:nth-child(2) h3 { animation-delay: 1.2s; }
.hero-stat-item:nth-child(3) h3 { animation-delay: 2.4s; }

/* 8. Enhanced glassmorphism for hero stats bar */
.hero-stats {
  background: rgba(6, 9, 16, 0.74);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* 9. Package card hover — handled by base rule + tier-specific rules above */

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: hsl(222, 26%, 11%);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.45);
  padding: 1rem 2rem;
  animation: cookieBannerIn 0.35s ease-out;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}
.cookie-banner-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.cookie-banner-text p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.cookie-link-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  color: var(--neon-red);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: inherit;
}
.cookie-link-btn:hover { opacity: 0.8; }
.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-display);
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-1px); opacity: 0.9; }
.cookie-btn-accept {
  background: var(--neon-red);
  color: #fff;
  border-color: var(--neon-red);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-color);
}
.cookie-btn-prefs {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-color);
}
@media (max-width: 640px) {
  .cookie-banner { padding: 1rem; }
  .cookie-banner-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem 1rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}
.cookie-modal-header h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.cookie-modal-body {
  overflow-y: auto;
  padding: 1.2rem 1.4rem;
  flex: 1;
}
.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
  justify-content: flex-end;
}
.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}
.cookie-category-header strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cookie-category p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.cookie-always-on {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border-radius: 20px;
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
}
/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle-disabled { opacity: 0.5; cursor: not-allowed; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle-knob {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 22px;
  transition: background 0.2s ease;
}
.cookie-toggle-knob::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.cookie-toggle input:checked + .cookie-toggle-knob {
  background: var(--neon-red);
}
.cookie-toggle input:checked + .cookie-toggle-knob::after {
  transform: translateX(18px);
}
.cookie-toggle-disabled .cookie-toggle-knob {
  background: #22c55e;
}
.cookie-toggle-disabled .cookie-toggle-knob::after {
  transform: translateX(18px);
}

/* ==========================================================================
   WHATSAPP FLOATING ACTION BUTTON
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.3);
  z-index: 950;
  transition: transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.22s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: 4.5rem; /* clearance peste mobile nav */
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.45rem;
  }
}

/* ==========================================================================
   EXPERIENCE DAY SECTION (screen-specs)
   ========================================================================== */
.experience-day-section {
  padding: 0 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.experience-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .experience-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .experience-steps-grid { grid-template-columns: 1fr; }
}
.experience-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.4rem 1.4rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.experience-step:hover {
  border-color: rgba(255, 0, 60, 0.35);
  background: var(--bg-card-hover);
}
.experience-step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--neon-red);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.experience-step-highlight {
  border-color: rgba(255, 0, 60, 0.2);
  background: rgba(255, 0, 60, 0.03);
}
.experience-step-highlight .experience-step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 0, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-red);
  font-size: 1rem;
  flex-shrink: 0;
}
.experience-step-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.experience-step-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.experience-includes {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--neon-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.6rem 2rem;
}
.experience-includes h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.experience-includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 2rem;
}
@media (max-width: 640px) {
  .experience-includes-list { grid-template-columns: 1fr; }
}
.experience-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.experience-includes-list li .fas {
  color: #22c55e;
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ==========================================================================
   ELIGIBILITY & LEGAL SECTION (screen-circuit)
   ========================================================================== */
.eligibility-legal-section {
  padding: 0 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 700px) {
  .eligibility-grid { grid-template-columns: 1fr; }
}
.eligibility-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.eligibility-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-card-hover);
}
.eligibility-card-warning {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.03);
}
.eligibility-card-warning:hover {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.05);
}
.eligibility-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.eligibility-card-warning .eligibility-card-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.eligibility-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.eligibility-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.eligibility-note {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}
.eligibility-note .fas {
  color: var(--neon-red);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ==========================================================================
   DATE OPTIONS — 2-card selector (replaces full calendar)
   ========================================================================== */
.date-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.date-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.date-option-card:hover {
  border-color: rgba(255, 0, 60, 0.45);
  background: rgba(255,255,255,0.04);
}
.date-option-card.selected {
  border-color: var(--neon-red);
  background: rgba(255, 0, 60, 0.06);
  box-shadow: 0 0 0 1px rgba(255, 0, 60, 0.2);
}
.date-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 0, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neon-red);
  flex-shrink: 0;
}
.date-option-card.date-option-flexible .date-option-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}
.date-option-card.date-option-flexible.selected {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.05);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.2);
}

/* === Calendar disponibilitate date === */
.cal-legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.9rem; }
.cal-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.cal-dot-avail { background: #22c55e; }
.cal-dot-tentative { background: #f5a623; }
.cal-dot-soldout { background: rgba(255, 255, 255, 0.12); border: 1px solid #6b7280; }
.cal-dot-off { background: rgba(255, 255, 255, 0.15); }
.cal-months { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 1rem; }
.cal-month { background: rgba(255, 255, 255, 0.015); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 0.9rem 0.8rem; }
.cal-month-title { text-align: center; font-weight: 700; font-size: 0.88rem; color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.cal-month-single { max-width: 360px; margin: 0 auto; }
.cal-nav { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.cal-nav-btn {
  background: var(--bg-card, #11161f);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.85rem;
  transition: var(--transition-smooth);
}
.cal-nav-btn:hover:not(:disabled) {
  background: var(--neon-red);
  border-color: var(--neon-red);
  color: #fff;
  box-shadow: var(--shadow-neon, 0 0 18px rgba(227, 6, 19, 0.5));
  transform: translateY(-1px);
}
.cal-nav-btn:active:not(:disabled) { transform: translateY(0); }
.cal-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.cal-nav-select {
  flex: 1; min-width: 0;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-color: var(--bg-card, #11161f);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23e30613' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.6rem 2rem 0.6rem 1.4rem;
  font-family: var(--font-display, inherit);
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-align: center; text-align-last: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.cal-nav-select:hover { border-color: var(--neon-red); }
.cal-nav-select:focus { outline: none; border-color: var(--neon-red); box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.25); }
.cal-nav-select option { background: #0a0f1a; color: var(--text-primary); font-weight: 600; }
.cal-weekrow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-wd { text-align: center; font-size: 0.66rem; color: var(--text-muted); padding-bottom: 0.3rem; }
.cal-cell { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; border-radius: 6px; }
.cal-empty { visibility: hidden; }
.cal-cell.cal-off { color: var(--text-muted); opacity: 0.4; }
.cal-cell.cal-avail { color: #22c55e; font-weight: 700; border: 1px solid rgba(34, 197, 94, 0.5); background: rgba(34, 197, 94, 0.08); cursor: pointer; transition: var(--transition-smooth); }
.cal-cell.cal-avail:hover { background: rgba(34, 197, 94, 0.2); }
.cal-cell.cal-avail.selected { background: #22c55e; color: #06210f; border-color: #22c55e; box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35); }
.cal-cell.cal-tentative { color: #f5c842; font-weight: 700; border: 1px solid rgba(245, 158, 11, 0.55); background: rgba(245, 158, 11, 0.1); cursor: pointer; transition: var(--transition-smooth); }
.cal-cell.cal-tentative:hover { background: rgba(245, 158, 11, 0.22); }
.cal-cell.cal-tentative.selected { background: #f5a623; color: #2a1c00; border-color: #f5a623; box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.35); }
.cal-cell.cal-soldout { color: var(--text-muted); border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.03); text-decoration: line-through; cursor: pointer; opacity: 0.8; transition: var(--transition-smooth); }
.cal-cell.cal-soldout:hover { opacity: 1; border-color: rgba(227, 6, 19, 0.45); }
.cal-selected { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.9rem; padding: 0.6rem 0.85rem; background: rgba(34, 197, 94, 0.08); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: var(--radius-sm); font-size: 0.85rem; color: #22c55e; line-height: 1.4; }
.cal-selected.cal-selected--tentative { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.45); color: #f5c842; }
.cal-selected i { flex-shrink: 0; }
.cal-selected i { flex-shrink: 0; }
.date-flex-divider { display: flex; align-items: center; gap: 0.8rem; margin: 1.3rem 0 1rem; color: var(--text-muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; }
.date-flex-divider::before, .date-flex-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }
.cal-cell.cal-tier-off { cursor: not-allowed; }
.cal-tier-note { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.9rem; padding: 0.6rem 0.85rem; background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: var(--radius-sm); font-size: 0.82rem; color: #f5c842; line-height: 1.5; }
.cal-tier-note i { margin-top: 0.15rem; flex-shrink: 0; }
.cal-tentative-note { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 0.9rem; padding: 0.6rem 0.85rem; background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: var(--radius-sm); font-size: 0.82rem; color: #f5c842; line-height: 1.5; }
.cal-tentative-note i { margin-top: 0.15rem; flex-shrink: 0; }
.date-option-info {
  flex: 1;
  min-width: 0;
}
.date-option-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.date-option-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}
.date-option-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.date-badge-flexible {
  color: #25D366;
  background: rgba(37, 211, 102, 0.12);
}
.date-more-info {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-top: 0.25rem;
  border-bottom: none;
}
.date-contact-options {
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.date-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.date-contact-btn:hover {
  transform: translateY(-1px);
}
.date-contact-email {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.date-contact-email:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.date-contact-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.date-contact-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.date-contact-whatsapp .fab {
  font-size: 1rem;
}

/* ==========================================================================
   LEGAL MODALS (Termeni & Confidențialitate)
   ========================================================================== */
.legal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.legal-modal-overlay.open {
  display: flex;
}
.legal-modal-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 680px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.legal-modal-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--border-color);
  margin: 0;
  flex-shrink: 0;
}
.legal-modal-body {
  overflow-y: auto;
  padding: 1.2rem 1.6rem 1.6rem;
  flex: 1;
  scroll-behavior: smooth;
}
.legal-modal-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-red);
  margin: 1.2rem 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.legal-modal-body h3:first-child {
  margin-top: 0;
}
.legal-modal-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 0.5rem;
}
.legal-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  transition: color 0.15s ease;
}
.legal-modal-close:hover {
  color: var(--text-primary);
}

/* 10. Track visual — top accent glow line */
.track-visual {
  position: relative;
  overflow: hidden;
}

.track-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,0,60,0.5), transparent);
  z-index: 2;
}

/* 11. Footer — gradient accent border (replaces plain border-top) */
footer {
  border-top: none;
}

footer::before {
  content: '';
  display: block;
  height: 1px;
  margin-bottom: 3rem;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,0,60,0.45) 20%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,0,60,0.45) 80%,
    transparent 100%);
}

/* 12. Form inputs — enhanced focus ring */
.form-control:focus {
  box-shadow: 0 0 0 3px rgba(255,0,60,0.1), 0 0 18px rgba(255,0,60,0.08);
  background: rgba(0,0,0,0.38);
}

/* 13. Vehicle image container — radial red glow backdrop */
.vehicle-image-container::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(255,0,60,0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: engineGlow 4s ease-in-out infinite;
}

@keyframes engineGlow {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}


/* 14. Booking panel — red stripe top accent */
.booking-panel {
  position: relative;
  overflow: hidden;
}

.booking-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-red) 40%, transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* 15. Gift voucher — hover lift */
.f1-voucher-card {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}

.f1-voucher-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 36px 80px rgba(0,0,0,0.7), 0 0 40px rgba(255,0,60,0.1), 0 0 0 1px rgba(255,255,255,0.08);
}

/* 16. Admin table header rows — subtle red tint */
.admin-table th {
  background: rgba(255,0,60,0.035);
  border-bottom: 1px solid rgba(255,0,60,0.12);
}

/* 17. Scrollbar thumb — gradient red */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-red) 0%, var(--neon-red-dark) 100%);
  border-radius: var(--radius-sm);
}

/* 18. Success screen — green pulse animation (was undefined) */
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
}

/* 19. Mobile bottom nav — richer glass background */
.mobile-bottom-nav {
  background: linear-gradient(180deg, rgba(8,11,20,0.93) 0%, rgba(4,6,12,0.98) 100%);
  border-top: 1px solid rgba(255,255,255,0.055);
}

/* 20. Mobile nav active item glow */
.mobile-nav-item.active {
  text-shadow: 0 0 12px rgba(255,0,60,0.45);
}

/* 21. Tier-colored sector bars — brighter when active */
.pkg-f1-sector {
  transition: opacity 0.3s ease;
}

.package-card:hover .pkg-f1-sector {
  opacity: 1;
}

/* 22. Logo icon — subtle idle pulse */
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,60,0); }
  50%       { box-shadow: 0 0 12px 2px rgba(255,0,60,0.35); }
}

.logo-icon {
  animation: logoPulse 4s ease-in-out infinite;
}

/* ==========================================================================
   UX IMPROVEMENTS v3 — Applied from ui-ux-pro-max analysis
   ========================================================================== */

/* --- #8: Package price color --- */
.package-price {
  color: var(--text-primary);
}

/* --- #12: Desktop nav — active page indicator --- */
nav a.active-nav {
  color: var(--neon-red);
}
nav a.active-nav::after {
  width: 100%;
}

/* --- #5 & #6: Scroll-reveal system --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Package cards use animation (not transition) to avoid conflict with hover transform */
.package-card.reveal-on-scroll {
  opacity: 0;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.package-card.reveal-on-scroll.visible {
  animation: cardReveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* --- #7: Hero scroll-down chevron indicator --- */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.45; }
  50%       { transform: rotate(45deg) translate(3px, 3px); opacity: 0.9; }
}
.hero-scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  animation: chevronBounce 2.2s ease-in-out infinite;
}
.hero-scroll-chevron:nth-child(2) {
  animation-delay: 0.22s;
  opacity: 0.5;
}

/* --- #10: Hero stats — responsive on mobile --- */
@media (max-width: 600px) {
  .hero-stats {
    gap: 1.8rem;
    flex-wrap: wrap;
    padding: 1.1rem 1.4rem;
    justify-content: center;
  }
  .hero-stat-item {
    min-width: 70px;
    text-align: center;
  }
}

/* --- #1: prefers-reduced-motion — disable all decorative animations --- */
@media (prefers-reduced-motion: reduce) {
  /* Ascunde videoul de fundal — rămâne posterul (background pe .hero-visual) */
  .hero-video {
    display: none !important;
  }
  /* Disable slideshow Ken Burns (controlled via JS too) */
  .hero-slide img {
    transition: none !important;
  }
  /* Disable decorative CSS animations */
  .hero-stat-item h3,
  .logo-icon,
  .vehicle-image-container::before,
  body::after {
    animation: none !important;
  }
  /* Disable liveGlow stagger */
  .hero-stat-item:nth-child(2) h3,
  .hero-stat-item:nth-child(3) h3 {
    animation: none !important;
  }
  /* Disable chevron bounce */
  .hero-scroll-chevron {
    animation: none !important;
    opacity: 0.6;
  }
  /* Disable route-screen entrance animation */
  .route-screen {
    animation: none !important;
  }
  /* Disable scroll-reveal transitions (show immediately) */
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .package-card.reveal-on-scroll {
    opacity: 1 !important;
    animation: none !important;
  }
  /* Keep all interactive transitions instant */
  .btn, .package-card, .package-card:hover, nav a, nav a::after {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   VOUCHER CADOU — template randat off-screen (rasterizat în PNG via html2canvas)
   ========================================================================== */
#voucher-render-root {
  position: absolute;
  left: -99999px;
  top: -99999px;
  z-index: -1;
  pointer-events: none;
}
.vch {
  position: relative;
  width: 1000px;
  height: 705px;
  background: #0a0a0c;
  color: #ffffff;
  overflow: hidden;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
.vch-bg {
  position: absolute;
  inset: 0;
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
}
.vch-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,9,12,0.88) 0%, rgba(8,9,12,0.18) 24%, rgba(8,9,12,0.04) 44%, rgba(8,9,12,0.86) 76%, rgba(8,9,12,0.99) 100%),
    linear-gradient(90deg, rgba(8,9,12,0.72) 0%, rgba(8,9,12,0) 44%);
}
.vch-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--neon-red);
}
.vch-header {
  position: absolute; top: 30px; left: 56px; right: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.vch-brand { font-weight: 800; font-size: 26px; letter-spacing: 0.05em; }
.vch-brand span { color: var(--neon-red); }
.vch-doc {
  font-weight: 600; font-size: 15px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.78);
}
.vch-info { position: absolute; top: 96px; left: 56px; width: 340px; }
.vch-info-loc {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.05em; margin-bottom: 24px;
}
.vch-info-loc em { font-style: normal; color: rgba(255,255,255,0.5); font-weight: 600; }
.vch-mark { width: 11px; height: 11px; background: var(--neon-red); display: inline-block; border-radius: 2px; }
.vch-info-title {
  color: var(--neon-red); font-weight: 800; font-size: 12px;
  letter-spacing: 0.14em; margin-bottom: 9px;
}
.vch-info-sub { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 5px; }
.vch-info-line { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.55; }

.vch-bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 250px;
  background: linear-gradient(180deg, rgba(9,9,11,0.94) 0%, #090909 20%, #070708 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 36px;
  padding: 22px 56px 44px 56px;
}
.vch-badge {
  --c: var(--vch-tier, #a0aec0);
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  width: 128px;
}
.vch-badge-letter {
  width: 112px; height: 112px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 62px; color: rgba(12,12,14,0.82);
  background: linear-gradient(150deg, rgba(255,255,255,0.28), rgba(0,0,0,0.32)), var(--c);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.vch-badge-label {
  font-weight: 700; font-size: 13px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85); text-transform: uppercase; text-align: center;
}
.vch-main { flex: 1; min-width: 0; }
.vch-k {
  font-weight: 700; font-size: 12px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
}
.vch-k2 { margin-top: 16px; }
.vch-name {
  font-weight: 800; font-size: 40px; letter-spacing: 0.005em;
  margin: 5px 0 2px; line-height: 1.05;
}
.vch-exp {
  font-weight: 700; font-size: 20px; color: #fff; margin-top: 5px; line-height: 1.3;
}
.vch-exp b { color: var(--neon-red); font-weight: 800; }
.vch-right {
  flex-shrink: 0; text-align: right; min-width: 210px;
  display: flex; flex-direction: column; align-items: flex-end;
}
.vch-code {
  font-weight: 800; font-size: 30px; letter-spacing: 0.03em; margin: 4px 0 0;
  font-family: 'Inter', monospace;
}
.vch-valid { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 12px; }
.vch-valid span { color: rgba(255,255,255,0.92); font-weight: 600; }
.vch-sectors { display: flex; gap: 8px; margin-top: 16px; }
.vch-sec {
  width: 56px; height: 7px; border-radius: 4px;
  background: var(--vch-tier, #a0aec0);
}
.vch-sectors-label {
  font-weight: 700; font-size: 11px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55); margin-top: 8px; text-transform: uppercase;
}
.vch-footer {
  position: absolute; bottom: 13px; left: 56px; right: 56px;
  font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.02em;
}



/* ===========================================================================
   LAUNCH FIXES — mobile checkout, Web3Forms flow, anti-overflow safeguards
   =========================================================================== */
html { overflow-x: clip; }
body { max-width: 100%; }
.fx-honeypot {
  position: absolute !important; left: -10000px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
  opacity: 0 !important; pointer-events: none !important;
}
.route-screen, section, .booking-container, .booking-panel, .booking-step,
.booking-step-2-grid, .booking-summary-sidebar, .package-select-grid,
.package-option-card, .date-selector-container, .date-options-grid,
.date-option-card, .form-group, .form-row { min-width: 0; max-width: 100%; }
.booking-step-future-payment[hidden] { display: none !important; }
.booking-pricing-toggle-container, .booking-pricing-toggle { max-width: 100%; }
.booking-pricing-toggle {
  flex-wrap: wrap !important; justify-content: center !important; row-gap: 0.45rem !important;
}
#booking-pricing-tier-desc {
  flex: 1 1 100% !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important;
  text-align: center !important; white-space: normal !important; overflow-wrap: anywhere !important;
  line-height: 1.35 !important; padding: 0.15rem 0.45rem 0.25rem !important;
}
.date-option-card { min-width: 0; overflow-wrap: anywhere; }
.date-option-info, .date-option-info strong, .date-option-info span { min-width: 0; overflow-wrap: anywhere; }
.date-contact-options { flex-wrap: wrap; min-width: 0; }
.date-contact-btn { min-width: 0; max-width: 100%; }
.date-contact-email span { overflow-wrap: anywhere; }
.summary-row { gap: 1rem; }
.summary-row strong, .summary-row span:last-child { text-align: right; overflow-wrap: anywhere; }

@media (max-width: 992px) {
  body.checkout-active { padding-bottom: calc(98px + var(--fx-cookie-banner-height, 0px) + env(safe-area-inset-bottom)) !important; }
  .booking-panel { overflow: visible !important; }
  .booking-summary-sidebar { bottom: calc(var(--fx-cookie-banner-height, 0px) + env(safe-area-inset-bottom)) !important; }
  .booking-container { gap: 1.25rem !important; }
  .mobile-discount-container { display: block !important; margin-top: 1rem; }
}
@media (max-width: 768px) {
  #screen-booking > section { padding-left: 0.85rem !important; padding-right: 0.85rem !important; }
  .booking-panel { padding: 1rem !important; }
  .package-option-card { align-items: flex-start !important; gap: 0.75rem !important; }
  .package-option-details { min-width: 0; }
  .package-option-price { flex-shrink: 0; font-size: 1.2rem !important; text-align: right; }
  .booking-summary-sidebar { min-height: 78px; }
  .cookie-banner { padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom)) !important; }
  .cookie-banner-inner { gap: 0.65rem !important; }
  .cookie-banner-text { min-width: 0 !important; }
  .cookie-banner-text strong { margin-bottom: 0.15rem !important; }
  .cookie-banner-text p { font-size: 0.72rem !important; line-height: 1.45 !important; }
  .cookie-banner-actions { gap: 0.45rem !important; }
  .cookie-btn { padding: 0.48rem 0.55rem !important; font-size: 0.72rem !important; white-space: normal !important; }
}
@media (max-width: 480px) {
  .booking-pricing-toggle { width: 100% !important; border-radius: 22px !important; }
  .booking-pricing-toggle-btn { flex: 1 1 0 !important; min-width: 0 !important; padding: 0.58rem 0.55rem !important; font-size: 0.84rem !important; }
  .package-option-card { flex-direction: column !important; align-items: stretch !important; padding: 1rem !important; }
  .package-option-price { text-align: left !important; }
  .date-option-card { display: grid !important; grid-template-columns: 36px minmax(0, 1fr) !important; align-items: start !important; gap: 0.65rem !important; padding: 0.85rem !important; }
  .date-option-icon { width: 34px !important; height: 34px !important; }
  .date-option-badge { grid-column: 2 !important; justify-self: start !important; white-space: normal !important; }
  .date-contact-options { flex-direction: column !important; }
  .date-contact-btn { width: 100% !important; justify-content: center !important; white-space: normal !important; text-align: center !important; }
  .booking-summary-sidebar { padding: 0.65rem 0.85rem !important; gap: 0.65rem !important; }
  .booking-summary-sidebar .summary-row.total span:last-child { font-size: 1.05rem !important; }
  #booking-sidebar-navigation { max-width: 190px !important; }
  #booking-sidebar-navigation .btn { padding: 0.6rem 0.55rem !important; font-size: 0.72rem !important; }
  .cookie-banner { max-height: 44vh; overflow-y: auto; }
}


/* ===========================================================================
   LAUNCH PATCH FINAL — afișare mobilă, cookie banner compact, honeypot ascuns
   =========================================================================== */
html, body { max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
.fx-honeypot,
.fx-antispam-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.booking-step-future-payment,
#booking-step-3[hidden] { display: none !important; }
#screen-booking > section,
.booking-container,
.booking-panel,
.booking-step,
.booking-step-2-grid,
.booking-summary-sidebar,
.package-select-grid,
.package-option-card,
.date-selector-container,
.date-options-grid,
.date-option-card,
.form-row,
.form-group { min-width: 0 !important; max-width: 100% !important; }
.booking-container { width: 100% !important; }
.booking-panel { box-sizing: border-box !important; }
.booking-pricing-toggle-container,
.booking-pricing-toggle { width: 100% !important; max-width: 100% !important; }
.booking-pricing-toggle { flex-wrap: wrap !important; justify-content: center !important; row-gap: 0.45rem !important; }
.booking-pricing-toggle .tier-desc-typing--sm,
#booking-pricing-tier-desc {
  flex: 1 0 100% !important;
  max-width: min(100%, 520px) !important;
  min-width: 0 !important;
  margin: 0.2rem auto 0 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.35 !important;
}
.package-option-details,
.date-option-info { min-width: 0 !important; }
.package-option-price { white-space: nowrap; }
.date-option-info strong,
.date-option-info span,
.date-contact-email span { overflow-wrap: anywhere !important; }
.date-contact-options { flex-wrap: wrap !important; }
.date-contact-btn { min-width: 0 !important; }
.mobile-discount-container { border-top: 1px solid var(--border-color); padding-top: 1rem; }
.mobile-discount-container > div { min-width: 0 !important; }
.mobile-discount-container input { min-width: 0 !important; }

@media (max-width: 992px) {
  body.checkout-active { padding-bottom: calc(112px + var(--fx-cookie-banner-height, 0px) + env(safe-area-inset-bottom)) !important; }
  .booking-container { grid-template-columns: 1fr !important; gap: 1.15rem !important; }
  .booking-panel { overflow: visible !important; }
  .booking-summary-sidebar {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: calc(var(--fx-cookie-banner-height, 0px) + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    box-sizing: border-box !important;
  }
  .mobile-discount-container { display: block !important; }
}

@media (max-width: 640px) {
  #screen-booking > section {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    padding-bottom: 10rem !important;
  }
  .booking-panel { padding: 1rem !important; border-radius: 16px !important; }
  .booking-step-2-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 1.1rem !important; }
  .booking-pricing-toggle { padding: 0.35rem !important; border-radius: 22px !important; }
  .booking-pricing-toggle-btn { flex: 1 1 118px !important; min-width: 0 !important; padding: 0.58rem 0.55rem !important; }
  .package-option-card { flex-direction: column !important; align-items: flex-start !important; gap: 0.5rem !important; padding: 1rem !important; }
  .package-option-price { text-align: left !important; font-size: 1.2rem !important; }
  .date-option-card {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 0.65rem !important;
    padding: 0.85rem !important;
  }
  .date-option-icon { width: 34px !important; height: 34px !important; }
  .date-option-badge { grid-column: 2 !important; justify-self: start !important; white-space: normal !important; }
  .date-contact-options { flex-direction: column !important; }
  .date-contact-btn { width: 100% !important; justify-content: center !important; white-space: normal !important; text-align: center !important; }
  .booking-summary-sidebar { padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom)) !important; gap: 0.65rem !important; }
  #booking-sidebar-navigation { max-width: 210px !important; width: 100%; }
  #booking-sidebar-navigation .btn { white-space: normal !important; }
  body.checkout-active .cookie-banner {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: calc(104px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    max-height: 32vh !important;
    overflow-y: auto !important;
    border-radius: 14px !important;
    padding: 0.65rem 0.75rem !important;
  }
  body.checkout-active .cookie-banner-inner { gap: 0.55rem !important; }
  body.checkout-active .cookie-banner-text { min-width: 0 !important; }
  body.checkout-active .cookie-banner-text p {
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  body.checkout-active .cookie-banner-actions { gap: 0.4rem !important; }
  body.checkout-active .cookie-btn { padding: 0.45rem 0.55rem !important; font-size: 0.72rem !important; }
}

@media (max-width: 380px) {
  .booking-summary-sidebar { flex-direction: column !important; align-items: stretch !important; }
  #booking-sidebar-navigation { max-width: none !important; }
}


/* ==========================================================================
   LAUNCH HARDENING — mobile visual fixes
   ========================================================================== */
@supports not (overflow: clip) {
  html { overflow-x: hidden; }
}
.fx-honeypot input,
.fx-honeypot label { pointer-events: none !important; }
body.checkout-active.cookie-banner-visible .cookie-banner { z-index: 1200; }
body.checkout-active.cookie-banner-visible .booking-summary-sidebar { z-index: 1100; }
@media (max-width: 992px) {
  .booking-step-2-grid { grid-template-columns: 1fr !important; gap: 1.35rem !important; }
  .booking-pricing-toggle-container { width: 100%; }
  .booking-pricing-toggle-btn { white-space: nowrap; }
}
@media (max-width: 480px) {
  body.checkout-active.cookie-banner-visible .cookie-banner-text p { display: none; }
  body.checkout-active.cookie-banner-visible .cookie-banner-actions { flex-wrap: wrap; }
  .booking-step h3 { font-size: 1.05rem !important; line-height: 1.25 !important; }
  .form-row { grid-template-columns: 1fr !important; }
}

/* Launch fix: keep decorative hero media from intercepting cookie/CTA taps */
.hero-visual,
.hero-slides-wrapper,
.hero-slide,
.hero-slide img,
.hero-visual video {
  pointer-events: none !important;
}
.cookie-banner {
  z-index: 20000 !important;
  pointer-events: auto !important;
}
.cookie-modal-overlay {
  z-index: 21000 !important;
}

/* Prevent decorative glow from creating horizontal scroll on desktop/mobile. */
.bg-glow-orange { position: fixed !important; }

/* Keep decorative glow within layout bounds; transform preserves the original visual offset without adding scroll width. */
.bg-glow-orange {
  right: 0 !important;
  transform: translateX(32%) !important;
}



/* ===========================================================================
   FINAL PRE-LAUNCH PATCH — header clearance + included Video HD option
   =========================================================================== */
:root { --fx-header-height: 76px; }
main.route-screen:not(#screen-home) > section:first-child {
  padding-top: calc(var(--fx-header-height, 76px) + 2rem) !important;
  scroll-margin-top: calc(var(--fx-header-height, 76px) + 1rem) !important;
}
#screen-booking > section:first-child {
  padding-top: calc(var(--fx-header-height, 76px) + 1.35rem) !important;
}
.booking-steps-indicator {
  position: relative;
  z-index: 1;
  padding-top: 0.15rem;
}
.extra-video-option {
  transition: var(--transition-fast);
}
.extra-video-option input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.extra-video-option.extra-option-hidden,
.form-group[hidden] {
  display: none !important;
}
.extra-video-option.extra-option-included {
  cursor: default !important;
  background: rgba(34, 197, 94, 0.055) !important;
  border-color: rgba(34, 197, 94, 0.38) !important;
}
.extra-video-option.extra-option-included strong {
  color: #86efac !important;
}

.extra-video-option.extra-option-paid {
  cursor: pointer !important;
  background: rgba(255, 255, 255, 0.018) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}
.extra-video-option.extra-option-paid strong {
  color: var(--text-primary) !important;
}
.summary-row-included span:last-child {
  color: #86efac !important;
  font-weight: 700;
}
@media (max-width: 768px) {
  main.route-screen:not(#screen-home) > section:first-child {
    padding-top: calc(var(--fx-header-height, 76px) + 1.1rem) !important;
  }
  #screen-booking > section:first-child {
    padding-top: calc(var(--fx-header-height, 76px) + 0.95rem) !important;
  }
  .booking-steps-indicator {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 480px) {
  #screen-booking > section:first-child {
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }
  .booking-steps-indicator {
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .extra-video-option {
    align-items: flex-start !important;
    gap: 0.65rem !important;
    padding: 0.78rem 0.85rem !important;
  }
}

/* ==========================================================================
   SELECTOR DE DATE — dată confirmată + date neconfirmate (chips) + flexibilă
   ========================================================================== */
.date-option-confirmed {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.045);
}
.date-option-confirmed .date-option-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}
.date-option-confirmed.selected {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

.date-tentative-group {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.015);
}
.date-tentative-head {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.date-tentative-head em {
  color: #f5a623;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.date-tentative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.5rem;
}
.date-chip {
  padding: 0.5rem 0.35rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: center;
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.date-chip:hover {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(255, 255, 255, 0.04);
}
.date-chip strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}
.date-chip span {
  display: block;
  font-size: 0.66rem;
  color: var(--text-muted);
  margin-top: 0.12rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.date-chip.selected {
  border-color: #f5a623;
  background: rgba(245, 166, 35, 0.1);
  box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.25);
}
.date-chip.selected strong { color: #f5c842; }

.date-flex-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
.date-flex-note i {
  margin-top: 0.15rem;
  color: var(--neon-red);
  flex-shrink: 0;
}
.date-flex-note--warn {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.35);
  color: #f5c842;
}
.date-flex-note--warn i { color: #f5a623; }
.date-flex-note--ok {
  background: rgba(34, 197, 94, 0.07);
  border-color: rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.date-flex-note--ok i { color: #22c55e; }

/* Lansare: codurile de reducere/voucher se aplică MANUAL de către echipă —
   ascundem câmpurile de aplicare cod de pe site ca să nu inducă în eroare clienții. */
.discount-code-container,
.mobile-discount-container { display: none !important; }

/* Bottom-nav activă pe mobil ȘI tabletă (≤992px). Plasată aici, la final, ca să
   fie după regula de bază `.mobile-bottom-nav{display:none}` și să o suprascrie
   corect (specificitate egală → câștigă ordinea în sursă). JS o ascunde inline pe
   paginile booking/portal/admin, iar stilul inline are prioritate față de stylesheet. */
@media (max-width: 992px) {
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 75px;
  }
}

/* Footer — rândul de copyright + linkuri legale */
.footer-bottom {
  flex-direction: column;
  align-items: stretch;
  gap: 1.3rem;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Email typo suggestion hint */
.fx-email-hint {
  display: none;
  align-items: flex-start;
  gap: 0.45rem;
  margin-top: 0.4rem;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 170, 0, 0.07);
  border: 1px solid rgba(255, 170, 0, 0.28);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.fx-email-hint.visible { display: flex; }
.fx-email-hint i { color: #ffaa00; flex-shrink: 0; margin-top: 0.1rem; }
.fx-email-apply-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--neon-red);
  font-weight: 600;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.fx-email-apply-btn:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}
