/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F6F6F2;
  color: #234F4B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .21s cubic-bezier(.14, .38, .61, .95);
}
a:focus {
  outline: 2px solid #EDB982;
  outline-offset: 2px;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234F4B;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {font-size: 2.5rem; margin-bottom: 16px;}
h2 {font-size: 2rem; margin-bottom: 12px;}
h3 {font-size: 1.5rem; margin-bottom: 8px;}
h4 {font-size: 1.25rem;}

.subheadline {
  font-size: 1.125rem;
  color: #346b68;
  margin-bottom: 24px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 16px 0 rgba(50,70,50,0.07), 0 1.5px 6px 0 rgba(170,145,110,0.06);
}

/* LAYOUTS: FLEX SYSTEM */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-grid, .testimonial-list, .brand-values ul, .unique-points ul,
.waterfall-highlights ul, .mountain-spots ul, .coastal-destinations ul,
.unique-landscapes ul, .highlighted-reserves ul, .visitor-guidelines ul,
.seasons-and-colors ul, .directions ul, .user-rights ul, .data-collected ul,
.user-obligations ul, .limitations ul, .types-of-cookies ul, .privacy-statement ul, .cookie-management ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  list-style: none;
}

.feature-grid > li {
  flex: 1 1 300px;
  background: #fffbe9;
  border-radius: 18px;
  box-shadow: 0 3px 10px 0 rgba(235,199,152,0.10), 0 1.5px 6px 0 rgba(50,120,100,0.03);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.18s, box-shadow .21s;
  margin-bottom: 20px;
  min-width: 240px;
}
.feature-grid > li:hover,
.feature-grid > li:focus-within {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 6px 24px 0 rgba(235,199,152,0.16), 0 3px 12px 0 rgba(50,120,100,0.09);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
  list-style: none;
}
.quick-facts li {
  background: #FFF6DF;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: bold;
  color: #836018;
  font-size: 1rem;
}

.why-choose-us ul, .unique-points ul, .waterfall-highlights ul,
.mountain-spots ul,.coastal-destinations ul,.unique-landscapes ul,
.highlighted-reserves ul, .visitor-guidelines ul, .seasons-and-colors ul,
.directions ul {
  flex-direction: column;
  gap: 10px;
  list-style: disc inside;
  color: #234F4B;
}
.why-choose-us ul li, .unique-points ul li, .waterfall-highlights ul li, .mountain-spots ul li, .coastal-destinations ul li, .unique-landscapes ul li, .highlighted-reserves ul li, .visitor-guidelines ul li, .seasons-and-colors ul li, .directions ul li {
  background: #FFEEDD;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.98rem;
  color: #234F4B;
}

.mission-vision, .brand-promise, .ecological-importance, .environmental-significance, .marine-biodiversity, .visitor-tips, .landscape-overview, .seasons-and-colors, .conservation-efforts, .directions, .privacy-statement, .gdpr-introduction, .terms-overview {
  background: #FFF6E6;
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 20px;
  color: #234F4B;
}

.location-map, .location-map-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 12px 0;
}
.location-map-mini {
  background: #f9ede2;
  border-radius: 14px;
  padding: 12px;
  font-size: .97rem;
}

/* CARD & CARD CONTAINER */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe9;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(215,179,142,0.11), 0 1px 3px 0 rgba(50,120,100,0.04);
  padding: 24px 20px;
  transition: box-shadow .18s, transform .14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 30px 0 rgba(190,150,90,0.19), 0 3px 16px 0 rgba(50,70,50,0.08);
  transform: translateY(-4px);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF6DF;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(215,179,142,0.10);
  margin-bottom: 20px;
  flex: 1 0 300px;
  color: #234F4B;
  font-size: 1.06rem;
  min-width: 260px;
}
.testimonial-card strong {
  color: #2f654f;
}
.star-rating {
  color: #E5B641;
  font-size: 1.2rem;
  letter-spacing: .1em;
  user-select: none;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

/* BUTTONS & CTAs */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 22px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(145,70,30,0.09);
  cursor: pointer;
  transition: background .17s, color .14s, box-shadow .16s, transform .12s;
  margin-top: 8px;
  margin-bottom: 8px;
}
.cta.primary {
  background: #234F4B;
  color: #fff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #2D7469;
  color: #fffbe9;
  box-shadow: 0 8px 18px 0 rgba(35,79,75,0.16);
  transform: translateY(-2px);
}
.cta.secondary {
  background: #fffbe9;
  color: #234F4B;
  border: 2px solid #E5B641;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #fbe0b3;
  color: #234F4B;
}
/* Links as buttons */
a.cta {
  text-decoration: none;
}
a.cta:focus {
  outline: 2px solid #EDB982;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 1.5px 12px 0 rgba(175,170,135,0.05);
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #234F4B;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 14px;
  transition: background .13s, color .13s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #fbe0b3;
  color: #185048;
}
.main-nav img {
  height: 46px;
}

/* Footer */
footer {
  background: #ffe5c5;
  border-top: 3px solid #234F4B;
  padding: 35px 0 0 0;
  margin-top: 56px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #234F4B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .12s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fbe0b3;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  color: #6a5332;
  margin-bottom: 20px;
}
.footer-branding img {
  height: 38px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(122deg, #FFF8EC 75%, #FFEED4 100%);
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 36px;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 2px 24px 0 rgba(235,199,152,0.14), 0 1.5px 6px 0 rgba(50,120,100,0.03);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}

/* CONTACT DETAILS, INFO, MAP MINI */
.contact-details, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details {
  align-items: flex-start;
  gap: 24px;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 0;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .cta, .card, .feature-grid > li, .main-nav ul li a, .footer-nav a, .mobile-menu, .cookie-consent-banner, .cookie-modal {
    transition: all 0.19s cubic-bezier(.36,.33,.38,.99);
  }
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #234F4B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 102;
  box-shadow: 0 2px 12px 0 rgba(35,79,75,0.14);
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #EDB982;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F6F6F6;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.56,.25,.44,1);
  box-shadow: 0 4px 30px 0 rgba(59,44,21,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #185048;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 50%;
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe5c5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  padding: 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  color: #234F4B;
  padding: 14px 0;
  border-bottom: 1px solid #ead2b5;
  transition: background .12s, color .12s;
}
.mobile-nav a:focus {
  background: #fbe0b3;
  color: #185048;
}
.mobile-nav a:hover {
  background: #ffe5c5;
  color: #185048;
}

/* Responsive: Hide desktop nav, show burger */
@media(max-width: 992px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media(min-width: 993px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}

/* MAIN - FLEX & SPACING ADJUSTMENTS ON SMALL SCREENS */
@media(max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, .hero {
    padding: 24px 6px;
    border-radius: 18px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* SUBTLE SCROLLBAR FOR DESKTOP */
@media(min-width: 993px) {
  ::-webkit-scrollbar {
    width: 8px;
    background: #FFEEDD;
  }
  ::-webkit-scrollbar-thumb {
    background: #EDB982;
    border-radius: 5px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #E5B641;
  }
}

/* UTILITY CLASSES */
.hide {
  display: none!important;
}
.text-center {
  text-align: center;
}
.mt-2 {margin-top: 16px;}
.mb-2 {margin-bottom: 16px;}
.mt-3 {margin-top: 24px;}
.mb-3 {margin-bottom: 24px;}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #234F4B;
  color: #fff;
  z-index: 180;
  padding: 26px 10vw 26px 10vw;
  box-shadow: 0px -4px 32px rgba(100,75,44,.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  animation: fadeInUp 0.42s cubic-bezier(.16,.78,.63,.93);
}
@keyframes fadeInUp {
  from {transform: translateY(64px); opacity:0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  padding: 10px 22px;
  margin: 0 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  box-shadow: 0 1px 5px 0 rgba(250,210,122,0.08);
  cursor: pointer;
  font-weight: 600;
  transition: background .13s, color .13s;
}
.cookie-consent-banner .accept {
  background: #E5B641;
  color: #234F4B;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #FAD580;
}
.cookie-consent-banner .reject {
  background: #fffbe9;
  color: #836018;
  border: 2px solid #f5d8a6;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #fbe0b3;
}
.cookie-consent-banner .settings {
  background: #5297AA;
  color: #fff;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #428292;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(47,37,16,0.36);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalIn .3s cubic-bezier(.12,.68,.46,1.03);
}
@keyframes fadeModalIn {
  from { opacity:.1; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe9;
  color: #234F4B;
  border-radius: 22px;
  max-width: 410px;
  width: 96vw;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 6px 28px 0 rgba(200,155,35,0.19), 0 2px 8px 0 rgba(60,149,140,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #185048;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type=checkbox][disabled] {
  accent-color: #5297AA;
  cursor: not-allowed;
}
.cookie-category label {
  font-size: .99rem;
  color: #234F4B;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: transparent;
  color: #234F4B;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 2px 7px;
}
.cookie-modal-close:hover {
  background: #ffe5c5;
}
/* Cookie switch styling */
input[type='checkbox'] {
  accent-color: #E5B641;
  width: 18px;
  height: 18px;
}

/* RESPONSIVE: COOKIE */
@media(max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 10px;
    font-size: 0.99rem;
    border-radius: 16px 16px 0 0;
  }
  .cookie-modal-content {
    padding: 22px 10px 22px 10px;
    gap: 14px;
  }
}

/* Success / Thank You Hero Adjustment */
.next-steps h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.next-steps ul {
  margin-top: 4px;
  margin-bottom: 10px;
  gap: 8px;
  list-style: disc inside;
}

/* ---- END OF STYLE.CSS ---- */
