/* =========================================================
   CSS RESET & BASE 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,
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #F2F8F1;
  color: #1b2620;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #264D32;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #6EC184;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* =========================================================
   BRAND TYPOGRAPHY
   ========================================================= */
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.03em; }
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}
p, .subheadline, .brand_story, .mission_statement, .vision_and_values, .confirmation_message {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #264D32;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.1875rem;
  font-weight: 500;
  color: #355C3C;
  margin-bottom: 28px;
}
strong {
  font-weight: 700;
}

/* =========================================================
   GEOMETRIC STRUCTURED LAYOUTS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Geometric grid containers */
.card-container, .content-grid, .feature_grid, .service_list, .destination_list, .experience_categories, .tips_list, .article_list, .team-profiles, .faq_list, .guide_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card, .testimonial-card, .profile, .faq-item {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(38, 77, 50, 0.08);
  border: 2px solid #e7eee5;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover, .testimonial-card:hover, .profile:hover, .faq-item:hover {
  box-shadow: 0 6px 20px rgba(38, 77, 50, 0.14);
  border-color: #A3D8BB;
}

/***** Testimonial Cards and Cards specific *****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #F2F8F1;
  border-left: 5px solid #6EC184;
  border-radius: 12px 28px 12px 12px;
  min-width: 240px;
  max-width: 420px;
}
.testimonial-meta {
  color: #264D32;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

/***** Profile Cards (Team Section) *****/
.profile {
  background: #fff;
  padding: 26px 24px 24px 24px;
  border-radius: 12px 32px 12px 12px;
  box-shadow: 0 4px 20px rgba(38, 77, 50, 0.09);
  border: 2px solid #e7eee5;
  min-width: 240px;
  max-width: 380px;
  flex: 1 1 280px;
  transition: transform 0.2s;
}
.profile:hover {
  transform: translateY(-4px) scale(1.025);
}

/* Feature List Cards (for home/features) */
.feature_grid li, .service_list li, .destination_list li, .experience_categories li, .tips_list li, .article_list li, .values_list li {
  background: #fff;
  border-radius: 9px 27px 9px 9px;
  box-shadow: 0 4px 13px rgba(38,77,50,0.08);
  border: 2px solid #e7eee5;
  padding: 26px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.feature_grid li img {
  width: 44px;
  height: 44px;
}
.feature_grid li:hover, .service_list li:hover, .destination_list li:hover, .experience_categories li:hover, .tips_list li:hover {
  border-color: #6EC184;
  box-shadow: 0 10px 24px rgba(38,77,50,0.10);
}

.values_list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0 18px 0;
}
.values_list li {
  background: #F2F8F1;
  color: #264D32;
  border-left: 4px solid #6EC184;
  border-radius: 0 16px 16px 0;
  font-weight: 600;
  padding: 12px 28px;
  font-size: 1rem;
  min-width: 210px;
}

/***** FAQ, Guides List, Article List *****/
.faq_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 10px 26px;
  box-shadow: 0 2px 8px rgba(38,77,50,0.05);
  border-left: 5px solid #6EC184;
  padding: 18px 24px 18px 22px;
  min-width: 220px;
  flex: 1 1 280px;
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
}
.guide_link_list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px 24px 10px 10px;
  box-shadow: 0 2px 10px rgba(38,77,50,0.06);
  border: 2px solid #e7eee5;
  padding: 18px 22px;
  margin-bottom: 20px;
  gap: 10px;
  transition: border-color 0.18s;
}
.guide_link_list li:hover {
  border-color: #6EC184;
}
.quick_facts {
  margin-top: 6px;
  color: #365B42;
  font-size: 0.98rem;
  font-weight: 500;
}
.article_list li {
  /* already styled above */
}

/***** Card-Container & Alignment Helpers *****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/************* HERO & CTA SECTIONS ****************/
.hero {
  background: #264D32;
  color: #fff;
  padding: 72px 0 52px 0;
  border-radius: 0 0 56px 56px;
  box-shadow: 0 6px 50px rgba(38, 77, 50, 0.13);
  margin-bottom: 48px;
  position: relative;
}
.hero h1,
.hero .subheadline {
  color: #fff;
}
.hero .btn-primary {
  margin-top: 32px;
}
.cta {
  background: #6EC184;
  color: #264D32;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -6px 40px rgba(38, 77, 50, 0.08);
  padding: 48px 0 56px 0;
  margin-bottom: 0;
}
.cta h2,
.cta p {
  color: #264D32;
}

/*************** NAVIGATION & HEADER ***************/
header {
  background: #fff;
  box-shadow: 0 5px 24px rgba(38,77,50,0.08);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 22px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #264D32;
  font-weight: 500;
  border-bottom: 2.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.14s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  border-color: #6EC184;
  color: #6EC184;
}
.btn-primary {
  background: #264D32;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 32px / 65px;
  padding: 14px 32px 13px 32px;
  box-shadow: 0 4px 13px rgba(38,77,50,0.08);
  letter-spacing: 0.06em;
  border: 2px solid #264D32;
  display: inline-block;
  transition: background 0.18s, color 0.16s, border 0.18s, transform 0.18s;
  margin-left: 18px;
  margin-right: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #6EC184;
  color: #264D32;
  border-color: #6EC184;
  transform: translateY(-3px) scale(1.04);
}

/*********** FOOTER ************/
footer {
  background: #264D32;
  color: #fff;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -8px 32px rgba(38,77,50,0.10);
  margin-top: 60px;
  padding: 40px 0 24px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav, .footer-contact, .footer-social, .footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #AEF7C8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  margin-right: 8px;
  vertical-align: middle;
}
.footer-social {
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.footer-social a img {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #6EC184;
  padding: 2px;
  transition: box-shadow 0.18s;
}
.footer-social a:hover img {
  box-shadow: 0 0 10px #6EC18433;
}
.footer-newsletter {
  max-width: 330px;
  padding-top: 10px;
}

/************* MOBILE MENU ************/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6EC184;
  color: #264D32;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(38, 77, 50, 0.09);
  border: none;
  transition: background 0.18s, color 0.18s;
  z-index: 2002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #264D32;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 40px rgba(38,77,50,0.12);
  transform: translateX(-105%);
  opacity: 0;
  z-index: 32767;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.77,.2,.13,1.01), opacity 0.32s;
  will-change: transform, opacity;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #6EC184;
  color: #264D32;
  font-size: 2.2rem;
  width: 49px;
  height: 49px;
  margin: 18px 18px 10px 0;
  border-radius: 13px;
  transition: background 0.16s, color 0.14s;
  z-index: 33000;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #264D32;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 18px 36px 24px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #264D32;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border 0.16s;
  padding-bottom: 4px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #6EC184;
  border-color: #6EC184;
}

/* Hide nav on mobile, show burger */
.main-nav, .btn-primary {
  display: none;
}
@media (min-width: 1000px) {
  .main-nav {
    display: flex;
  }
  .btn-primary {
    display: inline-block;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/************* COOKIE CONSENT BANNER *************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #264D32;
  border-top: 3px solid #6EC184;
  box-shadow: 0 -4px 22px rgba(38, 77, 50, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 26px 18px 21px 18px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: #264D32;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #264D32;
  color: #fff;
  border: 2px solid #264D32;
  border-radius: 25px;
  padding: 9px 24px 8px 24px;
  font-weight: 700;
  margin-bottom: 0;
  transition: background 0.14s, color 0.14s, border 0.14s, box-shadow 0.14s;
}
.cookie-btn.settings {
  background: #6EC184;
  color: #264D32;
  border-color: #6EC184;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #264D32;
  border-color: #6EC184;
  box-shadow: 0 1px 6px #6EC18433;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,77,50,0.19);
  z-index: 40000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px 44px 17px 17px;
  padding: 34px 28px 27px 28px;
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 6px 40px rgba(38, 77, 50, 0.13);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}
.cookie-modal h2 {
  color: #264D32;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cookie-category {
  background: #F7FDF9;
  border-left: 5px solid #6EC184;
  border-radius: 10px 28px 10px 10px;
  padding: 17px 18px 12px 18px;
  margin-bottom: 10px;
  color: #264D32;
  font-size: 1rem;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 34px;
  height: 19px;
  border-radius: 9px;
  background: #c6ffe1;
  position: relative;
  outline: 0;
  margin-right: 9px;
  transition: background 0.18s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: #6EC184;
}
.cookie-toggle input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.2s;
}
.cookie-toggle input[type="checkbox"]:checked::after {
  left: 16px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #6EC184;
  color: #264D32;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, color 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #264D32;
  color: #fff;
}

/************** UTILITIES & COMMON ************/
.eco_commitments, .destination_highlights, .how_to_guides, .experience_details, .privacy_policy_text, .rgpd_text, .cookies_policy_text, .terms_of_service_text {
  background: #F2F8F1;
  border-left: 6px solid #6EC184;
  border-radius: 0 20px 20px 0;
  color: #264D32;
  padding: 17px 23px 16px 25px;
  margin-top: 13px;
  margin-bottom: 13px;
  font-size: 1rem;
  font-weight: 500;
}

/************ SPECIAL ALIGNMENTS & SPACING **************/
.section, .hero, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********** RESPONSIVE ADJUSTMENTS ***********/
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .footer-social a img {
    width: 23px; height: 23px;
  }
}
@media (max-width: 768px) {
  .hero, .cta, .section {
    padding: 36px 6px;
    border-radius: 0 0 32px 32px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card-container, .content-grid, .feature_grid, .service_list, .destination_list, .experience_categories, .tips_list, .article_list, .team-profiles, .faq_list, .guide_link_list {
    flex-direction: column;
    gap: 18px;
  }
  .profile, .testimonial-card, .feature_grid li, .service_list li, .destination_list li, .experience_categories li, .tips_list li, .article_list li, .faq-item, .guide_link_list li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 18px auto;
  }
  .footer-newsletter,
  .footer-contact {
    max-width: 100%;
  }
  .footer-social {
    gap: 8px;
  }
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 0.99rem; }
  .hero, .cta, .section {
    padding: 26px 2vw;
    border-radius: 0 0 13px 13px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .footer-newsletter,
  .footer-contact {
    font-size: 0.97rem;
  }
}

/************** MICRO-ANIMATION / HOVER EFFECTS **************/
.card, .testimonial-card, .profile, .feature_grid li, .service_list li, .destination_list li, .experience_categories li, .tips_list li, .article_list li {
  transition: box-shadow 0.2s, border 0.15s, transform 0.18s;
}
.card:hover, .testimonial-card:hover, .profile:hover, .feature_grid li:hover, .service_list li:hover, .destination_list li:hover, .experience_categories li:hover, .tips_list li:hover, .article_list li:hover {
  transform: translateY(-4px) scale(1.02);
}
.btn-primary, .cookie-btn {
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.16s;
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/************* ENSURE NO OVERLAP & SPACING **************/
div, section, ul, li {
  box-sizing: border-box;
}

/* Utility for clear visual separation */
.spacer { height: 28px; }

/* Hide content overflow on small cards */
.card, .testimonial-card, .profile, .faq-item {
  overflow: hidden;
}

/************* OTHER KEY STYLING *************/
/* Confirmation page tweaks */
.confirmation_message {
  font-size: 1.17rem;
  color: #1b2620;
  margin-bottom: 24px;
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
}

/* Remove mobile-menu above 1000px */
@media (min-width: 1000px) {
  .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hide menu by default on mobile */
.mobile-menu {
  display: flex;
}

/************* END GEOMETRIC STRUCTURED CSS *************/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');