/* CSS Reset and Normalize (simplified) */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F6F6;
  color: #203226;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #145A32;
  text-decoration: none;
  transition: color 0.15s;
}
a:focus {
  outline: 2px dashed #FFB84D;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.2em;
}
strong {
  font-weight: 700;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #145A32;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #145A32;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2A7F49;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, ul {
  font-size: 1rem;
  color: #2E382D;
}
.text-section p {
  font-size: 1.125rem;
  color: #32573F;
}

/* Layout Containers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(255,184,77,.08), 0 1px 3px rgba(0,0,0,0.03);
  padding: 40px 24px;
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section:last-child {
  margin-bottom: 0;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(255,184,77,0.08), 0 1px 4px rgba(0,0,0,0.025);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(255,184,77,0.12), 0 4px 16px rgba(20,90,50,0.05);
  transform: translateY(-2px) scale(1.015);
}
.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;
}

/* Feature and Destination Grids */
.feature-grid, .destination-highlights, .experience-teasers, .experience-categories, .team-bios, .destination-list, .package-list, .list-of-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: stretch;
}
.feature-grid > div, .destination-highlights > div, .experience-teasers > div, .experience-categories > div, .team-bios > div, .destination-list > div, .package-list > div, .list-of-inclusions > div {
  background: #FFF9F2;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(255,184,77,0.10), 0 1px 2px rgba(20,90,50,0.03);
  flex: 1 1 270px;
  padding: 24px 18px;
  margin-bottom: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .18s;
}
.feature-grid > div:hover, .destination-highlights > div:hover, .experience-teasers > div:hover, .destination-list > div:hover, .package-list > div:hover {
  box-shadow: 0 4px 20px rgba(255,184,77,0.13), 0 2px 8px rgba(20,90,50,0.045);
  transform: translateY(-2px) scale(1.012);
}
.icon-set,
.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.icon-set img, .value-icons img {
  width: 42px;
  height: 42px;
}

/* Lists */
.values-list li,
.tips-list li,
.benefit-highlights ul li,
.faq-list > div,
.faq-accordion > div,
.local-insight-tips ul li {
  margin-bottom: 16px;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.values-list img {
  width: 32px;
  margin-right: 10px;
  display: inline-block;
}

/* Testimonials & FAQ */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF9F2;
  color: #203226;
  border-radius: 18px;
  padding: 28px 22px 24px 22px;
  box-shadow: 0 4px 20px rgba(20,90,50,0.05), 0 1px 3px rgba(255,184,77,0.09);
  min-width: 220px;
  flex: 1 1 260px;
  font-size: 1.1rem;
  margin-bottom: 0;
  position: relative;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #145A32;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 6px;
}
.faq-list > div, .faq-accordion > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(255,184,77,0.07);
  margin-bottom: 14px;
  padding: 18px 16px;
  font-size: 1rem;
  transition: box-shadow .2s;
}
.faq-list > div:hover, .faq-accordion > div:hover {
  box-shadow: 0 2px 16px rgba(255,184,77,0.11);
}

/* CTA Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  background: #FFB84D;
  color: #145A32;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  border: none;
  border-radius: 22px;
  padding: 12px 34px;
  margin-top: 16px;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  box-shadow: 0 2px 6px rgba(255,184,77,0.10);
}
.btn-primary:hover,
.btn-primary:focus {
  background: #145A32;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,184,77,0.20), 0 2px 6px rgba(20,90,50,0.08);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: #fff;
  color: #145A32;
  border: 2px solid #FFB84D;
  margin-left: 10px;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #FFB84D;
  color: #145A32;
}

/* Header & Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(20,90,50,0.03);
  padding: 0;
  position: relative;
  z-index: 30;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 42px;
  height: 42px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #145A32;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 16px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFF9F2;
  color: #FFB84D;
}

/* Quick Links */
.quick-links, .icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.quick-links a, .icon-list a {
  color: #145A32;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 14px;
  background: #FFF9F2;
  transition: background .14s, color .13s;
}
.quick-links a:hover, .icon-list a:hover {
  background: #FFB84D;
  color: #145A32;
}

/* Footer */
footer {
  background: #145A32;
  color: #fff;
  padding: 44px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
  justify-content: center;
}
.footer-nav a {
  color: #FFB84D;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .15s, text-decoration .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #fff;
}
footer .contact-details {
  color: #FFD;
  text-align: center;
  font-size: 1rem;
  margin-top: 12px;
  opacity: 0.98;
}
footer .contact-details p {
  color: #fff;
  line-height: 1.5;
}

/* Map & Contact Details */
.contact-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.32;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.map-embed {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background: #fff;
  padding: 15px 16px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(255,184,77,0.08);
  margin-top: 16px;
}

/* Cards spacing (per requirement) */
.card {
  margin-bottom: 20px;
}
.content-wrapper:not(:last-child) {
  margin-bottom: 40px;
}
/* Spacing for all cards and sections */
.feature-grid > div,
.destination-highlights > div,
.experience-teasers > div,
.destination-list > div,
.team-bios > div,
.package-list > div,
.list-of-inclusions > div,
.testimonial-card {
  margin-bottom: 0;
}
.content-grid > * {
  margin-bottom: 0;
}

/* Hamburger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #FFB84D;
  color: #145A32;
  border: none;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 7px 14px;
  margin-left: auto;
  cursor: pointer;
  z-index: 51;
  transition: background 0.18s, transform 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #145A32;
  color: #FFB84D;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.68, 0.01, 0.22, 1);
  box-shadow: 0 8px 28px rgba(20,90,50,0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #145A32;
  border: none;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  top: 21px;
  right: 22px;
  z-index: 102;
  padding: 7px 10px;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF9F2;
  color: #FFB84D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 84px 0 0 0;
  align-items: flex-start;
  padding-left: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #145A32;
  font-size: 1.28rem;
  font-weight: 600;
  background: none;
  padding: 8px 11px;
  border-radius: 14px;
  transition: background .16s, color .16s;
  min-width: 180px;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFF9F2;
  color: #FFB84D;
}

/* Cookie Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  z-index: 3002;
  background: #fffdfa;
  border-top: 2px solid #FFB84D;
  box-shadow: 0 -2px 16px rgba(255,184,77,0.10);
  padding: 28px 21px 28px 21px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  color: #145A32;
  animation: slideup-cookie 0.7s cubic-bezier(.28,.97,.66,.97);
}
@keyframes slideup-cookie {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.cookie-consent-banner .btn-primary,
.cookie-consent-banner .btn-secondary {
  margin-top: 0;
  font-size: 1rem;
  border-radius: 16px;
  padding: 8px 20px;
}
.cookie-banner-link {
  color: #14794D;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(44,36,22,0.16);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadein-modal 0.2s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 24px rgba(20,90,50,0.13);
  padding: 36px 26px 32px 26px;
  width: 96%;
  max-width: 480px;
  margin-bottom: 24px;
  position: relative;
  animation: slideup-modal 0.32s cubic-bezier(.28,.97,.66,.97);
}
@keyframes slideup-modal {
  from { transform: translateY(180px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFF9F2;
  border-radius: 12px;
  padding: 13px 17px;
  font-size: 1rem;
  color: #145A32;
  box-shadow: 0px 1px 6px rgba(255,184,77,0.09);
}
.cookie-category.disabled {
  opacity: 0.7;
}
.cookie-category label {
  font-weight: 500;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  background-color: #e6e6e6;
  width: 38px;
  height: 22px;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.2s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #FFB84D;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle:checked:before {
  left: 19px;
  background: #fffdfa;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  margin-top: 0;
  margin-right: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2.1rem;
  background: transparent;
  color: #145A32;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFF9F2;
  color: #FFB84D;
}

/* Utility, Spacing, Alignment */
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* Responsive - Mobile First */
@media (max-width: 991px) {
  .container {
    padding: 0 11px;
  }
  .main-nav {
    gap: 11px;
  }
  .feature-grid, .destination-highlights, .experience-teasers, .experience-categories, .team-bios, .destination-list, .package-list, .list-of-inclusions, .testimonials {
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .feature-grid > div, .destination-highlights > div, .experience-teasers > div, .destination-list > div, .package-list > div, .list-of-inclusions > div, .testimonial-card {
    min-width: 150px;
    padding: 17px 10px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .btn-primary[href="contact.html"] {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 19px;
    top: 19px;
  }
  section, .section {
    padding: 26px 7px;
  }
  .content-wrapper {
    padding: 25px 10px;
  }
  .feature-grid, .destination-highlights, .experience-teasers, .experience-categories, .team-bios, .destination-list, .package-list, .list-of-inclusions, .testimonials {
    flex-direction: column;
    gap: 16px;
  }
  .quick-links, .icon-list, .icon-set, .value-icons, .footer-nav {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .map-embed {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .footer-nav a,
  .main-nav a,
  h1, h2 {
    font-size: 1.1rem;
  }
  .content-wrapper {
    padding: 12px 2px;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.96rem;
    padding: 9px 16px;
  }
  .cookie-modal { padding: 18px 6px 18px 6px; }
}

/* Accessibility & Focus States */
:focus {
  outline: 2px solid #FFB84D;
  outline-offset: 2px;
}


/* Hide visually (for a11y only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
