/* -------------------------------------------------------------------------
   CSS RESET & BASE STYLES (Normalize + Box Model Reset)
 ------------------------------------------------------------------------- */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #141414;
  font-size: 16px;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol { list-style: none; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   BRAND PALETTE & DESIGN TOKENS
 ------------------------------------------------------------------------- */
:root {
  --color-bg: #fff;
  --color-bg-muted: #f4f5f7;
  --color-primary: #0A3755;
  --color-secondary: #7BC14C;
  --color-accent: #F5FAFE;
  --color-dark: #141414;
  --color-gray: #666;
  --color-lightgray: #E9ECEF;
  --color-border: #DDDDDF;
  --color-shadow: rgba(10,55,85,0.07);
  --color-link: #0A3755;
  --color-link-hover: #111;
  --color-btn-active: #111;
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --shadow-sm: 0 2px 8px var(--color-shadow), 0 0.5px 1.5px rgba(20,20,20,0.03);
  --shadow-card: 0 4px 24px rgba(10,55,85,0.11), 0 1px 3px rgba(20,20,20,0.04);
  --transition-main: 0.2s cubic-bezier(.55,.09,.68,.53);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* -------------------------------------------------------------------------
   TYPOGRAPHY - MONOCHROME_SOPHISTICATED
 ------------------------------------------------------------------------- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.16;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.22;
  color: #222;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
p, li, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.64;
  margin-bottom: 0.7em;
}
.subheadline {
  font-size: 1.18rem;
  color: #444;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 630px;
  letter-spacing: 0.01em;
}

strong,b { font-weight: 700; color: #111; }


/* -------------------------------------------------------------------------
   LAYOUT & SPACING
 ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: transparent;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 36px;
    padding: 24px 0 0 0;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  max-width: 730px;
  margin: 0 auto;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-main), border-color var(--transition-main);
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(20,20,20,0.18);
  border-color: #222;
  z-index: 1;
}

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

.feature-grid, .feature-icons, .feature-list, .feature-descriptions, .service-highlights, .benefits-highlights, .featured-destinations, .awards-descriptions, .stats-highlights, .feature-list, .contact-data {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li, .feature-icons li, .feature-descriptions li, .service-highlights li, .benefits-highlights li, .featured-destinations li, .awards-descriptions li, .stats-highlights li, .feature-list li, .contact-data li {
  background: var(--color-bg-muted);
  border-radius: var(--radius-sm);
  padding: 18px 18px 16px 18px;
  margin-bottom: 0;
  flex: 1 1 240px;
  min-width: 190px;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  font-size: 1rem;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition-main), border-color var(--transition-main), background var(--transition-main);
}
.feature-grid li img,
.feature-icons li img,
.contact-data li img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  margin-right: 10px;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.96;
}
.feature-grid li:hover, .feature-icons li:hover, .service-highlights li:hover {
  background: #fff;
  border-color: #0A3755;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.13);
}

.services-list, .service-highlights, .benefits-highlights, .featured-destinations, .awards-descriptions, .stats-highlights, .feature-list, .contact-data {
  flex-direction: column;
  gap: 12px;
  background: none;
  padding: 0;
  box-shadow: none;
  border: none;
  max-width: 670px;
  margin: 0 auto;
}
.services-list li, .service-highlights li, .benefits-highlights li, .featured-destinations li, .awards-descriptions li, .stats-highlights li, .feature-list li, .contact-data li {
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding-left: 0;
  min-width: unset;
  max-width: unset;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.services-list strong, .feature-grid strong, .feature-icons strong, .featured-destinations strong { color: #111; font-weight: 600; }

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 28px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  max-width: 520px;
  border-left: 3.5px solid #0A3755;
  border-right: 1.5px solid #E9ECEF;
  color: #111;
  font-size: 1rem;
}
.testimonial-card .client {
  font-style: italic;
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}
.star_ratings {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
.star_ratings img {
  width: 22px;
  height: 22px;
  filter: grayscale(0) brightness(0.15) sepia(1) saturate(0.3);
  margin-right: 1px;
  vertical-align: middle;
}

/* Steps lists (for processes, how-it-works) */
.steps-list, .steps_to_order {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 28px;
  font-size: 1.05rem;
  color: #222;
}
.steps-list li, .steps_to_order li {
  position: relative;
  margin-bottom: 0;
}
.steps-list li::before, .steps_to_order li::before {
  content: counter(step-counter) ". ";
  counter-increment: step-counter;
  color: #0A3755;
  font-weight: 700;
  margin-right: 8px;
}
.steps-list, .steps_to_order {
  counter-reset: step-counter;
}

/* Booking info special span */
.booking-info {
  background: var(--color-bg-muted);
  color: #111;
  border-left: 3px solid #0A3755;
  padding: 18px 18px 18px 26px;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  font-weight: 500;
  max-width: 470px;
}
@media (max-width: 500px) {
  .booking-info { padding-left: 16px; }
}


/* Confirmation page */
.confirmation-message {
  font-size: 1.19rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 16px;
}
.next-steps {
  color: #444;
  margin-bottom: 14px;
}


/* -------------------------------------------------------------------------
   BUTTONS & CTA ELEMENTS
 ------------------------------------------------------------------------- */
.cta-btn, .btn, button.cta-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0A3755;
  border: 2px solid #0A3755;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  padding: 12px 32px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-main), color var(--transition-main), border-color var(--transition-main), box-shadow 0.19s;
  text-align: center;
  min-width: 160px;
  margin: 6px 0 0 0;
}
.cta-btn:hover, .btn:hover, .cookie-btn:hover,
.cta-btn:active, .btn:active, .cookie-btn:active {
  background: #0A3755;
  color: #fff;
  border-color: #0A3755;
  box-shadow: 0 6px 24px rgba(10,55,85,0.18), 0 2px 7px rgba(60,60,60,0.06);
  text-decoration: none;
}
.cta-btn:focus-visible, .btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #7BC14C;
}

/* For cookie consent accept/reject buttons */
.cookie-btn {
  margin-right: 16px;
  background: #fff;
  color: #0A3755;
  border-color: #0A3755;
}
.cookie-btn.accept-all {
  background: #0A3755;
  color: #fff;
}
.cookie-btn.reject-all {
  background: #fff;
  color: #0A3755;
  border-color: #666;
}
.cookie-btn.settings {
  background: #fff;
  color: #0A3755;
  border-color: #0A3755;
}

/* -------------------------------------------------------------------------
   HEADER / NAVIGATION (Main + Mobile)
 ------------------------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
  z-index: 90;
  position: sticky;
  top: 0;
  left: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  gap: 30px;
  min-height: 68px;
}
header img {
  height: 40px;
  min-width: 94px;
}

nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 0 26px;
  align-items: center;
  margin-left: 24px;
}
nav.main-nav a {
  color: #222;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  opacity: 0.95;
  transition: color 0.19s, opacity 0.15s;
  position: relative;
}
nav.main-nav a:not(.cta-btn):hover, nav.main-nav a:not(.cta-btn):focus {
  color: #0A3755;
  opacity: 1;
}
nav.main-nav .cta-btn {
  margin-left: 24px;
}

@media (max-width: 950px) {
  nav.main-nav {
    gap: 0 15px;
  }
  nav.main-nav .cta-btn {
    margin-left: 16px;
  }
}
@media (max-width: 800px) {
  nav.main-nav { display: none; }
  header img { height: 37px; min-width: 87px; }
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #0A3755;
  cursor: pointer;
  z-index: 202;
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    z-index: 202;
    padding: 0 8px;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  z-index: 2500;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -12px 2px 66px rgba(10, 55, 85, .18), -3px 0px 15px #ddd;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.72,.14,.48,1.29);
  will-change: transform;
  overflow-y: auto;
  padding: 30px 24px 22px 26px;
  gap: 28px;
  opacity: 1;
}
.mobile-menu.active {
  transform: translateX(0%);
  box-shadow: -12px 3px 66px rgba(17,17,23,.38);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
  margin-bottom: 7px;
  margin-right: -8px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #0A3755;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  color: #111;
  font-family: var(--font-display);
  font-size: 1.21rem;
  font-weight: 600;
  padding: 9px 0 9px 0;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #E9ECEF;
  transition: color 0.18s, background 0.18s;
  border-radius: 0 7px 7px 0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #0A3755;
  background: #E9ECEF;
}
@media (min-width: 801px) {
  .mobile-menu { display: none !important; }
}


/* -------------------------------------------------------------------------
   FOOTER
 ------------------------------------------------------------------------- */
footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 34px 0 0 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 0 20px 26px 20px;
}
footer img {
  height: 42px;
  min-width: 54px;
  margin-right: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.footer-nav a {
  color: #222;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #0A3755;
}
.footer-contact {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.5;
}
.footer-contact a:hover { text-decoration: underline; color: #0A3755; }

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

/* -------------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
 ------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #111;
  color: #fff;
  padding: 26px 14px 18px 18px;
  box-shadow: 0 -3px 28px rgba(10,55,85,0.13);
  border-top: 2px solid #0A3755;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.4s, opacity 0.2s;
  transform: translateY(0%);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 1 1 300px;
  max-width: 560px;
  margin-right: 26px;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 11px 16px 11px;
  }
  .cookie-banner .cookie-message {
    margin-right: 0;
    max-width: 100vw;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }
}
.cookie-banner .cookie-btn.settings {
  color: #7BC14C;
  border: 1.5px solid #7BC14C;
  font-weight: 600;
  background: #181818;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #222;
  color: #fff;
  border-color: #7BC14C;
}

/* Cookie Modal Overlay */
.cookie-modal-bg {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(10,55,85,0.44);
  z-index: 3010;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal-bg.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #f5f5f8;
  color: #141414;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 6px 44px rgba(10,55,85,0.13);
  max-width: 480px;
  min-width: 280px;
  width: 98vw;
  padding: 36px 24px 30px 24px;
  margin-bottom: 0;
  animation: cookie-modal-in .32s cubic-bezier(.44,.13,.45,1.12);
  z-index: 3050;
}
@keyframes cookie-modal-in {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #0A3755;
  margin-bottom: 18px;
  font-weight: 600;
}
.cookie-modal ul {
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-bottom: 11px;
  font-size: 1.02rem;
  color: #1a1a1a;
}
.cookie-modal label {
  margin-right: 5px;
}
.cookie-modal input[type="checkbox"]:disabled {
  accent-color: #7BC14C;
  opacity: 0.65;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #0A3755;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #222;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  color: #0A3755;
}

@media (max-width: 550px) {
  .cookie-modal {
    padding: 19px 7vw 19px 7vw;
  }
}

/* -------------------------------------------------------------------------
   RESPONSIVE (Mobile-first)
 ------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  :root {
    --font-scale-h1: 2.15rem;
    --font-scale-h2: 1.7rem;
  }
  h1, .h1 { font-size: 2.1rem; }
  h2, .h2 { font-size: 1.5rem; }
}
@media (max-width: 700px) {
  .container {
    padding: 0 10px;
  }
  .card, .testimonial-card {
    padding: 16px 10px;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 0 0 0;
  }
}

/* -------------------------------------------------------------------------
   UTILITIES & HELPER CLASSES
 ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.mt-12 { margin-top:12px; }
.mb-24 { margin-bottom:24px; }
.mb-40 { margin-bottom:40px; }
.mb-60 { margin-bottom:60px; }
.shadow { box-shadow: var(--shadow-card); }
.bg-muted { background: var(--color-bg-muted); }


/* -------------------------------------------------------------------------
   PRINT STYLES (for privacy, policy, etc)
 ------------------------------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .cookie-modal-bg { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  * { background: transparent !important; color: #000 !important; box-shadow: none !important; }
}
