/* RESET & NORMALIZE */
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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #1a2521;
  color: #E2F3E6;
  line-height: 1.75;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
ul,ol { padding-left: 1.3em; margin-bottom: 1em; }
li { margin-bottom: 0.5em; }
a {
  color: #A0B782;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #64ffd1; text-shadow: 0 0 2px #64ffd1; }

/* FONT HEADINGS */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #E2F3E6;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 12px; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
}

/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* FLEX UTILITIES */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  background: #E2F3E6;
  color: #24382e;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(50,120,107,0.14);
  margin-bottom: 22px;
  padding: 20px;
  min-width: 270px;
  max-width: 600px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 #A0B78233, 0 2px 18px 0 #32786B33;
  border-color: #A0B782;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #22302b 0%, #2e473c 80%, #32786B 100%);
  box-shadow: 0 4px 24px #32786B44;
  padding-top: 65px;
  padding-bottom: 52px;
  position: relative;
  transition: background 0.4s;
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.75rem;
  color: #A0B782;
  text-shadow: 0 2px 32px #32786B68,0 0 6px #A0B78288;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.2rem;
  color: #E2F3E6;
  max-width: 600px;
  margin-bottom: 24px;
}

/* MAIN NAVIGATION */
header {
  background: #1a2521;
  border-bottom: 1.5px solid #32786B44;
  box-shadow: 0 2px 10px #22302b12;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
header img {
  width: 44px;
  height: 44px;
  margin-right: 30px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat',sans-serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #E2F3E6;
  position: relative;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta.primary {
  background: #32786B;
  color: #E2F3E6;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 1px 10px #32786b50;
  border: 1.5px solid #A0B782;
  text-shadow: 0 0 10px #A0B78280;
}
.main-nav a.cta.primary:hover {
  background: #A0B782;
  color: #1a2521;
  border-color: #64ffd1;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A0B782;
  background: #22302b;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #A0B782;
  font-size: 2.2rem;
  display: none;
  cursor: pointer;
  z-index: 21;
  outline: none;
  transition: color 0.2s;
  margin-left: 18px;
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(135deg, #1a2521 75%, #32786B 100%);
  z-index: 30;
  transition: transform 0.32s cubic-bezier(0.56,0,0.23,1);
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #A0B782;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 28px 32px 0 0;
  cursor: pointer;
  z-index: 31;
  transition: color 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  width: 100%;
  margin-top: 44px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #E2F3E6;
  background: none;
  padding: 16px 0;
  border-radius: 0;
  width: 100%;
  text-align: center;
  transition: background 0.22s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A0B782;
  color: #1a2521;
  box-shadow: 0 2px 12px #32786b33;
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* BUTTONS & CTA */
.cta,
button,
input[type=submit],
.mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  background: #32786B;
  color: #E2F3E6;
  box-shadow: 0 2px 16px #32786B66;
  cursor: pointer;
  transition: background 0.22s, color 0.15s, box-shadow 0.23s;
  margin: 10px 0;
  min-width: 130px;
  outline: none;
}
.cta.primary {
  background: #A0B782;
  color: #1a2521;
  border: 1.5px solid #32786B;
}
.cta.primary:hover, .cta.primary:focus {
  background: #64ffd1;
  color: #22302b;
  border-color: #32786B;
  box-shadow: 0 3px 32px #64ffd166, 0 1.5px 12px #A0B78244;
  text-shadow: 0 0 8px #32786B99;
}
.cta:hover, .cta:focus {
  background: #A0B782;
  color: #22302b;
  box-shadow: 0 3px 22px #A0B78299;
}

/* FEATURE & SERVICE GRIDS */
.feature-grid, .services-list, .attraction-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 28px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .feature-grid, .services-list, .attraction-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature, .service-block, .attraction {
  background: #22302b;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #32786B22;
  padding: 28px 28px 24px;
  min-width: 210px; max-width: 400px;
  transition: box-shadow 0.18s, transform 0.15s;
  flex: 1 1 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.feature:hover, .service-block:hover, .attraction:hover {
  box-shadow: 0 6px 32px 0 #A0B78233, 0 2px 18px 0 #32786B55;
  transform: translateY(-4px) scale(1.025);
}
.feature img, .service-block img, .attraction img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 7px #A0B78255);
}
.service-block span {
  margin-top: 8px;
  font-size: 1rem;
  color: #A0B782;
}

/* BLOG POST LISTS */
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 22px;
}
.blog-post-list li {
  background: #22302b;
  padding: 22px 24px;
  border-radius: 15px;
  box-shadow: 0 2px 10px #32786B24;
  transition: box-shadow 0.18s;
}
.blog-post-list li:hover {
  box-shadow: 0 6px 28px #A0B78244;
}
.featured-article {
  background: #A0B78222;
  color: #E2F3E6;
  border-radius: 11px;
  margin-top: 28px;
  padding: 20px 24px;
  box-shadow: 0 2px 16px #32786B22;
}

/* QUOTES & BLOCKQUOTES */
blockquote {
  border-left: 4px solid #A0B782;
  background: #22302b;
  color: #A0B782;
  font-family: 'Montserrat',sans-serif;
  font-style: italic;
  padding: 18px 32px;
  margin-bottom: 18px;
  border-radius: 8px;
}

/* FOOTER */
footer {
  margin-top: 50px;
  background: linear-gradient(135deg, #22302b 85%, #32786B 100%);
  color: #A0B782;
  padding-top: 38px;
  padding-bottom: 30px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #A0B782;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #64ffd1;
}
.footer-contact, .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #E2F3E6;
}
.footer-brand img {
  width: 40px;
  height: 40px;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* LISTS, TABLES, GENERAL TEXT */
p { margin-bottom: 1.3em; }
ul, ol { margin-bottom: 1.2em; }
li { margin-bottom: 0.5em; }
table { border-collapse: collapse; width: 100%; margin-bottom: 16px; }
th,td { padding: 10px 12px; border-bottom: 1px solid #22302b; color: #E2F3E6; }
th { background: #22302b; }

/* UTILS AND ANIMATIONS */
@keyframes fadeinUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .feature, .service-block, .testimonial-card, .attraction, .featured-article, .blog-post-list li {
  animation: fadeinUp 0.8s cubic-bezier(0.375,0.85,0.58,1.02);
}

/* RESPONSIVE FLEX LAYOUTS */
@media (max-width: 768px) {
  .container,
  .content-wrapper {
    padding: 0 8px;
  }
  .section {
    padding: 24px 8px 24px 8px;
    margin-bottom: 40px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature, .service-block, .attraction, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .footer-nav,
  .footer-contact,
  .footer-brand {
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #22302b;
  color: #E2F3E6;
  border-top: 2px solid #A0B782;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 32px #A0B78233;
  padding: 17px 8px 14px 8px;
  transition: transform 0.35s cubic-bezier(0.57,0,0.23,1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent-banner p {
  margin-bottom: 9px;
  font-size: 1rem;
  color: #E2F3E6;
}
.cookie-consent-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cookie-consent-banner button.cookie-accept {
  background: #A0B782;
  color: #1a2521;
}
.cookie-consent-banner button.cookie-reject {
  background: #32786B;
  color: #E2F3E6;
  border: 1.2px solid #A0B782;
}
.cookie-consent-banner button.cookie-settings {
  background: transparent;
  color: #A0B782;
  border: 1.2px solid #A0B782;
}
.cookie-consent-banner button:focus,
.cookie-consent-banner button:hover {
  box-shadow: 0 1.5px 10px #A0B78266;
  background: #64ffd1;
  color: #22302b;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26,37,33, 0.9);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.33s;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: #22302b;
  border-radius: 18px;
  box-shadow: 0 8px 44px #32786B66;
  padding: 36px 24px 28px 24px;
  min-width: 320px;
  max-width: 95vw;
  color: #E2F3E6;
  position: relative;
  animation: fadeinUp 0.59s cubic-bezier(0.33,0.85,0.58,1.02);
}
.cookie-modal h2 {
  color: #A0B782;
  margin-bottom: 18px;
  font-size: 1.22rem;
}
.cookie-modal-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
  color: #E2F3E6;
  flex: 1;
}
.cookie-toggle {
  width: 42px;
  height: 22px;
  background: #22302b;
  border-radius: 22px;
  border: 1.5px solid #A0B782;
  position: relative;
  cursor: pointer;
  margin-left: 6px;
  transition: background 0.22s, border 0.18s;
}
.cookie-toggle input[type=checkbox] {
  display: none;
}
.cookie-toggle .cookie-switcher {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: #A0B782;
  border-radius: 50%;
  transition: left 0.22s, background 0.22s;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-switcher {
  left: 22px;
  background: #64ffd1;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal button {
  background: #32786B;
  color: #E2F3E6;
  border-radius: 32px;
  border: none;
  padding: 10px 30px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal button:focus, .cookie-modal button:hover {
  background: #A0B782;
  color: #1a2521;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 20px; top: 20px;
  background: none;
  color: #A0B782;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}

/* FORMS & INPUTS (GENERAL) */
input,textarea,select {
  font-family: 'Roboto',sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1.3px solid #A0B782;
  background: #22302b;
  color: #E2F3E6;
  padding: 10px 12px;
  outline: none;
  margin-bottom: 15px;
  width: 100%;
  transition: border .18s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #64ffd1;
  background: #24382e;
  box-shadow: 0 1px 7px #64ffd166;
}
label { margin-bottom: 7px; display: block; color: #A0B782; font-family: 'Montserrat', sans-serif; }

/* Z-INDEX MANAGEMENT */
header { z-index: 15; }
.mobile-menu { z-index: 30; }
.cookie-consent-banner { z-index: 40; }
.cookie-modal-overlay { z-index: 100; }

/* OVERRIDES FOR TESTIMONIALS & REVIEW SECTIONS (CONTRAST) */
.testimonial-card {
  background: #E2F3E6;
  color: #22302b;
  border: 1.5px solid #A0B78244;
}
.testimonial-card p,
.testimonial-card span {
  color: #1a2521;
}
.testimonial-card span {
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.7;
}

/* SPACING, WHITE SPACE, AND BORDERS (GENERAL) */
.card, .feature, .service-block, .attraction, .testimonial-card {
  margin-bottom: 24px;
}
.section > .container > .content-wrapper > * + * {
  margin-top: 22px;
}
.section ul,
.section ol {
  margin-bottom: 24px;
}

/* TYPOGRAPHY SCALE */
.font-xs { font-size: 0.87rem; }
.font-sm { font-size: 0.94rem; }
.font-md { font-size: 1.1rem; }
.font-lg { font-size: 1.35rem; }
.font-xl { font-size: 2.1rem; }
.font-xxl { font-size: 2.8rem; }
@media (max-width:600px){
  .font-xl{font-size:1.4rem;}
  .font-xxl{font-size:2.15rem;}
}

/* SPECIAL FLEX LAYOUTS FROM REQUIREMENTS */
/* Already covered above, but selectors repeated for coverage */
/* .section, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item */
/* FLEX LAYOUT rules ensured for every .*-grid and .*-container */

/* REMOVE OUTLINES FOR BUTTONS ON ACTIVE, CONSISTENT FOCUS VISIBLE */
button:focus-visible,.cta:focus-visible{ outline: 2px solid #32786B; outline-offset: 2px; }
button:active,.cta:active{ outline: none; }

/* -- END -- */