/* ==========================================================================
   OTOPENI AIRPORT PARK & FLY — DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #070B19;
  --bg-card: rgba(18, 26, 51, 0.7);
  --bg-card-hover: rgba(28, 40, 76, 0.85);
  --bg-input: rgba(10, 16, 36, 0.8);
  
  --accent-cyan: #00F0FF;
  --accent-blue: #3A86FF;
  --accent-blue-glow: rgba(58, 134, 255, 0.35);
  --accent-gold: #FFB703;
  --accent-orange: #FB8500;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 240, 255, 0.3);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout & Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;

  --shadow-main: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px rgba(0, 240, 255, 0.2);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  /* .site-header is position: fixed, 80px tall — without this, jumping to
     any #section anchor (nav links, the "Rezervă" CTAs) lands the target's
     top edge right under the header instead of below it. */
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 800;
  color: #FFFFFF;
}

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

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-cyan) 60%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--accent-gold);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 25, 0.85);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn-phone:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00FF66;
  border-radius: 50%;
  box-shadow: 0 0 10px #00FF66;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 255, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(58, 134, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 90%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-pill-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.35);
  color: var(--accent-gold);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  letter-spacing: -1.5px;
}

/* Line breaks that only exist for narrow phones — see the 600px query,
   where this switches to display: inline. */
.mobile-break {
  display: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.hero-feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.hero-feature-tag svg {
  color: var(--accent-cyan);
}

/* Parking Planner & Estimator Card */
.planner-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.2rem 3rem;
  width: calc(100% + 50px);
  margin-left: -25px;
  box-shadow: var(--shadow-main), var(--shadow-glow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.planner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-gold));
}

.planner-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: flex-start;
}

.planner-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.planner-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* License Plate Input & Custom Romanian Plate Display */
.plate-input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.plate-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* License Plate Visual Element */
.license-plate-graphic {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 3px solid #111111;
  border-radius: 8px;
  height: 58px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.plate-country-strip {
  width: 44px;
  height: 100%;
  background: #003399;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px;
  color: #FFFFFF;
}

.eu-stars {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at center, #FFCC00 20%, transparent 20%);
  opacity: 0.9;
}

.country-code {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1;
}

.plate-text-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Outfit', monospace;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 3px;
  color: #111111;
  text-transform: uppercase;
  padding: 0 16px;
  width: 100%;
}

.plate-text-input::placeholder {
  color: #94A3B8;
  font-weight: 700;
}

/* Date & Time Selectors */
.planner-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.custom-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.custom-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

.custom-input:user-invalid {
  border-color: #FF4D4D;
}

/* Custom validation the browser can't express natively (exit date before entry
   date, GDPR consent unchecked) — :user-invalid only covers HTML5's own rules
   (required/type/pattern), so those two cases need their own error class,
   toggled from script.js. */
.field-error {
  border-color: #FF4D4D !important;
  box-shadow: 0 0 0 1px #FF4D4D !important;
}

.consent-field.field-error label {
  color: #FF4D4D;
}

/* Loading spinner for the reservation submit button */
.btn-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  border: 2px solid rgba(4, 9, 26, 0.3);
  border-top-color: #04091A;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

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

/* Price box gets a subtle pulse while refreshServerQuote() is confirming the
   client-side estimate against the backend — the number itself doesn't blank
   out, this is just "this may still change," not "no answer yet." */
.price-display-box.is-quoting {
  animation: price-box-pulse 1.1s ease-in-out infinite;
}

@keyframes price-box-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Live Price Calculator Widget */
.price-display-box {
  background: rgba(0, 240, 255, 0.05);
  border: 1px dashed var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

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

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

.price-duration {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

.price-tag-big {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
}

.price-currency {
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.btn-primary {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04091A;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.5);
  filter: brightness(1.1);
}

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

/* Sticky Mobile CTA — a long booking page with the form only in the hero
   means it's scrolled out of reach for most of the page on a phone.
   Hidden by default (desktop already has the planner card on screen);
   shown fixed to the bottom only under the 768px breakpoint, see below. */
.sticky-mobile-cta {
  display: none;
}

/* Cookie Notice — bottom-anchored on desktop; on mobile (see 768px query)
   it sits above the sticky CTA bar instead of fighting it for the same
   strip of screen. */
.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 480px;
  margin: 0 auto;
  z-index: 300;
  background: rgba(7, 11, 25, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-notice.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-notice a {
  color: var(--accent-cyan);
}

.cookie-notice-ack {
  align-self: flex-end;
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04091A;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Shuttle Countdown Pill */
.shuttle-status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* 3 Core Benefits Section */
.benefits-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-size: 2.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(58, 134, 255, 0.15));
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.benefit-title {
  font-size: 1.35rem;
  font-weight: 700;
}

.benefit-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-highlight {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Shuttle Visual Section */
.shuttle-feature-section {
  padding: 60px 0 100px 0;
}

.shuttle-feature-card {
  background: linear-gradient(135deg, rgba(18, 26, 51, 0.9), rgba(10, 16, 36, 0.95));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.shuttle-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.shuttle-content-col {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.shuttle-title {
  font-size: 2rem;
}

/* Signup & Discount Form Section */
.signup-section {
  padding: 90px 0 120px 0;
  background: radial-gradient(circle at center, rgba(58, 134, 255, 0.12) 0%, transparent 70%);
}

.signup-box {
  background: linear-gradient(145deg, rgba(20, 30, 60, 0.8), rgba(12, 18, 40, 0.95));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-main);
}

.signup-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.signup-badge {
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.signup-title {
  font-size: 2.2rem;
}

.signup-desc {
  color: var(--text-secondary);
  font-size: 1rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(10, 16, 36, 0.6);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

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

/* Modern Native Dialog Modal */
dialog.booking-modal {
  margin: auto;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  background: var(--bg-dark);
  color: var(--text-primary);
  max-width: 580px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 0;
  box-shadow: var(--shadow-main), 0 0 50px rgba(0, 240, 255, 0.3);
  overflow: hidden;
}

dialog.booking-modal::backdrop {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
}

.modal-header-bg {
  background: linear-gradient(135deg, var(--accent-blue), #1E293B);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ticket-receipt {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.ticket-label {
  color: var(--text-secondary);
}

.ticket-value {
  font-weight: 700;
  color: var(--text-primary);
}

.barcode-simulation {
  height: 50px;
  background: repeating-linear-gradient(
    90deg,
    #FFFFFF 0px, #FFFFFF 2px,
    #000000 2px, #000000 4px,
    #FFFFFF 4px, #FFFFFF 7px,
    #000000 7px, #000000 9px
  );
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 60px 0 30px 0;
  background: rgba(5, 8, 20, 0.95);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Contact & Map Location Section */
.contact-section {
  padding: 90px 0 100px 0;
  position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  box-shadow: var(--shadow-main);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-action-btns {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-contact-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-waze {
  background: rgba(58, 134, 255, 0.15);
  border: 1px solid var(--accent-blue);
  color: #FFF;
}

.btn-waze:hover {
  background: var(--accent-blue);
  box-shadow: 0 0 20px var(--accent-blue-glow);
}

.btn-google-maps {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  color: #FFF;
}

.btn-google-maps:hover {
  background: var(--accent-cyan);
  color: #04091A;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.map-container-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-main), var(--shadow-glow);
  min-height: 440px;
}

.map-iframe-wrapper {
  width: 100%;
  height: 100%;
  min-height: 380px;
  flex: 1;
  position: relative;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.map-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 11, 25, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

/* 30-Day Pricing & Simulation Section */
.pricing-section {
  padding: 90px 0 100px 0;
  position: relative;
  background: radial-gradient(circle at 30% 70%, rgba(58, 134, 255, 0.12) 0%, transparent 60%);
}

.pricing-simulator-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-main), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.slider-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.slider-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.slider-days-badge {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04091A;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.range-slider-wrapper {
  margin-bottom: 2.5rem;
}

.custom-range-slider {
  width: 100%;
  height: 12px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  background-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  background-repeat: no-repeat;
  background-size: 25% 100%;
}

.custom-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.simulator-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.metric-card {
  background: rgba(10, 16, 36, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric-title {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-value-big {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.metric-unit {
  font-size: 1rem;
  font-weight: 700;
}

.metric-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.milestone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: var(--transition-normal);
}

.milestone-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.milestone-popular {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

.milestone-best-value {
  border-color: var(--accent-gold);
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.25);
}

.milestone-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04091A;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.milestone-tag {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.milestone-title {
  font-size: 1.3rem;
  font-weight: 800;
}

.milestone-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.milestone-curr {
  font-size: 1rem;
}

.milestone-rate {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.milestone-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px dashed var(--border-light);
  padding-top: 1rem;
}

/* Daily 30-Day Table Styling */
.daily-table-details {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.daily-table-summary {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFF;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.daily-table-summary:hover {
  background: var(--bg-card-hover);
  color: var(--accent-cyan);
}

.daily-table-wrapper {
  padding: 0 1.5rem 1.5rem 1.5rem;
  max-height: 420px;
  overflow-y: auto;
}

.daily-simulation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.daily-simulation-table th {
  background: rgba(10, 16, 36, 0.8);
  color: var(--accent-cyan);
  padding: 12px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
}

.daily-simulation-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.daily-simulation-table tr:hover td {
  background: rgba(0, 240, 255, 0.05);
}

/* Live Flights Board (FIDS) Section */
.flights-section {
  padding: 90px 0 100px 0;
  position: relative;
  background: radial-gradient(circle at 75% 25%, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
}

.fids-board-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main), var(--shadow-glow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fids-header-bar {
  background: rgba(10, 16, 36, 0.95);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.fids-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.fids-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.fids-tab:hover {
  color: #FFF;
}

.fids-tab.active {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: #04091A;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.fids-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fids-clock-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
}

.fids-clock-badge strong {
  color: var(--accent-gold);
  font-family: monospace;
  font-size: 0.95rem;
}

.fids-refresh-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.fids-refresh-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.fids-filter-row {
  padding: 1.25rem 2rem;
  background: rgba(18, 26, 51, 0.5);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fids-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  flex: 1;
  max-width: 480px;
  color: var(--text-secondary);
}

.fids-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 100%;
}

.fids-stats-pill {
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.fids-table-wrapper {
  max-height: 480px;
  overflow-y: auto;
}

.fids-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}

.fids-table th {
  background: rgba(10, 16, 36, 0.9);
  color: var(--accent-cyan);
  padding: 14px 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.fids-table td {
  padding: 16px 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fids-table tr:hover td {
  background: rgba(0, 240, 255, 0.04);
}

.airline-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.airline-code {
  font-family: 'Outfit', monospace;
  font-weight: 800;
  font-size: 1.05rem;
  color: #FFF;
}

.airline-name {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.flight-time-big {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.flight-est-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fids-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-checkin {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.status-boarding {
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  animation: pulse 1.5s infinite;
}

.status-departed, .status-landed {
  background: rgba(0, 255, 102, 0.12);
  border: 1px solid #00FF66;
  color: #00FF66;
}

.status-ontime {
  background: rgba(58, 134, 255, 0.12);
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
}

.status-delayed {
  background: rgba(255, 77, 77, 0.15);
  border: 1px solid #FF4D4D;
  color: #FF4D4D;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  /* The planner-card has an intentional 25px bleed on each side for the
     two-column desktop layout (see .planner-card). Once the grid collapses
     to a single column here, that bleed pushes the card's right edge (price,
     terms checkbox, submit button) past the viewport instead of framing a
     column — reset it to a normal full-width card. */
  .planner-card {
    width: 100%;
    margin-left: 0;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .signup-box {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .shuttle-feature-card {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .simulator-metrics-grid {
    grid-template-columns: 1fr;
  }
  .milestones-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fids-header-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  /* Reduce padding on mobile to save lateral space */
  .hero-section,
  .benefits-section,
  .shuttle-feature-section,
  .signup-section,
  .contact-section,
  .pricing-section,
  .flights-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  /* Ensure lateral padding is reduced */
  section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Force single column for main grid containers */
  .hero-grid,
  .benefits-grid,
  .signup-box,
  .shuttle-feature-card,
  .contact-grid,
  .simulator-metrics-grid,
  .milestones-grid,
  .planner-dates-grid,
  .form-row-2col,
  .pricing-grid,
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Grid/flex items default to min-width: auto (their content's min-content),
     not 0 — a 1fr track still can't shrink past that. Without this, a long
     unbreakable string (the address, the email) in a .footer-col reintroduces
     the same overflow the rule above was meant to fix. */
  .footer-col {
    min-width: 0;
  }

  /* Force single column for main flex containers */
  .fids-header-bar,
  .fids-filter-row {
    display: flex !important;
    flex-direction: column !important;
  }

  /* fids-header-bar/.fids-filter-row keep their 2rem side padding above —
     fine on desktop, too wide once the section-level padding is already cut
     to 15px. Match it here, and let the two rows inside fids-header-bar wrap
     instead of overflowing: .fids-tabs and .fids-actions are plain flex rows
     with no flex-wrap, so on a narrow-enough phone (or a locale with longer
     tab labels) they push past the viewport with nowhere to go. */
  .fids-header-bar,
  .fids-filter-row {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .fids-tabs,
  .fids-actions {
    flex-wrap: wrap;
  }

  /* .header-inner (logo + nav + header-actions) has no wrap and no shrink
     path. nav-links already disappears below 600px (see that query) but
     the "Deschis 24/7" badge does not, and logo + badge + phone button
     together are wider than a phone viewport — the badge is decorative,
     so drop it here instead of letting it push the header (and the page)
     past the right edge. flex-wrap is a fallback for anything narrower
     still, so a genuine overflow becomes a second row, not a page scroll. */
  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  /* .plate-text-input sits in a flex row (.license-plate-graphic) with
     flex: 1 — but a bare <input> has an intrinsic min-width (historically
     tied to size=20) that flex-shrink cannot override on its own. Without
     min-width: 0 it refuses to shrink below that and overflows the plate
     graphic once .planner-card's padding leaves it little room. */
  .plate-text-input {
    min-width: 0;
  }

  /* Same 3rem side padding as desktop, unreduced — on a narrow phone it
     eats a large share of the available width before any child even
     starts shrinking. */
  .planner-card {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Mobile only: frame the hero text (title, subtitle, benefit tags) in the
     same card treatment as .planner-card, so the two stacked blocks read as
     a matching pair instead of one card sitting directly on the hero photo
     and one floating free above it. Desktop is untouched — there the text
     sits over the hero image by design, and .planner-card already has its
     own card there. */
  .hero-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-main), var(--shadow-glow);
    padding: 1.75rem 1.25rem;
    position: relative;
    overflow: hidden;
  }

  .hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-gold));
  }

  /* Same 2rem side padding as desktop on the pricing table's accordion
     header — its label is a long sentence ("Vezi Tabela Detaliată De
     Simulare Zilnică..."), so it needs the room more than most. */
  .daily-table-summary {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Form and button mobile optimizations (Touch target & zoom prevention).
     Checkbox/radio inputs are excluded: "form input" was also matching the
     GDPR/terms checkbox, forcing it to width:100% + min-height:48px and
     stretching it across the whole row — leaving no room for its label,
     which then got pushed out of the card instead of sitting under the
     price box where it belongs. */
  form input:not([type="checkbox"]):not([type="radio"]),
  form select,
  form button,
  .custom-input,
  .btn,
  .btn-primary {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 16px !important;
  }

  /* Sticky Mobile CTA */
  .sticky-mobile-cta {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 11, 25, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  }

  .sticky-cta-book {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: #04091A;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
  }

  /* Same shape/size as the phone button it replaced — deliberately not the
     round green WhatsApp badge people expect, to match the sticky bar's
     existing square-ish icon buttons instead of clashing with them. */
  .sticky-cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
  }

  /* Room at the bottom of the page so the fixed bar above never covers the
     footer's real content (copyright line, links) — sized for the bar's
     own height (~68px) plus the safe-area inset on notched phones. */
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  /* Sits above the sticky CTA bar here instead of at the very bottom —
     both are fixed-position and would otherwise overlap. */
  .cookie-notice {
    bottom: calc(68px + 16px + env(safe-area-inset-bottom, 0px));
  }

  /* Table horizontal scroll (Alternative 1) */
  .daily-table-wrapper,
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Stacked cards for pricing table (Alternative 2 - Better UX) */
  .daily-simulation-table thead {
    display: none;
  }
  
  .daily-simulation-table tbody tr {
    display: flex;
    flex-direction: column;
    background: rgba(18, 26, 51, 0.7); /* var(--bg-card) */
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 14px; /* var(--radius-md) */
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .daily-simulation-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: right;
  }

  .daily-simulation-table tbody td:last-child {
    border-bottom: none;
  }

  /* Inject column labels via CSS */
  .daily-simulation-table tbody td:nth-child(1)::before { content: "Ziua:"; font-weight: normal; color: #94A3B8; }
  .daily-simulation-table tbody td:nth-child(2)::before { content: "Durată:"; font-weight: normal; color: #94A3B8; }
  .daily-simulation-table tbody td:nth-child(3)::before { content: "Tarif/Zi:"; font-weight: normal; color: #94A3B8; }
  .daily-simulation-table tbody td:nth-child(4)::before { content: "Cost (RON):"; font-weight: normal; color: #94A3B8; }
  .daily-simulation-table tbody td:nth-child(5)::before { content: "Cost (EUR):"; font-weight: normal; color: #94A3B8; }
  .daily-simulation-table tbody td:nth-child(6)::before { content: "Economie:"; font-weight: normal; color: #94A3B8; }
}

@media (max-width: 600px) {
  .planner-dates-grid, .form-row-2col, .contact-action-btns {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .milestones-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  /* Decorative, and the first thing to cut once .header-actions has no
     room left for logo + badge + phone button (see the flex-wrap fallback
     on .header-actions at 768px) — same breakpoint nav-links leaves at.
     Scoped to .header-actions: .badge-247 is a shared component reused
     for "Calcul Instant", "Transfer Rapid" and "Shuttle Gratuit" too — an
     unscoped rule here hid all of those as well, discovered live during
     the mobile visual pass on 2026-09-01. */
  .header-actions .badge-247 {
    display: none;
  }
  /* 2.1rem still wrapped "Aeroportul Henri Coandă" onto two lines on real
     phones (measured: needs <=242px at a 320px viewport, 2.1rem measures
     360px there) — 1.4rem is the largest size that fits it on one line
     down to a 320px-wide device with some margin. */
  .hero-title {
    font-size: 1.4rem;
  }

  /* Manual line breaks that only apply once the title/subtitle are forced
     this narrow — at desktop widths these phrases already wrap fine (or
     don't need to) on their own; forcing the same breaks there would just
     shorten lines that didn't need shortening. */
  .mobile-break {
    display: inline;
  }

  /* .hero-feature-tag centered its icon against the item's full height —
     fine on one line, but "Supraveghere Video HD & Pază 24/7" wraps to two
     lines on a phone, and a vertically-centered checkmark ends up floating
     between the two lines instead of sitting next to the text it belongs
     to. Top-aligning fixes that without needing to touch desktop, where
     these tags don't wrap. */
  .hero-feature-tag {
    align-items: flex-start;
  }

  /* Static "next shuttle" countdown inside the planner card — not asked
     for on mobile, where the card is already tall with the form above it. */
  .shuttle-status-pill {
    display: none;
  }

  .fids-filter-row {
    flex-direction: column;
    align-items: stretch;
  }
}
