/* ========================
   CSS RESET & NORMALIZE
======================== */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F7F6F1;
  color: #23405A;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25412d;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
p, ul, ol {
  margin-bottom: 16px;
  color: #2B3A2B;
}
ul, ol {
  padding-left: 18px;
}
strong {
  color: #23405A;
  font-weight: 700;
}
em {
  color: #33663D;
  font-style: italic;
}
a {
  color: #346248;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23405A;
  outline: none;
}
img {
  max-width: 100%;
  display: inline-block;
  border-radius: 8px;
  height: auto;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===============
    COLOR SYSTEM
=============== */
:root {
  --primary: #23405A;
  --secondary: #8BB8A8;
  --accent: #E9E3D1;
  --earth: #C7B299;
  --leaf: #5B925D;
  --forest: #25412d;
  --sand: #F7F6F1;
  --text-main: #23405A;
  --text-dark: #18331E;
  --text-light: #ffffff;
  --shadow: rgba(77, 88, 65, 0.12);
  --border: #e3dbc8;
}

/* ===============
 CONTAINER, LAYOUT
=============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: var(--accent);
  box-shadow: 0 4px 24px var(--shadow);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 9px;
    margin-bottom: 32px;
    border-radius: 18px;
  }
}

/* ===============
      HEADER
=============== */
header {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.header-content > a img {
  height: 48px;
  width: auto;
  border-radius: 30% 40% 32% 60%/ 40% 60% 30% 50%; /* organic shape */
  box-shadow: 0 2px 12px var(--shadow);
  background: #fff;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 18px;
  color: var(--text-main);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
nav a:hover, nav a.active, nav a:focus {
  background: var(--secondary);
  color: var(--forest);
}
.cta.primary {
  background: var(--leaf);
  color: var(--text-light);
  border-radius: 30px 38px 28px 34px/36px 29px 31px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 11px 32px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-left: 14px;
  box-shadow: 0 3px 9px 0 var(--shadow);
  border: none;
  display: inline-block;
  outline: none;
  transition: background 0.18s, box-shadow 0.25s, transform 0.12s;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 var(--shadow);
}
.cta.secondary {
  background: var(--secondary);
  color: #23405A;
  border-radius: 24px 44px 31px 20px/24px 38px 35px 35px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 32px;
  font-size: 1.05rem;
  border: none;
  outline: none;
  margin-top: 12px;
  box-shadow: 0 1px 8px 0 var(--shadow);
  transition: background 0.14s, color 0.14s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--leaf);
  color: #fff;
}

/* ===============
  MOBILE BURGER MENU
=============== */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 20px;
  background: var(--leaf);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px var(--shadow);
  z-index: 1001;
  transition: background 0.15s, transform 0.12s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--forest);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: var(--sand);
  box-shadow: -4px 0 28px var(--shadow);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.41, 0.73, 0.34, 0.96);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 20px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 17px;
  right: 16px;
  background: var(--secondary);
  color: var(--text-main);
  border-radius: 50%;
  font-size: 1.8rem;
  width: 38px;
  height: 38px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1220;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--leaf);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  background: transparent;
  padding: 11px 0;
  border-radius: 12px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--forest);
}
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    display: none;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex;
  }
  .cta.primary {
    display: inline-block;
  }
}

/* ===============
       HERO
=============== */
.hero {
  background: linear-gradient(110deg, var(--accent) 70%, var(--secondary) 100%);
  border-radius: 36px;
  box-shadow: 0 8px 32px var(--shadow) inset;
  margin-bottom: 60px;
  padding: 60px 20px 68px 20px;
}
.hero h1 {
  color: var(--forest);
  margin-bottom: 16px;
  text-shadow: 0 2px 16px var(--shadow);
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 30px;
  color: #25412d;
}
.hero .cta.primary {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 18px;
    padding: 36px 10px 50px 10px;
    margin-bottom: 35px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ===============
 FLEXBOX LAYOUTS
=============== */
.card-container, .card-grid, .feature-grid, .blog-article-list, .travel-package-grid, .features-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .card-grid > div, .feature-grid > div, .blog-article-list > div, .travel-package-grid > div, .features-highlight > ul > li {
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 24px 34px 27px 41px/30px 37px 35px 29px;
  box-shadow: 0 2px 10px var(--shadow);
  border: 1px solid var(--border);
  padding: 24px 18px 22px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card-grid > div:hover, .feature-grid > div:hover, .blog-article-list > div:hover {
  box-shadow: 0 8px 24px 0 var(--shadow);
  transform: translateY(-4px) scale(1.014);
  z-index: 2;
}
@media (max-width: 900px) {
  .card-container, .card-grid, .feature-grid, .blog-article-list, .travel-package-grid, .features-highlight {
    flex-direction: column;
    gap: 16px;
  }
  .card, .card-grid > div, .feature-grid > div, .blog-article-list > div, .travel-package-grid > div {
    width: 100%;
    min-width: 0;
  }
}

/* Spacing rules for provided layouts */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 22px 32px 17px 28px;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.12s;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #25412d;
  margin-bottom: 12px;
}
.testimonial-card strong {
  color: #23405A;
  font-size: 1rem;
  margin-top: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 var(--shadow);
  transform: translateY(-2px) scale(1.008);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
}

/* Card icon visuals */
.feature-grid img,
.feature-item img,
.card img {
  width: 48px;
  height: 48px;
  border-radius: 37% 51% 20% 44%/ 42% 33% 38% 57%;
  background: #e9ecd9;
  margin-bottom: 7px;
}

/* Text section for organic feel */
.text-section {
  background: #fff;
  padding: 32px 24px;
  border-radius: 29px 22px 27px 31px/35px 22px 38px 41px;
  box-shadow: 0 2px 10px 0 var(--shadow);
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
@media (max-width: 576px) {
  .text-section {
    padding: 18px 9px;
    border-radius: 18px 20px 17px 18px;
  }
}

/* ===============
    CUSTOM LISTS
=============== */
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 2px;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  margin-right: 8px;
  vertical-align: middle;
}
.core-values ul li::before {
  background: var(--leaf);
}

.benefit-list {
  margin-top: 18px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-list li::before {
  background: var(--leaf);
}

/* ===============
   SPECIAL SECTIONS
=============== */
.features-highlight > ul,
.quality-promises > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.personal-philosophy {
  font-style: italic;
  margin-top: 24px;
  color: #5B925D;
  background: #E9E3D1;
  border-left: 6px solid #C7B299;
  padding: 14px 18px;
  border-radius: 10px 30px 10px 30px;
}

/* ===============
       BLOG
=============== */
.blog-article-list {
  margin-bottom: 12px;
}
.blog-article-list > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 21px 28px 21px 19px;
  box-shadow: 0 2px 10px 0 var(--shadow);
  padding: 20px 16px;
  margin-bottom: 18px;
  flex: 1 1 260px;
}
.featured-posts {
  padding: 16px 22px;
  background: var(--accent);
  color: #334C29;
  border-radius: 19px 29px 19px 29px;
  box-shadow: 0 1px 5px var(--shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-top: 18px;
}

/* ===============
      MAP SNIPPET
=============== */
.map-snippet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-style: italic;
  font-size: 1.04rem;
  margin-top: 10px;
  margin-bottom: 2px;
}
.map-snippet img {
  width: 40px;
  height: 40px;
  border-radius: 32% 27% 31% 38%/28% 38% 31% 44%;
  background: var(--secondary);
}

/* ===============
     FOOTER
=============== */
footer {
  background: var(--accent);
  border-top: 1px solid var(--border);
  font-size: 1rem;
  padding: 0;
  width: 100%;
  margin-top: 60px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0 30px 0;
  flex-wrap: wrap;
}
.footer-content > a img {
  height: 44px;
  width: auto;
  border-radius: 30% 40% 32% 60%/ 40% 60% 30% 50%;
  margin-bottom: 6px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #25412d;
  text-decoration: underline dotted;
  font-size: 0.98rem;
  padding: 3px 0;
  transition: color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--leaf);
}
.contact-compact ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
}
.contact-compact li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.98rem;
  color: #25412d;
}
.contact-compact li img {
  width: 20px; height: 20px;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 21px 0;
  }
}

/* ===============
   RESPONSIVENESS
=============== */
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .footer-content {
    padding: 12px 0 7px 0;
    font-size: 0.97rem;
  }
}

/* ===============
   MICRO-INTERACTIONS
=============== */
button, .cta.primary, .cta.secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
nav a, .mobile-nav a {
  transition: background 0.16s, color 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.13s;
}

/* ===============
   ACCESSIBILITY
=============== */
:focus {
  outline: 2px dashed var(--leaf);
  outline-offset: 2px;
}

/* ===============
   COOKIE CONSENT BANNER
=============== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23405A;
  color: #fff;
  box-shadow: 0 -2px 22px var(--shadow);
  z-index: 3100;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 24px 12px 22px 16px;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1.04rem;
  flex: 2 1 270px;
  margin-right: 14px;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex: 1 1 210px;
  align-items: center;
  justify-content: center;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 21px 25px 17px 23px;
  font-size: 1.04rem;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: 0;
  box-shadow: 0 1px 8px 0 var(--shadow);
  transition: background 0.12s, color 0.12s, transform 0.08s;
  outline: none;
}
.cookie-btn.accept {
  background: var(--leaf);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2B6B33;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--leaf);
  border: 2px solid var(--leaf);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFEEDC;
  color: #23405A;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #23405A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--forest);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 5px 18px 5px;
  }
  .cookie-consent-banner .cookie-buttons {
    flex-direction: column;
    gap: 13px;
    align-items: flex-stretch;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 66, 35, 0.48);
  z-index: 3300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.26s ease;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #F7F6F1;
  color: #23405A;
  border-radius: 30px 40px 30px 30px/38px 36px 30px 32px;
  box-shadow: 0 8px 48px var(--shadow);
  max-width: 420px;
  width: 92vw;
  padding: 36px 32px 30px 32px;
  z-index: 3320;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  margin-bottom: 9px;
  text-align: left;
  color: #18331E;
}
.cookie-modal .cookie-category {
  margin-bottom: 9px;
  border-radius: 18px 26px 15px 21px;
  background: #fffbe7;
  padding: 11px 16px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .switch {
  margin-left: auto;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* Switch toggle (checkbox like) */
.switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.switch input {
  appearance: none;
  width: 36px; height: 22px;
  border-radius: 11px;
  background: #E9E3D1;
  margin-right: 9px;
  position: relative;
  transition: background 0.18s;
  border: 1px solid #cfd4c2;
}
.switch input:checked {
  background: var(--leaf);
}
.switch input::-webkit-slider-thumb {
  appearance: none;
}
.switch input::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.16s;
}
.switch input:checked::before {
  left: 18px;
}

.cookie-modal .cookie-category[aria-disabled="true"] input {
  opacity: 0.45;
  pointer-events: none;
}

/* Essential always enabled visual */
.cookie-modal .cookie-category[aria-disabled="true"] {
  filter: grayscale(0.36);
  opacity: 0.70;
}

.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.6rem;
  color: var(--leaf);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--forest);
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 14px 6vw 17px 9vw;
    font-size: 0.97rem;
    max-width: 99vw;
    border-radius: 18px;
  }
}

/* ===============
 ORGANIC SHAPES & EFFECTS
=============== */
.card, .text-section, .testimonial-card, .cookie-modal, .hero, .footer-content > a img, .header-content > a img, img {
  box-shadow: 0 2px 10px var(--shadow);
}

/* Subtle organic border for decorations */
.card, .testimonial-card, .text-section {
  border: 1.5px solid var(--border);
}

/* ===============
   TYPOGRAPHY SCALE
=============== */
.display-large {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: #25412d;
}
.subtitle {
  font-size: 1.13rem;
  color: #2B3A2B;
  margin-bottom: 15px;
}

/* ===============
     SPACING
=============== */
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }
.pt-12 { padding-top: 12px; }
.pt-24 { padding-top: 24px; }
.pb-16 { padding-bottom: 16px; }
.pb-24 { padding-bottom: 24px; }


/* ======== SUPPORT FOR SPECULATIVE CLASSES ======== */
/* .card-content */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

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

/* ===============
  NO ABSOLUTE LAYOUT FOR CARDS
=============== */
/* content cards use position: relative for only minor floating deco, not layout */

/* ===============
  PREVENT OVERLAPPING & WHITE SPACE
=============== */
section, .section, .footer-content, .hero, .text-section {
  margin-bottom: 60px;
}
.card, .testimonial-card, .feature-item, .card-grid > div, .feature-grid > div, .blog-article-list > div, .travel-package-grid > div {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  section, .section, .footer-content, .hero, .text-section {
    margin-bottom: 36px;
  }
}

/* ===============
   PRINT SUPPORT
=============== */
@media print {
  .cookie-consent-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
