/* =============================================================
   RESET & NORMALIZE (MOBILE-FIRST)
   ============================================================= */
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 { scroll-behavior: smooth; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; background: none; border: none; outline: none; box-sizing: border-box; }
:focus { outline: 2px solid #22486A; outline-offset: 2px; }

/* =============================================================
   TYPOGRAPHY & BRAND FONTS
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #22486A;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #22486A;
  margin-bottom: 16px;
  line-height: 1.08;
  text-transform: none;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.33rem; font-weight: 700; }
h4 { font-size: 1.125rem; }
p, li, ul, ol, blockquote { font-size: 1rem; font-weight: 400; line-height: 1.65; }
strong { font-weight: 700; }

@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
}

/* Angular font touches via letter-spacing and tight line-height */
h1, h2, h3 {
  letter-spacing: 0.027em;
}

/* =============================================================
   LAYOUT STRUCTURE — FLEXBOX GRIDS, CONTAINERS, SECTIONS
   ============================================================= */
.container {
  width: 100%;
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(34, 72, 106, 0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #e6eaf1;
  transition: box-shadow 0.25s cubic-bezier(.7,.2,.3,1);
}
.card:hover {
  box-shadow: 0 6px 28px rgba(34, 72, 106, 0.13);
  border-color: #F7CB6A;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px !important;
  background: #fffbe9;
  border-radius: 16px;
  border: 1.5px solid #F7CB6A;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(34, 72, 106, 0.08);
  max-width: 530px;
  font-size: 1.05rem;
  color: #22486A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Global gaps between cards/sections/elements */
section + section {
  margin-top: 32px;
}

/* List Unordered styles */
ul, ol {
  padding-left: 0;
  margin: 0;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

/* Remove margin-bottom from last child in .content-wrapper */
.content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* =============================================================
   HEADER — MAIN NAV, LOGO, CTA, MOBILE MENU
   ============================================================= */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 1.5px 16px rgba(34, 72, 106, 0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 46px; }

.main-nav {
  display: none;
}
@media (min-width: 950px) {
  .main-nav {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 1rem;
    color: #22486A;
    position: relative;
    padding: 6px 0;
    transition: color 0.23s cubic-bezier(.70,.2,.38,.95);
  }
  .main-nav a:after {
    content: '';
    display: block;
    width: 0;
    height: 2.5px;
    background: #F7CB6A;
    transition: width 0.28s cubic-bezier(.43,1.2,.69,.98);
    margin: 0 auto 0 0;
    border-radius: 1px;
    position: relative;
    bottom: -2px;
  }
  .main-nav a:hover,
  .main-nav a:focus {
    color: #F7CB6A;
  }
  .main-nav a:hover:after,
  .main-nav a:focus:after {
    width: 70%;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.07rem;
  color: #fff;
  background: #22486A;
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  margin-left: 0;
  letter-spacing: 0.04em;
  box-shadow: 0 2.5px 16px rgba(34, 72, 106, 0.07);
  cursor: pointer;
  transition: background 0.22s cubic-bezier(.51,1.6,.34,.80), color 0.22s, box-shadow 0.22s;
}
.cta-button:hover, .cta-button:focus {
  background: #F7CB6A;
  color: #22486A;
  box-shadow: 0 4px 24px rgba(34, 72, 106, 0.14);
}

/* Burger Icon Style */
.mobile-menu-toggle {
  display: flex;
  background: #22486A;
  color: #fff;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 2.1rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 30;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F7CB6A;
  color: #22486A;
}
@media (min-width: 950px) {
  .mobile-menu-toggle { display: none; }
}

/* MOBILE MENU OVERLAY/STYLES */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #22486A;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.58,0,.48,1), opacity 0.28s cubic-bezier(.55,1,.52,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.15rem;
  color: #fff;
  background: transparent;
  border: none;
  margin: 28px 34px 14px 0;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 6px;
  align-self: flex-end;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F7CB6A;
  color: #22486A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F7CB6A;
  border-bottom: 2.5px solid #F7CB6A;
}
@media (min-width: 950px) {
  .mobile-menu { display: none !important; }
}

/* =========================
   HERO & FEATURE SECTIONS
   ========================= */
.hero, .hero-about, .hero-journeys,
.hero-destinations, .hero-experiences, .hero-gallery, .hero-contact, .thank-you-hero {
  width: 100%;
  background: linear-gradient(127deg, #F7CB6A 28%, #fff 83%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 36px rgba(34, 72, 106, 0.07);
  margin-bottom: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}
.hero .content-wrapper,
.hero-about .content-wrapper,
.hero-journeys .content-wrapper,
.hero-destinations .content-wrapper,
.hero-experiences .content-wrapper,
.hero-gallery .content-wrapper,
.hero-contact .content-wrapper,
.thank-you-hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}

.features, .features-about, .features-unique, .aesthetic-features, .exclusive-experiences {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(34, 72, 106, .06);
}

/* =========================
   MAIN CARDS, LISTS, TESTIMONIALS
   ========================= */
.journey-category, .destination-services, .experience-services {
  border-left: 3.5px solid #F7CB6A;
  padding-left: 18px;
  margin-bottom: 26px;
}
.journey-category h3 {
  color: #22486A;
  font-size: 1.20rem;
  margin-bottom: 7px;
}

.testimonials, .testimonials-about {
  background: #fffbe9;
  border-radius: 22px;
  margin-top: 20px;
  box-shadow: 0 1.5px 14px rgba(34, 72, 106, 0.07);
  border: 1.5px solid #F7CB6A;
}
.testimonials .testimonial-card,
.testimonials-about .testimonial-card {
  background: #fff;
  border: 1.5px solid #F7CB6A;
  color: #22486A;
  margin-bottom: 20px;
}
.testimonial-card:last-child { margin-bottom: 0; }

.testimonial-card img {
  width: 20px;
  height: 20px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
}
.testimonial-card div {
  font-size: 0.99rem;
  font-weight: 700;
  color: #22486A;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========================
   CALL TO ACTION SECTIONS
   ========================= */
.cta-journey, .cta-destination, .cta-experience, .contact-teaser, .thank-you-hero {
  background: #22486A;
  border-radius: 19px;
  padding: 36px 20px;
  margin-bottom: 36px;
  box-shadow: 0 3px 19px rgba(34, 72, 106, 0.08);
  color: #fff;
}
.cta-journey .cta-button,
.cta-destination .cta-button,
.cta-experience .cta-button,
.contact-teaser .cta-button,
.thank-you-hero .cta-button {
  background: #F7CB6A;
  color: #22486A;
  font-weight: 800;
  margin-top: 16px;
}
.cta-journey .cta-button:hover,
.cta-destination .cta-button:hover,
.cta-experience .cta-button:hover,
.contact-teaser .cta-button:hover,
.thank-you-hero .cta-button:hover {
  background: #22486A;
  color: #fff;
}

/* =========================
   FOOTER STYLES
   ========================= */
footer {
  background: #22486A;
  color: #fff;
  padding: 40px 0 16px 0;
  font-size: 0.98rem;
  z-index: 9;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
}
footer .content-wrapper {
  flex-direction: row;
  gap: 38px;
  align-items: flex-start;
}
footer .logo img { height: 38px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 5px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline 1.5px rgba(247,203,106, 0.2);
  transition: color 0.19s, text-decoration-color 0.19s;
}
.footer-nav a:hover {
  color: #F7CB6A;
  text-decoration-color: #F7CB6A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
}
.footer-contact p {
  margin-bottom: 0;
  color: #fff;
  opacity: 0.88;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* =========================
   GEOMETRIC SHAPE ELEMENTS & BUTTONS
   ========================= */
.card, .testimonial-card, .section, .cta-journey, .cta-destination, .cta-experience, .contact-teaser, .thank-you-hero {
  border-radius: 16px 32px 16px 32px;
}
.cta-button, button, .mobile-menu-toggle, .mobile-menu-close {
  border-radius: 9px 14px 9px 14px;
}

/* =========================
   GENERAL ELEMENT STYLES
   ========================= */
img {
  border-radius: 8px;
}

/* ENHANCED BUTTON STATES */
button, .cta-button {
  transition: background 0.19s, color 0.19s, box-shadow 0.23s;
}
button:active, .cta-button:active {
  box-shadow: 0 1.5px 9px rgba(34, 72, 106, 0.19);
}

/* =========================
   FORMS (for potential later add-on)
   ========================= */
input, select, textarea {
  border: 1.5px solid #e6eaf1;
  border-radius: 10px;
  background: #fff;
  padding: 10px 14px;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.19s;
}
input:focus, select:focus, textarea:focus {
  border-color: #F7CB6A;
}

/* =========================
   LEGAL TEXT SPACING
   ========================= */
.legal-privacy, .legal-terms, .legal-gdpr, .legal-cookies {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34, 72, 106, 0.09);
  margin-bottom: 38px;
  padding: 42px 20px;
}

/* =========================
   COOKIE CONSENT BANNER & DIALOG
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #22486A;
  color: #fff;
  padding: 26px 8px 20px 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  font-size: 1.03rem;
  box-shadow: 0 -2.5px 20px rgba(34,72,106,0.11);
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(.58,0,.48,1), visibility 0.22s;
}
.cookie-banner.active {
  visibility: visible;
  opacity: 1;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 7px 13px 7px 13px;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(247,203,106,0.04);
  margin: 0 2px;
}
.cookie-btn.accept {
  background: #F7CB6A;
  color: #22486A;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.accept:hover {
  background: #ffd579;
}
.cookie-btn.reject {
  background: #fff;
  color: #22486A;
  border: 1.5px solid #F7CB6A;
}
.cookie-btn.reject:hover {
  background: #fbedc0;
}
.cookie-btn.settings {
  background: #22486A;
  color: #F7CB6A;
  border: 1.5px solid #F7CB6A;
}
.cookie-btn.settings:hover {
  background: #314f7a;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 430px;
  background: #fff;
  color: #22486A;
  z-index: 1200;
  border-radius: 24px;
  box-shadow: 0 6px 38px rgba(34, 72, 106, 0.19);
  padding: 36px 28px 28px 28px;
  transform: translate(-50%,-50%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.48,1.2,.81,.74), transform 0.32s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #22486A;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.cookie-category label {
  font-weight: 600;
}
.cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 12px;
  background: #e6eaf1;
  position: relative;
  cursor: pointer;
  transition: background 0.21s;
  display: flex; align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-toggle span {
  position: absolute;
  left: 2px; top: 2px; bottom: 2px;
  width: 18px; background: #F7CB6A;
  border-radius: 50%;
  transition: left 0.18s cubic-bezier(.51,1.2,.27,.89), background 0.21s;
}
.cookie-toggle input[type="checkbox"]:checked + span {
  left: 18px;
  background: #22486A;
}
.cookie-modal .modal-actions {
  display: flex; gap: 14px; margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: #22486A;
  cursor: pointer;
  padding: 0 8px;
}
.cookie-modal .modal-close:hover { color: #F7CB6A; }

/* =========================
   RESPONSIVE & FLEXBOX LAYOUTS
   ========================= */
@media (max-width: 768px) {
  .container,
  .content-wrapper,
  .footer .content-wrapper {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  .footer .container {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 19px !important;
    align-items: flex-start !important;
  }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .journey-category {
    margin-bottom: 16px;
    padding-left: 9px;
  }
  .testimonial-card, .card {
    max-width: 100%;
    padding: 20px 8px;
  }
}

@media (max-width: 480px) {
  .hero, .hero-about, .hero-journeys, .hero-experiences, .hero-gallery, .hero-contact, .thank-you-hero {
    padding-top: 24px; padding-bottom: 24px; border-radius: 0 0 15px 15px;
  }
}

@media (min-width: 1000px) {
  .container { padding-left: 36px; padding-right: 36px; }
}

/* =========================
   UTILITIES
   ========================= */
.mt-0   { margin-top: 0    !important; }
.mt-16  { margin-top: 16px !important; }
.mb-0   { margin-bottom: 0 !important; }
.mb-24  { margin-bottom:24px !important; }
.text-center { text-align: center !important; }
.flex-center { justify-content: center !important; align-items: center !important; }
.w-100 { width: 100% !important; }

/* =========================
   MICRO-INTERACTIONS (Hover, Focus)
   ========================= */
ul li img, .features ul li img {
  min-width: 30px;
  width: 32px;
  height: 32px;
  background: #F7CB6A;
  border-radius: 7px;
  padding: 3.5px;
  margin-right: 2px;
  box-shadow: 0 1.5px 7px rgba(34, 72, 106,0.06);
}
ul li img:hover, .features ul li img:hover {
  background: #ffe29f;
}
a[href^="mailto"] {
  color: #22486A;
  text-decoration: underline 1.5px #22486A44;
  word-break: break-all;
}
a[href^="mailto"]:hover {
  color: #F7CB6A;
  text-decoration: underline 1.5px #F7CB6A;
}

/* =========================
   HIGH CONTRAST FOR TESTIMONIALS
   ========================= */
.testimonial-card {
  background: #fffbe9;
  color: #22486A;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
}

/* =========================
   Z-INDEX CONTROL REF
   ========================= */
header { z-index: 20; }
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 1100; }
.cookie-modal { z-index: 1200; }

/* =========================
   MISC
   ========================= */
::-webkit-scrollbar { width: 11px; background: #f9f9f9; }
::-webkit-scrollbar-thumb { background: #e0e6ee; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #c2cfe0; }

/* END OF GEOMETRIC_STRUCTURED CSS FOR STREAM VOLTAGE */
