/* -------- CSS RESET & BASE STYLES -------- */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #F3F7FA 60%, #e9f3ee 100%);
  color: #22303C;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  margin: 0 0 24px 0;
}
a {
  color: #5B8A72;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22303C;
  outline: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------- ROOT CONTAINER & TYPOGRAPHY -------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22303C;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
small {
  font-size: 0.92em;
  color: #5B8A72;
}
p {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #22303C;
}
strong {
  font-weight: 800;
}

/* ----------- SECTIONS & SPACING ----------- */
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  box-shadow: 0 4px 20px rgba(91,138,114,.07);
  background: #fff;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-grid,
.trip-list,
.guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.features-grid > div,
.trip-list > div,
.guide-list > div {
  flex: 1 1 270px;
  min-width: 250px;
  background: #f8fbf9;
  border-radius: 20px;
  padding: 28px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(91,138,114,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.features-grid > div:hover,
.trip-list > div:hover,
.guide-list > div:hover {
  box-shadow: 0 8px 24px rgba(91,138,114,0.12);
  transform: translateY(-3px) scale(1.025);
}
.features-grid img,
.trip-list img,
.guide-list img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}

.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

blockquote {
  font-style: italic;
  background: #e6efe8;
  color: #22303C;
  border-left: 6px solid #5B8A72;
  border-radius: 12px;
  padding: 22px 28px;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,48,60,.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(34,48,60,0.11);
}

.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;
  margin-bottom: 20px;
}

/* ----------- HERO SECTION ----------- */
.hero {
  padding: 0;
  border-radius: 0 0 48px 48px;
  background: linear-gradient(120deg, #E6EFE8 60%, #5B8A72 130%);
  min-height: 400px;
  margin-bottom: 40px;
  box-shadow: 0 8px 48px rgba(34,48,60,.058);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 82px 0 60px 0;
}
.hero h1 {
  color: #22303C;
  font-size: 2.7rem;
}
.hero p {
  color: #5B8A72;
  font-size: 1.17rem;
}

/* ------------ CTA BUTTONS -------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  background: linear-gradient(90deg, #5B8A72 50%, #22303C 140%);
  color: #F3F7FA;
  border: none;
  border-radius: 30px;
  box-shadow: 0 3px 18px rgba(34,48,60,.07);
  padding: 12px 32px;
  margin: 10px 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.17s, box-shadow 0.2s;
  text-decoration: none;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #22303C 80%, #5B8A72 135%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 7px 30px rgba(34,48,60,0.12);
  color: #fff;
}

/* ----------- TESTIMONIALS ----------- */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F3F7FA;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(34,48,60,0.07);
  min-width: 260px;
  flex: 1 1 320px;
  max-width: 380px;
}
.testimonial-card p {
  color: #22303C;
  font-size: 1rem;
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5B8A72;
  font-weight: 500;
}
.testimonial-details span:first-child {
  font-size: 1.2em;
  letter-spacing: 2px;
}

/* ----------- NAVIGATION ----------- */
header {
  padding: 0 0 0 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: 0 2px 22px rgba(34,48,60,.045);
}
.main-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: transparent;
}
.main-nav > a {
  color: #22303C;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 21px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav > a:hover,
.main-nav > a:focus {
  background: #E6EFE8;
  color: #5B8A72;
}
.main-nav .cta-btn {
  margin-left: auto;
}
.main-nav > a img {
  vertical-align: middle;
  height: 34px;
  width: auto;
  background: transparent;
}

/* -------- MOBILE NAVIGATION -------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 1105;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  color: #22303C;
  background: #E6EFE8;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 7px rgba(34,48,60,.09);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #5B8A72;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: -4px 0 24px rgba(34,48,60,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 18px;
  margin-bottom: 16px;
  font-size: 2rem;
  color: #22303C;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2010;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #5B8A72;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22303C;
  padding: 12px 18px;
  border-radius: 22px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6EFE8;
  color: #5B8A72;
}

/* --------- FOOTER --------- */
footer {
  background: linear-gradient(120deg, #F3F7FA 80%, #E6EFE8 100%);
  padding: 32px 0 16px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 50px;
  box-shadow: 0 -2px 18px rgba(34,48,60,.06);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #5B8A72;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 15px;
  border-radius: 16px;
  transition: background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E6EFE8;
  color: #22303C;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 15px;
  color: #22303C;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: bottom;
}
.footer-copy {
  text-align: center;
  font-size: 0.98rem;
  color: #5B8A72;
  margin-top: 8px;
}

/* ----------- MISC FLEXBOX UTILS ----------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------- OTHER STRUCTURAL COMPONENTS ---------- */
.trip-highlights, .trip-filters, .experience-highlights, .memorable-moments, .topic-overview, .contact-details, .contact-hours, .address-map {
  margin-bottom: 24px;
}
.trip-highlights ul, .trip-filters ul, .experience-highlights ul, .memorable-moments ul, .topic-overview ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  list-style: disc outside;
}

/* ---------- COOKIE CONSENT BANNER & MODAL ---------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  padding: 26px 20px;
  background: linear-gradient(90deg, #fff 70%, #E6EFE8 180%);
  box-shadow: 0 -6px 28px rgba(34,48,60,.11);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background-color: #5B8A72;
  color: #fff;
  border-radius: 22px;
  padding: 9px 26px;
  border: none;
  margin: 0 3px;
  transition: background 0.18s, transform 0.12s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background-color: #22303C;
  transform: scale(1.06);
  color: #fff;
}
.cookie-settings-btn {
  background-color: #22303C;
  color: #fff;
}
.cookie-settings-btn:hover {
  background-color: #5B8A72;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(22,40,34,0.38);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 38px 30px 24px 32px;
  box-shadow: 0 7px 35px rgba(91,138,114,0.19);
  max-width: 420px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.31s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modalIn {
  from {
    transform: translateY(80px) scale(.97);
    opacity: 0;
  } to {
    transform: none;
    opacity: 1;
  }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #5B8A72;
  margin-right: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.3rem;
  color: #22303C;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #5B8A72;
}

/* ----------- MEDIA QUERIES: RESPONSIVE ----------- */
@media (max-width: 1100px) {
  .features-grid > div, .trip-list > div, .guide-list > div {
    min-width: 200px;
    padding: 22px 10px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
  .container {
    padding: 0 8px;
  }
  .testimonials-list, .features-grid, .trip-list, .guide-list {
    gap: 17px;
  }
  .footer-contact {
    gap: 12px;
    font-size: 0.98rem;
  }
  .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  h3 {
    font-size: 1.11rem;
  }
  .section, main section {
    margin-bottom: 33px;
    padding: 24px 6px;
    border-radius: 18px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .testimonials-list {
    flex-direction: column;
    gap: 17px;
    align-items: flex-stretch;
  }
  .testimonial-card {
    max-width: 100%;
    flex: 1 1 90vw;
  }
  .features-grid,
  .trip-list,
  .guide-list {
    flex-direction: column;
    gap: 12px;
  }
  .features-grid > div,
  .trip-list > div,
  .guide-list > div {
    min-width: 100%;
    padding: 17px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .footer-contact, .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .hero .content-wrapper {
    padding: 56px 0 40px 0;
  }
  .cookie-modal {
    padding: 18px 7px 14px 10px;
    max-width: 96vw;
    min-width: 0;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* --- Fine tuning small screens --- */
@media (max-width: 540px) {
  .section, main section {
    padding: 7px 2px;
  }
  .cookie-consent-banner {
    font-size: 0.97rem;
    padding: 17px 5px;
  }
}

/* --------------- MICRO-INTERACTIONS --------------- */
.section, .card, .testimonial-card, .features-grid > div {
  transition: box-shadow 0.18s, transform 0.19s;
}
.section:hover, .card:hover {
  box-shadow: 0 10px 40px rgba(34,48,60,0.14);
}
.testimonial-card:focus-within, .testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(91,138,114,0.15);
  transform: translateY(-2px) scale(1.01);
}
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #5B8A72;
  outline-offset: 2px;
}

/* ------------- Accessibility tweaks ------------- */
[tabindex]:focus {
  outline: 2px solid #5B8A72 !important;
}

/* ------------- Hide visually but keep accessible ------------- */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
