/*
RESET & BASE RULES
==============================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  background-color: #23263a;
  /* Futuristic dark base */
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #23263a;
  color: #F4F6FB;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* GOOGLE FONTS: Import (for local, ensure linked but shown here for completeness) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #F9C940;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f4f6fb;
  text-shadow: 0 0 6px #F9C94060;
}
strong, b {
  font-weight: 600;
}
ul, ol {
  margin-left: 1.2em;
  padding-left: 1em;
}
li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  color: #e3e7fa;
}
li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px #37425980);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #21223c;
  border-radius: 10px;
  overflow: hidden;
  color: #F4F6FB;
  font-size: 16px;
}
table th, table td {
  padding: 16px 12px;
  text-align: left;
}
table th {
  background: #304a7b;
  color: #F9C940;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}
table tr:not(:first-child):hover {
  background: #28355c;
}
table tr:nth-child(even) td {
  background: #23263a;
}
table tr:nth-child(odd) td {
  background: #21223c;
}

/* TYPOGRAPHY SCALE ===================== */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F9C940;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px #37425994;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #F4F6FB;
  margin-bottom: 20px;
  text-shadow: 0 1px 8px #38243733;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F9C940;
  margin-bottom: 13px;
}
h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F6FB;
}
p, ul, ol {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #e1e5fa;
  margin-bottom: 16px;
}
hr {
  border: 0;
  border-top: 1.5px solid #374259;
  margin: 36px 0;
  opacity: 0.15;
}

/* LAYOUT & CONTAINERS ================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: rgba(34, 37, 58, 0.95);
  border-radius: 18px;
  box-shadow: 0 4px 44px 0 #262e4a60;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 26px 10px;
    margin-bottom: 20px;
    gap: 12px;
  }
  .container {
    padding: 0 10px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 20px 0;
    margin-bottom: 34px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #252a43;
  box-shadow: 0 0 24px 0 #37425942;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 #F9C94055, 0 0 0 2px #37425970;
  transform: translateY(-2px) scale(1.018);
}
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding: 18px 12px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: #F4F6FB;
  color: #23263a !important;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px #37425933;
  font-size: 1.04rem;
  transition: box-shadow 0.18s;
}
.testimonial-card strong {
  color: #374259;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.4px;
}
.testimonial-card span {
  color: #F9C940;
  margin-left: 8px;
  font-size: 1.02em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px #F9C94066, 0 0 0 2px #37425933;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 9px;
    gap: 10px;
    font-size: 0.97rem;
  }
}

.tour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.tour-item {
  background: #252a43;
  border-radius: 12px;
  box-shadow: 0 2px 24px #304a7b1f;
  flex: 1 1 300px;
  min-width: 260px;
  padding: 26px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.tour-item:hover {
  box-shadow: 0 4px 32px #F9C94066, 0 0 0 2px #37425933;
  transform: translateY(-4px) scale(1.01);
}
.tour-item h3 {
  margin-bottom: 10px;
  color: #F9C940;
}
.tour-item a {
  align-self: flex-start;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #F9C940;
  background: #374259;
  padding: 8px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 1px 7px #F9C94050;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.tour-item a:hover {
  background: #F9C940;
  color: #374259;
  box-shadow: 0 2px 12px #F9C94060;
}
@media (max-width: 900px) {
  .tour-list {
    flex-direction: column;
    gap: 15px;
  }
  .tour-item {
    padding: 18px 9px;
    min-width: unset;
  }
}

/* BUTTONS ============================================*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: #F9C940;
  color: #23263a;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 24px #F9C94055;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.18s, box-shadow 0.16s, transform 0.14s;
  text-shadow: none;
}
.btn-primary:active {
  transform: scale(0.97);
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #374259;
  color: #F9C940;
  box-shadow: 0 8px 32px #37425988, 0 0 16px #ffc94066;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #F9C940;
  background: transparent;
  border: 2px solid #F9C940;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 2px 9px #F9C94033;
}
.btn-outline:active {
  transform: scale(0.98);
}
.btn-outline:hover, .btn-outline:focus {
  color: #23263a;
  background: #F9C940;
  box-shadow: 0 6px 32px #F9C94055;
}

/* HEADER & NAVIGATION ===============================*/
header {
  background: #222537;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 14px #19204855;
  padding-top: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}
header img {
  width: 55px;
  height: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-size: 1rem;
  color: #F4F6FB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.1px;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: #F9C940;
  text-shadow: 0 0 8px #F9C94022;
}
header .btn-primary {
  margin-left: 24px;
}

/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1023px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  header nav {
    gap: 15px;
  }
  header .btn-primary {
    margin-left: 12px;
    font-size: 1rem;
    padding: 11px 24px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 104;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #F9C940;
    padding: 6px 14px;
    margin-left: auto;
    cursor: pointer;
    transition: color 0.18s, background 0.14s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:hover {
    color: #fff;
    background: #374259;
    border-radius: 99px;
  }
}

/* MOBILE MENU & OVERLAY ANIMATIONS ===================*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #18203d;
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.6,.04,.98,.36);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #F9C940;
  z-index: 220;
  cursor: pointer;
  padding: 0 10px;
  transition: color 0.18s, background 0.13s;
}
.mobile-menu-close:active, .mobile-menu-close:hover {
  color: #fff;
  background: #374259;
  border-radius: 99px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  margin-top: 82px;
  padding: 0 38px 28px 38px;
}
.mobile-nav a {
  color: #F4F6FB;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.14s, color 0.18s;
  width: 100%;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F9C940;
  color: #374259;
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER ================================*/
footer {
  background: #23263a;
  border-top: 2.5px solid #374259;
  color: #cacde2;
  font-size: 14px;
  padding: 0 0 0 0;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 30px;
}
footer a {
  color: #F9C940;
  font-weight: 600;
  font-size: 1.02em;
  margin-right: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
footer img {
  width: 44px;
  height: auto;
}
footer p {
  color: #a7aac8;
  margin-bottom: 8px;
  font-size: 14px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-top: 17px;
    padding-bottom: 15px;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
  }
}

/* COOKIE CONSENT BANNER =============================*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #262e4a;
  color: #F4F6FB;
  box-shadow: 0 -2px 28px #37425990;
  padding: 20px 14px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  gap: 28px;
  transition: transform 0.3s cubic-bezier(0.64,0,0.78,1), opacity 0.17s;
  font-size: 1rem;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 300px;
  color: #F4F6FB;
  font-size: 1.03rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 8px 22px;
  transition: background 0.18s, color 0.17s;
}
.cookie-consent-banner .accept-cookies {
  background: #F9C940;
  color: #23263a;
  box-shadow: 0 2px 14px #F9C94033;
}
.cookie-consent-banner .accept-cookies:hover, .cookie-consent-banner .accept-cookies:focus {
  background: #374259;
  color: #F9C940;
}
.cookie-consent-banner .reject-cookies {
  background: #374259;
  color: #F9C940;
  border: 1.5px solid #F9C940;
}
.cookie-consent-banner .reject-cookies:hover, .cookie-consent-banner .reject-cookies:focus {
  background: #F9C940;
  color: #23263a;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  color: #F9C940;
  border: 1.5px solid #F9C940;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #F9C940;
  color: #23263a;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 7px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
  }
}

/* COOKIE PREFERENCES MODAL =========================*/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 38, 61, 0.85);
  z-index: 4010;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #23263a;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 6px 42px #374259aa;
  min-width: 320px;
  max-width: 430px;
  width: 96vw;
  color: #F4F6FB;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookieModalAppear 0.4s cubic-bezier(.46,.03,.52,.96);
}
@keyframes cookieModalAppear {
  from { transform: translateY(38px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #F9C940;
  font-size: 1.2rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
}
.cookie-modal .close-cookie-modal {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #F9C940;
  cursor: pointer;
  margin-bottom: -16px;
  margin-top: -11px;
}
.cookie-modal .close-cookie-modal:active,
.cookie-modal .close-cookie-modal:hover {
  color: #fff;
}
/* Simple switch/toggle */
.cookie-modal .cookie-switch input[type='checkbox'] {
  display: none;
}
.cookie-modal .cookie-switch label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-modal .cookie-switch .switch {
  width: 38px;
  height: 20px;
  background: #374259;
  border-radius: 20px;
  position: relative;
  margin-right: 7px;
  transition: background 0.17s;
}
.cookie-modal .cookie-switch input:checked + .switch {
  background: #F9C940;
}
.cookie-modal .cookie-switch .switch:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .cookie-switch input:checked + .switch:before {
  left: 22px;
}

/* GENERAL SPACING & VISUAL EFFECTS ==================*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
@media (max-width: 900px) {
  section {
    margin-bottom: 34px;
    padding: 22px 4px;
  }
}

.text-section {
  background: #252a43;
  color: #f4f6fb;
  padding: 16px 18px;
  border-radius: 10px;
  margin: 12px 0 16px 0;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* MICROINTERACTIONS & TRANSITIONS ===================*/
html {
  scroll-behavior: smooth;
}
*[tabindex]:focus, *:focus {
  outline: 2px solid #F9C940;
  outline-offset: 2px;
  transition: outline 0.15s;
}
::-webkit-scrollbar {
  width: 10px;
  background: #23263a;
}
::-webkit-scrollbar-thumb {
  background: #374259;
  border-radius: 20px;
}

/* GRADIENT HIGHLIGHTS & NEON ACCENTS ===============*/
.btn-primary,
.btn-outline {
  box-shadow: 0 0 0 0 #F9C940, 0 4px 18px #37425956 inset, 0 1.5px 12px #F9C94090;
}
h1, h3, .btn-primary, .btn-outline, .mobile-menu-toggle, .mobile-menu-close, .tour-item a {
  text-shadow: 0 0 10px #F9C94033, 0 1px 2px #37425966;
}
section, .content-wrapper, .card, .tour-item, .testimonial-card, .text-section {
  /* Futuristic neon border */
  border: 0.8px solid #304a7b44;
  box-shadow: 0 0 24px #304a7b22;
}

/* RESPONSIVE ADJUSTMENTS ===========================*/
@media (max-width: 768px) {
  section {
    padding: 15px 0;
    margin-bottom: 22px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
}

/* FOCUS/ACCESSIBLE STATES ==========================*/
.skip-link {
  position: absolute;
  left: -1000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 400;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  padding: 12px 30px;
  font-size: 18px;
  background: #F9C940;
  color: #23263a;
  border-radius: 8px;
  outline: none;
}

/* UTILITIES ========================================*/
.mt-2 { margin-top: 12px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-3 { margin-bottom: 24px !important; }
.flex { display: flex; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }

/* OVERRIDE TABLE WRAPPING FOR FLEXBOX-COMPATIBILITY (fallback for small screens) */
@media (max-width: 700px) {
  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }
  table tr {
    margin-bottom: 13px;
  }
  table th {
    background: #374259;
    color: #F9C940;
    text-align: left;
    padding: 10px 7px;  
  }
  table td {
    padding: 10px 7px;
    background: #23263a;
  }
}

/* HEIGHT FIX FOR BODY ON MOBILE TO ALLOW SLIDE MENU/BANNER */
body {
  min-height: 100vh;
  padding-bottom: 90px; /* Space for cookie banner fixed on mobile */
}

/* COLOR OVERRIDE FOR ACCESIBLE CONTRAST IN TESTIMONIALS AND TABLES */
.testimonial-card p, .testimonial-card span, .testimonial-card strong {
  color: #23263a !important;
}

/* MISC THEMATIC ICONS/HELPERS =======================*/
li img {
  filter: drop-shadow(0 0 2px #F9C940); /* Neon accent */
  margin-right: 9px;
}

/* END OF CSS */
