/* Pristine Axle – Futuristic Tech-Inspired CSS (Flexbox-Only, Mobile-First, Brand-Consistent) */

/* --- RESET & NORMALIZE --- */
html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #141A29;
  color: #F4F6FB;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F4E285;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.14;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #F4E285;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  color: #8ADEFF;
  margin-bottom: 12px;
}
p, li, dd {
  font-size: 1rem;
  line-height: 1.68;
}
strong {
  font-weight: 700;
  color: #F4E285;
}
img {
  max-width: 100%;
  display: block;
}
/* --- END RESET --- */

/* ---------- BRAND & COLOR VARS ---------- */
:root {
  --color-primary: #1A2238;
  --color-secondary: #6096BA;
  --color-accent: #F4E285;
  --color-bg-main: #181F33;
  --color-bg-section: #222B45;
  --color-bg-card: #20294D;
  --color-text-main: #F4F6FB;
  --color-text-dark: #19213A;
  --color-action: #8ADEFF;
  --color-success: #3DF78E;
  --color-warning: #FFC300;
  --color-error: #FF4559;
  --shadow-main: 0 8px 20px rgba(34,36,66,0.13), 0 1.5px 5px rgba(80,200,255,0.09);
}

/* ------------------------- LAYOUT & UTILS --------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 0;
}

.text-section {
  align-items: flex-start;
  text-align: left;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 14px;
  box-shadow: var(--shadow-main);
}

@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container { padding: 0 8px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--color-bg-card);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(80,200,255,0.10);
  padding: 20px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .tip-item:hover, .feature-item:hover, .destination-item:hover, .bio:hover, .testimonial-card:hover {
  box-shadow: 0 0 24px 2px var(--color-action),0 2px 16px 0 rgba(80,200,255,0.08);
  transform: translateY(-4px) scale(1.015);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F6FB;
  color: var(--color-text-dark);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(255,255,255,0.04), 0 2px 8px 0 rgba(80,200,255,0.04);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 410px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1rem;
}
.testimonial-card span {
  color: var(--color-action);
  font-size: 1.12rem;
  letter-spacing: 1px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-card);
  border-radius: 9px;
  padding: 18px 14px;
  min-width: 200px;
  box-shadow: 0 1.5px 6px 0 rgba(44,204,255,0.09);
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}

@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .text-image-section, .feature-grid, .tips-grid, .destination-grid, .guide-summaries, .operator-list, .team-bios {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}

/* --- HERO, CTA, BUTTONS --- */
.cta-button {
  background: linear-gradient(90deg, #6096BA 0%, #00EDFC 100%);
  color: #181F33;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 12px 36px;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(80,200,255,0.09);
  transition: background 0.18s, box-shadow 0.18s, color 0.14s, transform 0.12s;
  margin-top: 22px;
  display: inline-block;
  text-shadow: 0 1px 5px rgba(80,200,255,0.05);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #F4E285 0%, #F78CA2 100%);
  color: #1A2238;
  transform: translateY(-2px) scale(1.023);
  box-shadow: 0 6px 18px rgba(255,255,124,0.22);
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: #F4E285;
  transition: background 0.14s, color 0.17s;
}
.mobile-nav a:hover {
  background: rgba(96,150,186,0.14);
  color: #8ADEFF;
}
nav a {
  color: #F4F6FB;
  font-family: 'Montserrat';
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.13s;
}
nav a:hover, nav a:focus {
  background: #F4E285;
  color: #1A2238;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 3px 16px rgba(60,130,220,0.07);
  z-index: 50;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  header nav {
    gap: 8px;
  }
  header .container {
    padding: 12px 6px;
  }
}

header img {
  max-height: 38px;
  margin-right: 24px;
}
/* Hide mobile burger button on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #FFF;
}

@media (max-width: 900px) {
  header nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE NAV MENU --- */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 43, 69, 0.96);
  box-shadow: 0 0 62px 8px rgba(30,230,255,0.08);
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 9999;
  transform: translateX(-105vw);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.62,.06,.18,1.01), opacity 0.22s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F4E285;
  font-size: 2.2rem;
  margin: 24px 26px 0 0;
  cursor: pointer;
  align-self: flex-end;
  z-index: 10001;
}
.mobile-nav {
  width: 100vw;
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* --- MAIN & SECTIONS --- */
main {
  position: relative;
  min-height: 60vh;
  z-index: 1;
  background: var(--color-bg-main);
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(80,200,255,0.08);
}
@media (max-width: 700px) {
  section { margin-bottom: 36px; padding: 20px 4px; }
}

/* ---- FEATURES GRID ---- */
.feature-grid, .tips-grid, .destination-grid, .guide-summaries, .operator-list, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-item img, .tip-item img, .destination-item img, .guide-item img, .bio img {
  height: 44px;
  width: 44px;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 3px #8ADEFF);
}
.feature-grid .feature-item, .tips-grid .tip-item, .destination-grid .destination-item, .guide-summaries .guide-item, .team-bios .bio {
  box-shadow: 0 2px 9px rgba(96,150,186,0.07);
  border: 1.5px solid #26316B;
}

/* ---- DESTINATION/TEAM/OPERATOR CARDS ---- */
.destination-item, .guide-item, .bio {
  background: var(--color-bg-card);
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 16px 18px;
  transition: transform 0.16s, box-shadow 0.17s;
  min-width: 200px;
  flex: 1 1 240px;
}
.operator-profile {
  display: flex;
  gap: 18px;
  background: var(--color-bg-card);
  border-radius: 11px;
  padding: 20px 22px;
  margin-bottom: 20px;
  color: #F4F6FB;
  align-items: center;
  box-shadow: 0 1.5px 7px rgba(44,204,255,0.07);
}
.operator-profile img {
  min-width: 48px;
  max-width: 52px;
}
.operator-profile ul {
  margin-top: 8px;
  font-size: 0.97rem;
  color: #F4E285;
}
@media (max-width: 700px){
  .operator-profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 8px;
  }
}

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px 0;
  background: var(--color-bg-card);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 1.5px 7px rgba(100,190,255,0.06);
}
thead {
  background: #232E54;
}
th, td {
  padding: 13px 14px;
  text-align: left;
  font-size: 1rem;
}
th {
  color: #F4E285;
  font-family: 'Montserrat';
  font-weight: 700;
}
td {
  color: #F4F6FB;
  border-bottom: 1px solid #232E54;
}
tr:last-child td {
  border-bottom: none;
}
table tr:hover {
  background: #232E54;
}

/* --- FAQ SECTION (DL) --- */
.faq-list {
  margin-top: 22px;
  background: var(--color-bg-card);
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(84,205,255,0.07);
  padding: 28px 24px;
}
.faq-list dt {
  color: #F4E285;
  font-family: 'Montserrat';
  font-size: 1.1rem;
  margin-bottom: 5px;
  margin-top: 18px;
  font-weight: 600;
}
.faq-list dd {
  color: #F4F6FB;
  font-size: 1rem;
  margin-bottom: 7px;
  margin-left: 0;
}

/* --- LISTS, SAFETY, TIPS --- */
ul, ol {
  margin: 10px 0 18px 0;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 8px;
}
.tips-list, .support-info {
  background: #21325B;
  border-radius: 10px;
  padding: 16px 18px;
  color: #F4F6FB;
  margin-top: 14px;
}
.safety-tips {
  margin-top: 12px;
  margin-bottom: 16px;
  color: #8ADEFF;
  font-size: 1.06rem;
}
.safety-tips li:before {
  content: '\26A1';
  color: #F4E285;
  margin-right: 6px;
  font-size: 1.08em;
}

/* --- HERO/CTA SPECIFIC --- */
.hero {
  background: linear-gradient(135deg, #232E54 15%, #1A2238 85%);
  color: #F4F6FB;
  padding: 88px 0 66px 0;
}
.text-section h1, .text-section h2 {
  color: #F4E285;
  text-shadow: 0 2px 12px #00000044;
}
.text-section p {
  color: #D1E6FF;
}

/* --- MAP-EMBED, CONTACT DETAILS, SUPPORT --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 26px 0;
}
.contact-details div {
  background: #222B45;
  border-radius: 10px;
  padding: 17px 15px 14px 15px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
  min-width: 150px;
  box-shadow: 0 1.5px 7px rgba(84,205,255,0.08);
}
@media (max-width: 700px) {
  .contact-details { flex-direction: column; gap: 13px; }
}
.map-embed p {
  font-style: italic;
  color: #8ADEFF;
  margin-top: 6px;
  font-size: 0.98rem;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: #F4F6FB;
  padding: 0 0 0 0;
  margin-top: 48px;
  border-top: 1.5px solid #26316B;
  box-shadow: 0 -3px 22px 2px rgba(34,43,68,0.05);
}
footer .container {
  padding: 32px 16px 0 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 0;
}
footer nav a {
  color: #8ADEFF;
  margin-right: 18px;
  font-size: 0.98rem;
}
footer nav a:hover {
  color: #F4E285;
  background: none;
}
footer img {
  max-width: 48px;
  margin-bottom: 16px;
}
.footer-bottom {
  margin-top: 32px;
  background: #181F33;
  color: #8ADEFF;
  font-size: 0.95rem;
  text-align: center;
  padding: 16px 0 8px 0;
  border-top: 1px solid #26316B;
  letter-spacing: 1px;
}
@media (max-width: 850px){
  footer .content-wrapper{ flex-direction: column; gap:12px; }
}

/* --- FORMS & INPUTS (if any future) --- */
input, select, textarea {
  border: 1.5px solid #6096BA;
  border-radius: 7px;
  padding: 10px 13px;
  background: #232E54;
  color: #F4F6FB;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F4E285;
  outline: none;
}

/* ==== ANIMATIONS ==== */
@keyframes slideInUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes slideUpMenu {
  from {transform: translateY(80px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}

/* --- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #232E54;
  color: #F4F6FB;
  box-shadow: 0 -4px 24px 0 rgba(44,204,255,0.07);
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  animation: slideInUp 0.37s cubic-bezier(.41,1.04,.13,1.12);
}
.cookie-banner p {
  flex: 2 1 240px;
  margin-bottom: 0;
  color: #F4F6FB;
  font-size: 1.05rem;
}
.cookie-banner .cookie-btn, .cookie-banner button {
  appearance: none;
  padding: 9px 22px;
  border-radius: 22px;
  background: #6096BA;
  color: #F4F6FB;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 6px;
  margin-bottom: 0;
  transition: background 0.18s, color 0.12s;
}
.cookie-banner .accept {
  background: #F4E285;
  color: #232E54;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #F7F658;
}
.cookie-banner .settings {
  background: #6096BA;
  color: #F4F6FB;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #8ADEFF;
  color: #232E54;
}
.cookie-banner .reject {
  background: #222B45;
  color: #F4E285;
  border: 1px solid #8ADEFF;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #8ADEFF;
  color: #1A2238;
}
/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33, 50, 91, 0.83);
  z-index: 100010;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.13s;
  animation: fadeIn 0.23s ease;
}
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal.hidden {
  display: none;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal .modal-content {
  background: #21325B;
  margin: 0 10px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(80,200,255,0.13);
  min-width: 320px;
  max-width: 420px;
  padding: 36px 22px 22px 22px;
  color: #F4F6FB;
  animation: slideInUp 0.34s cubic-bezier(.42,.97,.21,1.12);
  position: relative;
}
.cookie-modal .modal-content h3 {
  margin-bottom: 15px;
  font-size: 1.22rem;
}
.cookie-modal label,
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #2a3569;
  font-size: 1rem;
  color: #F4F6FB;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #8ADEFF;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.12s;
  margin-left: 18px;
  border: 1.3px solid #6096BA;
}
.cookie-modal .category-toggle:checked {
  background: #F4E285;
}
.cookie-modal .category-toggle:disabled {
  opacity: 0.66;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  background: #6096BA;
  color: #F4F6FB;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  padding: 9px 22px;
  cursor: pointer;
}
.cookie-modal .cookie-btn.accept {
  background: #F4E285;
  color: #232E54;
}
.cookie-modal .cookie-btn.reject {
  background: #222B45;
  color: #F4E285;
  border: 1px solid #8ADEFF;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #F4E285;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #8ADEFF;
}

@media (max-width: 700px) {
  .cookie-modal .modal-content {
    min-width: 0; max-width: 96vw; padding: 22px 4vw 18px 4vw;
  }
}

/* --- STEP-LIST & OL --- */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  counter-reset: step;
}
.step-list li {
  background: var(--color-bg-card);
  border-radius: 10px;
  padding: 18px 15px;
  min-width: 190px;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(100,190,255,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.step-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -16px; top: 14px;
  background: #8ADEFF;
  color: #181F33;
  border-radius: 50%;
  width: 28px; height: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 29px;
  box-shadow: 0 1.5px 6px #8ADEFF33;
  font-size: 1.10rem;
}
.step-list img {
  height: 36px;
  width: 36px;
}
@media (max-width: 700px) {
  .step-list {
    flex-direction: column;
    gap: 14px;
    padding-left: 0;
  }
  .step-list li { padding-left: 18px; min-width: 0; max-width: 100%; }
  .step-list li::before { position: static; left: initial; top: initial; margin-bottom:6px;}
}

/* --- MISC --- */
blockquote {
  font-size: 1.07rem;
  border-left: 4px solid #8ADEFF;
  padding-left: 17px;
  margin-bottom: 10px;
  color: #19213A;
  background: #F7FAFF;
  font-style: italic;
}
.leadership-message {
  margin-top: 14px;
  background: #222B45;
  border-radius: 8px;
  color: #F4F6FB;
  padding: 12px 16px;
  font-size: 1.07rem;
}
.statistical-highlights {
  margin-top: 15px;
  color: #F4E285;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
}
.statistical-highlights img { height: 22px; margin-right:6px;}

/* --- SPACING --- */
.section, .card, .feature-item, .destination-item, .tip-item, .bio, .guide-item, .operator-profile, .testimonial-card {
  margin-bottom: 20px;
}
.feature-grid, .tips-grid, .destination-grid, .guide-summaries, .operator-list, .team-bios {
  gap: 24px;
}
.content-wrapper, .content-grid, .card-container {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 9px; background: #1A2238;
}
::-webkit-scrollbar-thumb {
  background: #6096BA;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8ADEFF;
}

/* --- RESPONSIVE --- */
@media (max-width: 700px) {
  h1 { font-size: 1.5rem;}
  h2 { font-size: 1.18rem;}
  .testimonial-card, .card, .feature-item, .destination-item, .tip-item, .bio, .guide-item { padding: 11px 7px;}
  section { border-radius: 7px;}
}

@media (max-width: 480px) {
  html { font-size: 95%;}
  main { min-height: 56vh; }
}

/* --- A11Y/FOCUS STATE --- */
:focus {
  outline: 2.5px solid #F4E285;
  outline-offset: 2px;
}

/* --- NEON ACCENTS & EFFECTS --- */
.cta-button, .feature-item, .testimonial-card, .tips-list, .team-bios .bio, .operator-profile, .cookie-banner, .cookie-modal .modal-content {
  box-shadow: 0 4px 12px 0 rgba(80,200,255,0.12), 0 0px 16px #8ADEFF22;
}
.cta-button {
  text-shadow: 0 0 8px #8ADEFF88, 0 2px 6px #fff2;
}

/* --- Z-INDEX FOR MENU/BANNNER --- */
header {
  z-index: 700;
}
.mobile-menu,
.mobile-menu.open {
  z-index: 9999;
}
.cookie-banner,
.cookie-modal {
  z-index: 100010;
}

/* --- OVERRIDES FOR INTERACTIVE HOVER/ACTIVE STATES --- */
.button, .cta-button, .cookie-banner .cookie-btn {
  user-select: none;
}
.button:active, .cta-button:active {
  transform: scale(0.97);
}

/* --- TICKET SEARCH/COMPARISON BLOCKS (Compare Tickets page) --- */
.ticket-search-block, .comparison-results-block {
  background: var(--color-bg-card);
  padding: 24px 20px;
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(84,205,255,0.08);
  display: flex;
  align-items: center;
  gap: 18px;
}
.ticket-search-block img, .comparison-results-block img {
  height: 36px;
  width: 36px;
  filter: drop-shadow(0 1px 3px #8ADEFF);
}
@media (max-width: 700px) {
  .ticket-search-block, .comparison-results-block {
    flex-direction: column;
    gap: 9px;
    padding: 14px 8px;
  }
}

/* -------- END -------- */