/* --- CSS RESET / 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, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F7F8FA;
  color: #203872;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #203872;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px dotted #FDB447; outline-offset: 2px; }

ul, ol {
  margin-left: 1.25em;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 8px;
}

strong { font-weight: 700; }
em, i { font-style: italic; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #203872;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 24px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }

p {
  font-size: 1rem;
  color: #203872;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

/* --- BRANDING COLORS --- */
:root {
  --primary: #203872;
  --secondary: #FDB447;
  --accent: #F7F8FA;
  --pastel-pink: #FFE7EB;
  --pastel-blue: #E3ECFB;
  --pastel-yellow: #FFF4E5;
  --pastel-green: #E6F8EC;
  --pastel-lavender: #F3F1FA;
  --card-shadow: 0 4px 24px 0 rgba(50, 60, 100, 0.06);
  --text-soft: #3a487c;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

/* --- FLEXBOX--- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 36px rgba(32,56,114,0.17);
  transform: translateY(-2px) scale(1.019);
}
.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;
}

/* --- FEATURE + TESTIMONIALS FLEX --- */
.feature-grid,
.tour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div,
.tour-list > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  background: var(--pastel-blue);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.17s;
}
.feature-grid > div:hover,
.tour-list > div:hover {
  background: var(--pastel-pink);
  box-shadow: 0 4px 24px rgba(253,180,71,0.09);
  transform: translateY(-2.5px) scale(1.015);
}

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

/* --- TESTIMONIAL CARD FLEX --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 20px 24px;
  margin-bottom: 24px;
  max-width: 700px;
}
.testimonials .testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  color: #222;
  margin-right: 0;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card footer {
  color: #203872;
  font-size: 0.99rem;
  margin-left: 2em;
}

/* --- GALLERY EXPERIENCES --- */
.gallery-experiences {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.gallery-experiences .text-section {
  background: var(--pastel-lavender);
  border-radius: 16px;
  padding: 24px 20px;
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--card-shadow);
}

/* --- HERO SECTIONS & CTA --- */
.hero {
  background: linear-gradient(110deg, var(--pastel-blue) 48%, var(--pastel-pink) 100%);
  padding: 58px 0 52px 0;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero h1 {
  color: var(--primary);
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 12px #fff6;
}
.hero p {
  color: #3a487c;
  margin-bottom: 18px;
  font-size: 1.08rem;
  opacity: 0.98;
}
.call-to-action {
  background: linear-gradient(100deg, var(--pastel-yellow) 50%, var(--pastel-green) 100%);
  border-radius: 24px;
  margin-bottom: 0;
  box-shadow: var(--card-shadow);
  padding: 34px 20px 34px;
  text-align: center;
}
.call-to-action .content-wrapper {
  align-items: center;
}
.call-to-action h2 {
  color: var(--primary);
}
.call-to-action p {
  color: #354060;
}

/* --- BUTTONS & LINKS CTA --- */
.cta-primary, .cta-secondary {
  appearance: none;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 22px;
  padding: 0.75em 2.4em;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(32, 56, 114, 0.06);
  text-align: center;
  display: inline-block;
}
.cta-primary {
  background: var(--secondary);
  color: #203872;
}
.cta-primary:hover, .cta-primary:focus {
  background: #f5dbb6;
  color: #203872;
  box-shadow: 0 4px 20px #FDB44733;
  transform: translateY(-1.5px) scale(1.021);
}
.cta-secondary {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--secondary);
  box-shadow: 0 6px 16px #20387222;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #3a487c;
  font-size: 0.97rem;
  opacity: 0.85;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--secondary);
  opacity: 1;
}

.contact-info {
  margin-bottom: 14px;
  color: #405182;
  font-size: 0.99rem;
}
.contact-info a { color: var(--primary); }

.social-media {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}
.social-media img {
  width: 24px;
  height: 24px;
  opacity: 0.80;
  transition: opacity 0.2s;
}
.social-media img:hover {
  opacity: 1;
}

footer {
  margin-top: 68px;
  background: var(--pastel-blue);
  padding: 40px 0 18px 0;
}
footer .container { justify-content: center; }
footer .content-wrapper {
  align-items: center;
  justify-content: center;
}

/* --- NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(32,56,114,.05);
  z-index: 1000;
  position: sticky;
  top: 0;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 18px 20px 12px;
  position: relative;
}
.main-nav .logo img {
  height: 34px;
  width: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #203872;
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.main-nav .cta-primary {
  margin-left: auto;
  background: var(--secondary);
  color: #203872;
  padding: 7px 22px;
  border-radius: 20px;
  font-size: 1rem;
  box-shadow: 0 2px 8px #FDB44710;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #ffe3b0;
  color: #1b295e;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  margin: 0 18px 0 auto;
  z-index: 98;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--secondary);
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247,248,250, 0.98);
  box-shadow: 0 6px 32px #20387227;
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.88,.02,.32,1);
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  position: absolute;
  top: 18px; right: 28px;
  z-index: 10001;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 80px 0 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 12px 6px 2px;
  border-radius: 10px;
  transition: background 0.15s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #203872;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 20px;
    font-size: 1rem;
  }
}
@media (max-width: 880px) {
  .main-nav {
    gap: 16px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 998;
  }
  .hero h1 { font-size: 2rem; }
  .section,
  .call-to-action { padding: 26px 7px; }
  .container{ padding: 0 8px; }
}
@media (max-width: 580px) {
  .testimonial-card { padding: 16px 10px; font-size: 0.97rem; }
  .feature-grid > div,
  .tour-list > div { max-width: 100%; min-width: 90%; }
  .gallery-experiences {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 950px) {
  .feature-grid,
  .tour-list,
  .gallery-experiences {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}


/*--- SERVICE/CARD/FEATURE LISTS ---*/
.services ul,
.features ul {
  list-style: disc inside;
  margin-left: 1.45em;
  margin-bottom: 1em;
}
.services ul li,
.features ul li {
  margin-bottom: 10px;
  font-size: 1.09em;
  line-height: 1.45;
}
.services ul li strong {
  color: var(--primary);
}

.services ul,
.services .tour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.services ul li,
.tour-list > div {
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 18px 18px 15px;
  font-size: 1.03em;
  margin-bottom: 0;
}
.tour-list > div {
  background: var(--pastel-green);
}

/*--- NEUTRAL PLACEHOLDER ---*/
.neutral-placeholder {
  padding: 10px 18px;
  background: #e6eaf0;
  color: #7c8cbf;
  border-radius: 14px;
  margin-top: 8px;
  font-size: 0.99em;
}

/*--- CONTENT SECTION (FOR LEGAL) ---*/
.content-section {
  padding: 42px 0 42px 0;
  background: var(--accent);
  border-radius: 22px;
  margin-bottom: 60px;
  box-shadow: var(--card-shadow);
}
.content-section h1,
.content-section h2 { margin-bottom: 18px; }
.content-section ul { margin-bottom: 18px; }

/* --- SPACING CONSISTENCY --- */
.section, .testimonials, .features, .services, .about-preview, .about, .contact-details {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

/* --- VISUAL EFFECTS & MICROINTERACTIONS --- */
.card, .feature-grid > div, .tour-list > div, .testimonial-card, .gallery-experiences .text-section {
  transition: box-shadow 0.18s, transform 0.17s, background 0.18s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.97) translateY(2px);
  box-shadow: 0 2px 14px #bfc3cf50;
}

/* --- FORM FIELDS (If Any) --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #c9d2e5;
  border-radius: 12px;
  padding: 9px 13px;
  background: #F7F8FA;
  color: #203872;
  margin-bottom: 16px;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  outline: none;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: none; }
}
 .section, .hero, .call-to-action, .card, .feature-grid > div, .testimonial-card {
   animation: fadeInUp 0.75s cubic-bezier(.6,.13,.25,.90);
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255,255,255, 0.98);
  box-shadow: 0 -2px 16px #20387217;
  padding: 22px 20px 22px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  z-index: 19999;
  font-size: 1.01rem;
  border-top: 1.5px solid #f3e6b3;
  transition: transform 0.32s cubic-bezier(.87,.17,.28,1), opacity 0.22s;
}
.cookie-banner.closed {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner p {
  margin: 0;
  flex: 2 1 auto;
  color: #203872;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 18px;
  background: var(--secondary);
  color: #203872;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.15s, color 0.18s;
  box-shadow: 0 2px 7px #FDB44718;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffd78e;
  color: #1b295e;
}
.cookie-btn.cookie-settings-btn {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-btn.cookie-settings-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32, 56, 114, 0.18);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.closed {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #fff;
  padding: 34px 24px 22px 24px;
  border-radius: 22px;
  min-width: 312px;
  max-width: 90vw;
  box-shadow: 0 6px 32px #20387229;
  position: relative;
  z-index: 20001;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.5s cubic-bezier(.77,.55,.32,1);
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1.03rem;
  color: #203872;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--secondary);
  width: 1.13em; height: 1.13em;
}
.cookie-modal .modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #FDB447;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #203872;
}

/* ------------ RESPONSIVE tweaks ------------- */
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 7px 18px 8px;
    font-size: 0.97em;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 19px 8px 16px 8px;
  }
}


/* --- MISC --- */
::-webkit-scrollbar { width: 10px; background: #F7F8FA; }
::-webkit-scrollbar-thumb { background: #E3ECFB; border-radius: 16px; }
::-webkit-scrollbar-thumb:hover { background: #c9d2e5; }

/* Typography fallback */
@font-face {
  font-family: 'Montserrat'; font-style: normal; font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'),
    url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap') format('woff2');
}
@font-face {
  font-family: 'Open Sans'; font-style: normal; font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular'),
    url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap') format('woff2');
}

/* === END CSS === */
