/* --- CSS RESET AND NORMALIZATION --- */
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,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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #FDF6EA;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222831;
  background: #FDF6EA;
  line-height: 1.65;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: #205472;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.52,.01,.47,1);
}
a:hover, a:focus {
  color: #1bb6cf;
}
button, input, textarea {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
::-webkit-input-placeholder { color: #688c99; }
::-moz-placeholder { color: #688c99; }
:-ms-input-placeholder { color: #688c99; }
::placeholder { color: #688c99; }

/* --- BRAND COLORS & FONT FACES --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');
:root {
  --primary: #205472;
  --secondary: #82B29A;
  --accent: #FDF6EA;
  --electric-blue: #1bb6cf;
  --electric-green: #5EE978;
  --electric-pink: #FF007A;
  --shadow-main: 0 6px 32px 0 rgba(32, 84, 114, 0.12);
  --radius-main: 18px;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.12;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.25;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.subheadline {
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 28px;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #2a2f3b;
}
strong {
  color: var(--primary);
  font-weight: 700;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 16px;
  margin-bottom: 16px;
}
.text-section li {
  margin-bottom: 12px;
  color: #23425a;
  font-size: 1rem;
}

/* --- GENERAL CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  background: #fff;
  padding: 30px 26px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0 0 12px 0;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 5px 24px 0 rgba(32,84,114,0.03);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
.logo img {
  max-height: 54px;
  padding: 12px 0;
}.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: #fff;
}
.btn-primary {
  background: linear-gradient(94deg, #1bb6cf 55%, #5EE978 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 28px 0 rgba(27,182,207,0.14);
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  margin-left: 16px;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(32,84,114,0.11);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(92deg, #FF007A 65%, #1bb6cf 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 36px 0 rgba(255,0,122, 0.14);
}

/* --- BURGER (MOBILE) MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--primary);
  background: transparent;
  border-radius: 8px;
  padding: 4px 12px;
  margin-left: 10px;
  z-index: 1201;
  transition: background .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--electric-blue);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #205472cc;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px 32px 20px 32px;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.48s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: var(--electric-pink);
  border-radius: 50%;
  border: none;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  margin-bottom: 18px;
  transition: background 0.18s;
  z-index: 1202;
}
.mobile-menu-close:hover {
  background: var(--electric-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: transparent;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--electric-green);
  color: #233651;
}

@media (max-width: 1100px) {
  .container {
    flex-direction: column;
    align-items: stretch;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .container, header .container {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .mobile-nav {
    gap: 20px;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(101deg, var(--electric-blue) 11%, #fff 104%);
  border-radius: 0 0 50px 50px;
  min-height: 350px;
  display: flex;
  align-items: center;
  padding: 48px 0 36px 0;
  box-shadow: 0 10px 48px 0 rgba(32,84,114,0.10);
  margin-bottom: 40px;
}
.hero .container {
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}
.hero h1, .hero .h1 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(32,84,114,0.23);
}
.hero .subheadline {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 580px) {
  .hero h1, .hero .h1 {
    font-size: 1.35rem;
  }
  .hero {
    min-height: 180px;
    padding: 28px 0 16px 0;
    border-radius: 0 0 30px 30px;
  }
}

/* --- FEATURES SECTION --- */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper, .features .text-section {
  gap: 16px;
  margin-bottom: 0;
}
.features ul,
.services ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 0;
  list-style: none;
}
.features ul li,
.services ul li {
  background: #fff;
  color: var(--primary);
  border-left: 6px solid var(--electric-pink);
  border-radius: 12px;
  padding: 18px 24px 18px 20px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 2px 14px 0 rgba(32,84,114,0.08);
  transition: box-shadow .16s, border-color .16s;
}
.features ul li:hover,
.services ul li:hover {
  border-left-color: var(--electric-green);
  box-shadow: 0 6px 32px 0 rgba(27,182,207,.14);
}

@media (max-width: 580px) {
  .features ul li, .services ul li {
    padding: 12px 12px 12px 12px;
    font-size: 0.98rem;
  }
}

/* --- SERVICES SECTION --- */
.services .content-wrapper, .services ul {
  gap: 24px;
}
.services ul > li {
  background: #22283108;
  border-radius: 18px;
  box-shadow: 0 3px 13px 0 rgba(32,84,114,0.05);
  padding: 32px 26px 18px 26px;
  border-left: 8px solid var(--electric-blue);
  transition: box-shadow 0.19s, border-color 0.16s;
}
.services ul > li:hover {
  border-left-color: var(--electric-pink);
  box-shadow: 0 12px 36px 0 rgba(255,0,122,0.12);
}
.services h3, .services h2 {
  margin-bottom: 8px;
  color: var(--primary);
}
.services .price {
  color: var(--electric-pink);
  font-size: 1.175rem;
  margin-bottom: 10px;
}

/* --- CTA SECTIONS --- */
.cta {
  background: linear-gradient(93deg, #FF007A 0%, #1bb6cf 90%);
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 36px 0 rgba(27,182,207,0.15);
  margin-bottom: 60px;
  padding: 36px 20px 36px 20px;
}
.cta h2 {
  color: #fff;
}
.cta .btn-primary {
  background: #fff;
  color: #FF007A;
  box-shadow: 0 2px 8px 0 rgba(32,84,114,0.13);
  transition: background .18s, color .18s;
}
.cta .btn-primary:hover {
  color: #fff;
  background: linear-gradient(94deg, #1bb6cf 55%, #5EE978 100%);
}

/* --- TESTIMONIALS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px 22px 26px;
  min-width: 250px;
  max-width: 410px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 28px 0 rgba(27,182,207,0.16);
  border-left: 6px solid var(--electric-green);
  font-size: 1rem;
  color: #222831;
  transition: box-shadow .15s, border-color .19s;
}
.testimonial-card p {
  color: #23425a;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: var(--primary);
  font-size: .95rem;
}
.testimonial-card:hover {
  box-shadow: 0 12px 48px 0 rgba(94,233,120,0.18);
  border-left-color: var(--electric-pink);
}

/* --- CONTACT SECTION --- */
.contact {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 16px 0 rgba(32,84,114,0.10);
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}
.contact .content-wrapper {
  flex-direction: column;
  gap: 24px;
}
.contact ul {
  padding-left: 18px;
}
.contact p {
  color: #233651;
}
.contact .btn-primary {
  margin-top: 8px;
}

/* --- ADVENTURE HIGHLIGHTS --- */
.adventure-highlights {
  background: var(--secondary);
  color: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  margin: 20px 0 0 0;
  box-shadow: 0 2px 8px 0 rgba(130,178,154,0.16);
}
.adventure-highlights h2 {
  color: #fff;
}
.adventure-highlights ul {
  margin-bottom: 0;
  list-style: disc outside;
  margin-left: 15px;
}
.adventure-highlights li {
  color: #fff;
  margin-bottom: 8px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 10px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 28px 0 rgba(32,84,114,0.09);
}
footer .container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 18px;
  max-width: 1100px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 18px;
  transition: background .14s, color .17s;
  background: transparent;
}
.footer-menu a:hover {
  background: var(--electric-blue);
  color: #fff;
}
.footer-meta {
  color: #fff;
  font-size: .92rem;
  letter-spacing: .2px;
  opacity: 0.75;
}

/* --- COOKIE BANNER + MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #205472;
  color: #fff;
  z-index: 2000;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 1.01rem;
  box-shadow: 0 -7px 28px 0 rgba(32, 84, 114, 0.13);
  gap: 18px;
  animation: fadeInUp 0.6s cubic-bezier(0,.66,.41,.98);
}
@keyframes fadeInUp {
  0% { transform: translateY(60px); opacity: 0;}
  100% { transform: translateY(0); opacity: 1;}
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 7px 24px;
  font-size: 1rem;
  background: var(--electric-green);
  color: #205472;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(94,233,120,0.16);
  transition: background .17s, color .17s;
}
.cookie-btn.settings {
  background: var(--electric-blue);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-btn:hover {
  filter: brightness(1.07);
  background: #fff200;
  color: #222831;
}
.cookie-btn.reject:hover {
  background: #333;
}

.cookie-modal__overlay {
  position: fixed;
  z-index: 2999;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,84,114,0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal {
  background: #fff;
  color: #205472;
  border-radius: 30px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 9px 32px 0 rgba(32,84,114,0.18);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDown .32s cubic-bezier(.6,-0.28,.74,.05);
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
@keyframes slideDown {
  0% { transform: translateY(-50px); opacity: 0;}
  100% { transform: translateY(0); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--electric-blue);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  width: 24px; height: 24px;
}
.cookie-category .cookie-essential {
  color: var(--electric-green);
  font-weight: bold;
  letter-spacing: 1px;
}
.cookie-modal__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 12px;
  justify-content: flex-end;
}

/* --- SPACING RESPONSIVE --- */
@media (max-width: 900px) {
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .container {
    max-width: 97vw;
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 650px) {
  .card, .services ul > li, .testimonial-card, .contact, .adventure-highlights {
    padding-left: 12px;
    padding-right: 12px;
  }
  .features .content-wrapper, .services ul {
    gap: 8px;
  }
  .section, .contact, .cta {
    padding-left: 6px;
    padding-right: 6px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 400px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 4px;
    font-size: 0.97rem;
  }
  .cookie-banner__buttons {
    gap: 7px;
    flex-wrap: wrap;
  }
  .cookie-modal {
    min-width: unset;
    padding: 15px 5px;
  }
}

/* --- TEXT-IMAGE FLEX & RESPONSIVE --- */
@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .testimonials .content-wrapper,
  .features .content-wrapper,
  .services .content-wrapper,
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px;
  }
}
@media (max-width: 580px) {
  h1, .h1 { font-size: 1.42rem; }
  h2, .h2 { font-size: 1.10rem; }
  .btn-primary { padding: 9px 14px; font-size: .98rem; }
}

/* --- MICRO-INTERACTIONS AND TRANSITIONS --- */
.card, .testimonial-card, .features ul li, .services ul > li {
  transition: box-shadow 0.22s cubic-bezier(.52,.01,.47,1), border-color 0.16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 32px 0 rgba(255,0,122,0.16);
  border-left-color: var(--electric-pink);
}
button:active, .btn-primary:active, .cookie-btn:active {
  transform: scale(.98);
}

/* --- OTHER UTILITIES & OVERRIDES --- */
hr {
  margin: 16px 0;
  border: none;
  border-top: 2.5px solid var(--secondary);
}
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 9px;
}

/* --- HIDE NATIVE ARROWS FROM NUMBER INPUTS (no forms in HTML but for completeness) --- */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* --- HIDE OUTLINES, ACCESSIBILITY COLORS ON FOCUS --- */
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid var(--electric-pink);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #ff007a22;
}

/* --- NO GRID, NO ABSOLUTE (EXCEPT DECORATIVE), NO OVERLAP --- */
/* ✅ All structure uses only flex and direct block-based spacing! */
