/* --- CSS Reset and Normalize -------------------------------------- */
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,
sum,
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F7FA;
  color: #232C34;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: #1A4B7B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #21A179; text-decoration: underline; }
ul, ol { list-style: none; }

/* --- Brand Colors as Custom Properties (with Fallback) --------------- */
:root {
  --primary: #1A4B7B;
  --secondary: #21A179;
  --accent: #F5F7FA;
  --creative-pink: #FE4A49;
  --creative-yellow: #FED766;
  --creative-blue: #009FB7;
  --creative-purple: #8341F5;
  --creative-lavender: #DCDBFF;
}

/* --- Typography ------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 0.7px;
  line-height: 1.2;
}
h1 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--creative-blue);
  text-shadow: 1px 5px 18px rgba(26,75,123,0.04);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--creative-pink);
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
h4, h5, h6 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #232C34;
}
p { margin-bottom: 16px; }
strong { font-weight: 700; }

/* --- Container & Layout Patterns ------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: white;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(33,161,121,0.09);
  padding: 28px 24px;
  transition: box-shadow 0.22s, transform 0.2s;
  min-width: 280px;
  max-width: 360px;
}
.card:hover {
  box-shadow: 0 8px 36px -2px rgba(26,75,123,0.18);
  transform: translateY(-4px) scale(1.025);
  z-index: 3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(131,65,245,0.13);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 600px;
  border-left: 9px solid var(--creative-pink);
  transition: box-shadow 0.21s, border-color 0.21s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 rgba(254,74,73,0.13);
  border-left: 9px solid var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 12px;
  background: #fff;
  border-radius: 12px;
}

/* --- HERO Section --------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--creative-blue) 70%, var(--creative-lavender) 100%);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-left: 0; /* container handles horz. padding */
  padding-right: 0;
  border-radius: 0 0 46px 46px;
  box-shadow: 0 12px 55px 0 rgba(26,75,123,0.11);
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero h2 {
  color: #ffffff;
  text-shadow: 1px 3px 13px rgba(26,75,123,0.16);
}
.hero p {
  color: #F5F7FA;
}
.hero .cta.primary {
  margin-top: 16px;
  font-size: 1.21rem;
}

/* --- Feature Lists & Grids ------------------------------------------ */
.feature-grid, .promotion-list, .airline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature-grid ul, .promotion-list ul, .airline-grid ul { /* Compatibility */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.feature-grid li, .promotion-list li, .airline-grid li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(33,161,121,0.07);
  padding: 18px 24px 18px 14px;
  min-width: 230px;
  max-width: 420px;
  gap: 18px;
  margin-bottom: 20px;
}
.feature-grid img,
.airline-grid img,
.promotion-list img {
  width: 38px; height: 38px; object-fit: contain;
  margin-right: 8px;
  flex-shrink: 0;
}
.airline-grid li > div { display: flex; flex-direction: column; }

/* --- Promotions Page Custom Card ------------------------------------ */
.promo-highlight {
  background: var(--creative-yellow);
  color: #232C34;
  border-radius: 16px;
  padding: 22px 20px 18px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  box-shadow: 0 1px 8px 0 rgba(255,139,120,0.11);
  margin-bottom: 8px;
  position: relative;
}
.promo-highlight h3 { color: var(--creative-pink); margin-bottom: 7px; }

/* --- CTA Buttons & Links ------------------------------------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 14px 34px;
  border: none;
  border-radius: 26px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(26,75,123,0.08);
  margin-bottom: 12px;
  transition: background 0.16s, box-shadow 0.21s, transform 0.16s;
  cursor: pointer;
  letter-spacing: 0.9px;
  position: relative;
}
.cta.primary {
  background: linear-gradient(90deg, var(--creative-pink) 0%, var(--secondary) 120%);
  color: #fff;
}
.cta:hover, .cta:focus {
  box-shadow: 0 8px 40px 4px rgba(33,161,121,0.13);
  background: linear-gradient(90deg, var(--secondary) 0%, var(--creative-blue) 100%);
  color: #fff;
  transform: scale(1.045);
  outline: none;
  text-decoration: none;
}

/* --- Header & NAVIGATION ------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(26,75,123,0.07);
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 14px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--creative-blue);
  color: #fff;
}
header img {
  height: 38px;
}
.mobile-menu-toggle {
  background: var(--creative-pink);
  color: #fff;
  border: none;
  border-radius: 100%;
  width: 44px; height: 44px;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 3px 18px 0 rgba(251,74,73,0.08);
  margin-left: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}

/* --- Mobile Menu Styles -------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,75,123,0.93);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(0.75,0.02,0.22,0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--creative-pink);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 100%;
  width: 48px; height: 48px;
  margin: 30px 0 12px 32px;
  cursor: pointer;
  box-shadow: 0 3px 18px 0 rgba(254,74,73,0.12);
  align-self: flex-start;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 17px 0 0 42px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  padding: 12px 0;
  transition: color 0.14s;
  border-radius: 10px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--creative-yellow);
  background: rgba(33,161,121,.08);
}

/* Hide desktop nav on mobile and show burger */
@media (max-width: 900px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* --- Main & Section Spacing ------------------------------------------ */
main { width: 100%; }
section { margin-bottom: 60px; padding: 40px 0; }

/* --- .text-section and Address Details ------------------------------ */
.text-section {
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 13px 28px;
  box-shadow: 0 2px 12px 0 rgba(33,161,121,0.04);
  margin-bottom: 18px;
}
.text-section p,
.search-panel h2,
.search-panel div{
  color:#232C34;
}
.address-details {
  background: var(--creative-lavender);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 2px 16px 0 rgba(131,65,245,0.07);
  margin-bottom: 26px;
  font-size: 1rem;
  color: var(--primary);
}
.map-embed {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,159,183,0.07);
}

/* --- Footer Styles -------------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 32px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 16px 0 rgba(26,75,123,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 7px;
  min-width: 220px;
}
footer nav a {
  color: var(--creative-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
}
footer .contact-details {
  color: #fff;
  font-size: 0.98rem;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
footer img {
  height: 38px;
}

/* --- Cookie Consent Banner & Modal ---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  z-index: 9999;
  box-shadow: 0 -2px 24px 0 rgba(33,161,121,0.14);
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.42s cubic-bezier(.7,.12,.17,.95);
  transform: translateY(120%);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 8px;
  margin-right: 8px;
  transition: background 0.15s, color 0.15s, transform 0.13s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.settings {
  background: var(--creative-lavender);
  color: var(--primary);
}
.cookie-banner .cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: var(--creative-pink);
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  transform: scale(1.07);
  filter: brightness(1.11) contrast(1.23);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 80px 0 rgba(33,161,121,0.17);
  z-index: 10000;
  max-width: 90vw;
  width: 410px;
  padding: 32px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s, transform 0.29s cubic-bezier(.79,.02,.13,1.13);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal label {
  flex: 1;
}
.toggle-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #F5F7FA;
  box-shadow: 0 1px 4px rgba(26,75,123,0.12);
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.29s;
  margin-right: 8px;
}
.toggle-switch:checked {
  background: var(--secondary);
}
.toggle-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.09);
  transition: left 0.3s;
}
.toggle-switch:checked:before {
  left: 24px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
  font-size: 1rem;
}

/* --- Responsive ----------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .footer .container, footer .container {
    flex-direction: column;
    gap: 26px;
  }
  .content-grid, .feature-grid, .promotion-list, .airline-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.32rem; }
  .hero { padding-top: 36px; padding-bottom: 32px; border-radius: 0 0 24px 24px; }
  .container { padding-left: 12px; padding-right: 12px; }
  .section,
  section { margin-bottom: 30px; padding: 24px 0; }
  .testimonial-card, .feature-grid li, .airline-grid li, .promotion-list li { min-width: unset; max-width: unset; width: 100%; }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 530px) {
  .container { padding-left: 6px; padding-right: 6px; }
  header .container { padding-left: 4px; padding-right: 4px; }
  .hero { padding-top: 12px; padding-bottom: 12px; }
}

/* --- Micro-interactions & Focus Styles ----------------------------- */
button, .cta, .cookie-btn {
  outline: none;
}
button:focus-visible, .cta:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--creative-yellow), 0 2px 8px 0 rgba(26,75,123,0.18);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* --- Animations (slide, fade) ---------------------------------------- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero .content-wrapper > * { animation: fadeInUp .8s cubic-bezier(.42,.11,.24,1.13) backwards; }
.hero .content-wrapper > *:nth-child(2) { animation-delay: 0.18s; }
.hero .content-wrapper > *:nth-child(3) { animation-delay: 0.33s; }

/* --- Visual Artistic Accents/doodles ------------------------------- */
h1, .hero h1, .confirmation-message {
  position: relative;
}
h1:after, .hero h1:after {
  content: '';
  position: absolute;
  left: -16px; bottom: -12px;
  width: 80px; height: 14px;
  background: var(--creative-yellow);
  opacity: 0.7;
  border-radius: 8px;
  filter: blur(8.5px);
  z-index: -1;
  pointer-events: none;
}
.hero h1:after {
  left: -8px;
  width: 100px; height: 18px;
  background: var(--creative-pink);
  opacity: 0.39;
}

/* --- Confirmation Message on Thank You Page ------------------------ */
.confirmation-message {
  background: var(--creative-lavender);
  color: var(--primary);
  border-radius: 13px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 20px 0 20px 0;
  padding: 24px 20px 19px 30px;
}

/* --- Artistic Section Breaks ---------------------------------------- */
.section {
  background: linear-gradient(96deg, #fff 83%, var(--creative-yellow) 260%);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(33,161,121,0.10);
}

/* --- Accessibility: Testimonial Text Contrast ---------------------- */
.testimonial-card p, .testimonial-card span {
  color: #232C34;
}
.testimonial-card img { width: 30px; height: 30px; border-radius: 50%; margin-right: 7px; }
.testimonial-card span {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--creative-blue);
}

/* --- Other Elements & Utility Classes ----------------------------- */
.search-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(33,161,121,0.10);
  padding: 20px 18px 16px 18px;
  margin-top: 7px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.search-panel > div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.search-panel img {
  width: 24px; height: 24px;
}

/* --- Hide scroll when modal/menu open ---------------------------- */
body.menu-open, body.cookie-modal-open {
  overflow: hidden;
}

/* --- Ensures No Grid/Columns Used! ------------------------------- */
/* No grid, column-count, columns or related properties are present in this file. Only flexbox for layout. */