/* ========================================================== */
/* RESET & BASE STYLES                                         */
/* ========================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
a, img, strong, b, ul, li, fieldset, form, legend, label, article, aside,
footer, header, hgroup, main, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #fff; color: #28506b; font-family: 'Roboto', Arial, sans-serif; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { color: #28506b; text-decoration: none; transition: color 0.2s; }
hr { border: none; border-top: 1px solid #e4e4e4; margin: 32px 0; }

/* ========================================================== */
/* COLORS (BRAND + PLAYFUL ACCENTS)                          */
/* ========================================================== */
:root {
  --mp-primary: #28506b;
  --mp-secondary: #ffffff;
  --mp-accent: #eaab2c;
  --mp-accent-strong: #c18b23;
  --mp-bg: #fff9ec;
  --mp-card: #fcf1d6;
  --mp-fun-pink: #fe99b0;    /* playful accent pink */
  --mp-fun-green: #63c396;   /* playful accent green */
  --mp-fun-blue: #3dbce8;    /* playful accent blue */
  --mp-fun-violet: #8464e2;  /* playful accent violet */
  --mp-footer: #e7e8ec;
  --mp-shadow: 0 4px 20px rgba(40, 80, 107, 0.12);
}

/* ========================================================== */
/* TYPOGRAPHY                                                */
/* ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700,900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  color: #28506b;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 14px; color: var(--mp-accent-strong); }
h4 { font-size: 1.18rem; margin-bottom: 10px; }

p {
  color: #2b3b4c;
  font-size: 1.13rem;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  background: var(--mp-card);
  padding: 18px 22px;
  border-left: 6px solid var(--mp-accent-strong);
  border-radius: 12px;
  font-style: italic;
  margin-bottom: 24px;
  color: #1a3145;
  font-size: 1.10rem;
}

ul, ol { margin-left: 24px; margin-bottom: 18px; }
ul li, ol li { margin-bottom: 8px; font-size: 1.08rem; }
strong, b { font-weight: 700; }

/* Fun font for some accents */
.fun-font {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0px;
  color: var(--mp-fun-pink);
}

/* ========================================================== */
/* LAYOUT: FLEXBOX - NO GRID, NO COLUMNS!                    */
/* ========================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section {
  background: var(--mp-bg);
  border-radius: 24px 24px 38px 16px;
  box-shadow: 0 3px 24px rgba(40, 80, 107, 0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (min-width: 769px) {
  .container { gap: 0; }
  section {
    padding: 60px 36px;
    margin-bottom: 80px;
    border-radius: 32px;
  }
}

/* Main nav flex pattern */
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-company-info {
  color: #42607f;
  font-size: 1rem;
  margin-top: 2px;
}
.footer-company-info address { font-style: normal; }

/* ========================================================== */
/* LOGO + CTA FUN BUTTONS                                    */
/* ========================================================== */
.logo img {
  height: 58px;
  width: auto;
  margin-right: 14px;
  vertical-align: middle;
}
.cta-btn {
  background: linear-gradient(90deg, var(--mp-accent) 22%, var(--mp-fun-pink) 99%);
  color: #fff;
  border: none;
  padding: 15px 34px;
  border-radius: 26px 14px 34px 16px;
  box-shadow: 0 5px 18px #ffc94d44, 0 1.5px 4px #eaab2c66;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: 0.7px;
  cursor: pointer;
  margin-left: 17px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.22s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--mp-fun-blue) 10%, var(--mp-accent-strong) 90%);
  color: #fff;
  transform: scale(1.055) rotate(-1deg);
  box-shadow: 0 12px 44px #3dbce844, 0 4px 8px #c18b2366;
}

/* ========================================================== */
/* NAVIGATION                                                */
/* ========================================================== */
.main-nav a {
  padding: 8px 15px;
  border-radius: 15px 10px 18px 8px;
  background: transparent;
  font-weight: 700;
  font-size: 1rem;
  color: #314d6b;
  position: relative;
  transition: color 0.2s, background 0.19s, box-shadow 0.16s;
  z-index: 1;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: var(--mp-fun-violet);
  box-shadow: 0 2px 12px rgba(132,100,226,0.14);
}

/* Burger menu button */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mp-accent);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  position: absolute;
  right: 16px;
  top: 17px;
  box-shadow: 0 2px 8px #ffd30038;
  cursor: pointer;
  z-index: 777;
  transition: background .22s, color .22s, transform .15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--mp-fun-blue);
  color: #fff;
  transform: scale(1.14) rotate(-3deg);
}

/* Desktop nav default: burger hidden */
@media (min-width: 1020px) {
  .mobile-menu-toggle { display: none; }
}

/* ========================================================== */
/* MOBILE MENU                                               */
/* ========================================================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--mp-accent-strong) 15%, var(--mp-fun-pink) 60%, var(--mp-fun-blue) 100%);
  box-shadow: 0 8px 32px #00000021;
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(.55,.06,.46,1.16);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  position: absolute;
  right: 23px;
  top: 17px;
  cursor: pointer;
  z-index: 1201;
  padding: 8px;
  transition: color 0.17s;
}
.mobile-menu-close:hover { color: #ffe744; }

.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 98px;
  padding-left: 34px;
}
.mobile-menu nav.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 11px 0;
  border-radius: 11px 13px 14px 14px;
  background: transparent;
  transition: background .21s, color .18s;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  background: rgba(255,255,255,0.18);
  color: #fed85c;
}
@media (min-width: 1020px) {
  .mobile-menu { display: none !important; }
}

/* Hide main nav & cta-btn on mobile */
@media (max-width: 1019px) {
  .main-nav, .cta-btn { display: none; }
}

/* Show main nav & cta-btn on desktop */
@media (min-width: 1020px) {
  .main-nav { display: flex !important; }
  .cta-btn { display: inline-block !important; }
}

/* ========================================================== */
/* FLEX CONTAINER PATTERNS                                   */
/* ========================================================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  background: var(--mp-card);
  border-radius: 18px 24px 18px 28px;
  box-shadow: var(--mp-shadow);
  margin-bottom: 20px;
  min-width: 275px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px 24px 15px 21px;
  box-shadow: 0 2px 16px #e9ba3322;
  padding: 20px 26px;
  min-width: 265px;
  flex: 1 1 300px;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ULs with icons - playful styles */
section ul li > img {
  width: 44px;
  height: 44px;
  margin-right: 15px;
  vertical-align: middle;
}
section ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 0;
  margin-left: 0;
  list-style: none;
}
section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffefc;
  border-radius: 16px;
  box-shadow: 0 2px 7px #f3d07d33;
  padding: 17px 19px;
}

/* Testimonial text (CRITICAL: dark on light for contrast) */
.testimonial-card p {
  color: #23272e;
  font-size: 1.14rem;
  margin-bottom: 8px;
  text-align: center;
}
.testimonial-author {
  color: #785a14;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
}

/* Fun card hover animation */
.card, .testimonial-card, section ul li {
  transition: box-shadow .24s, transform .15s;
}
.card:hover, .testimonial-card:hover, section ul li:hover {
  box-shadow: 0 8px 32px #eaab2c33;
  transform: translateY(-5px) scale(1.03);
  z-index: 7;
}

/* Travel ideas playful grid */
.travel-ideas-grid ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.travel-ideas-grid ul li {
  background: var(--mp-fun-blue);
  color: #fff;
  border-radius: 20px 12px 18px 16px;
  padding: 14px 17px;
  box-shadow: 0 1.5px 7px #3dbce822;
}
.trip-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-top: 16px;
}
.trip-themes li {
  background: var(--mp-fun-green);
  color: #fff;
  padding: 6px 19px;
  border-radius: 14px 22px 13px 8px;
  font-weight: 600;
  font-size: 1.01rem;
  box-shadow: 0 1.5px 7px #63c39622;
}

/* Inspirational quotes as fun callouts */
.inspirational-quotes blockquote {
  background: var(--mp-fun-pink);
  color: #fff;
  border-left: 6px solid var(--mp-fun-violet);
}

/* Credential badges */
.credentials-badges {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 10px;
}
.credentials-badges span {
  background: #ffe6b4;
  color: #6f5c22;
  padding: 7px 15px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 2px 7px #eaab2c14;
}

/* Destination categories, playful tags */
.destination-categories, .nature-destinations, .eco-friendly-practices ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
  margin-bottom: 10px;
}
.destination-categories span, .nature-destinations li, .eco-friendly-practices ul li {
  background: var(--mp-fun-pink);
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px 24px 12px 10px;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 1px 7px #fe99b033;
}

/* Contact details fun icons */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  background: #fffefc;
  border-radius: 10px;
  box-shadow: 0 1px 7px #d3cbb869;
  padding: 10px 15px;
}
.contact-details img {
  width: 27px;
  height: 27px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 11px;
  font-weight: 600;
}
.social-links a {
  transition: transform .14s;
}
.social-links a:hover { transform: scale(1.13) rotate(-7deg); }

/* Office hours & map */
.office-hours, .location-map {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #ffeedb;
  border-radius: 13px;
  padding: 10px 20px;
  box-shadow: 0 1px 6px #eaab2c11;
}

/* Timeline/history fun callout */
.history-timeline, .team-introduction, .sustainability-statement, .educational-benefits, .travel-enrichment, .protected-areas-overview, .eco-travel-tips, .core-values {
  background: var(--mp-fun-green);
  color: #fff;
  border-radius: 14px 26px 10px 20px;
  padding: 13px 21px;
  font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 6px #63c39622;
}

/* ========================================================== */
/* RESPONSIVE LAYOUTS                                        */
/* ========================================================== */
@media (max-width: 1020px) {
  .container { max-width: 100%; }
}

@media (max-width: 900px) {
  .testimonial-slider { flex-direction: column; gap: 22px; }
  .content-grid { flex-direction: column; gap: 16px; }
  .card-container { flex-direction: column; }
  .logo img { height: 43px; }
}
@media (max-width: 768px) {
  .section, section { padding: 28px 7px; border-radius: 19px; }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  .text-image-section { flex-direction: column; gap: 21px; }
  .testimonial-card, .card { min-width: 90vw; max-width: 97vw; }
  .destination-categories, .nature-destinations { gap: 8px; }
  .main-nav, .footer-nav { gap: 11px; }
}

@media (max-width: 530px) {
  .logo img { height: 34px; }
  .container { padding: 0 7px; }
}

/* ========================================================== */
/* BUTTONS + LINKS                                            */
/* ========================================================== */
button, input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  background: var(--mp-accent-strong);
  color: #fff;
  padding: 10px 24px;
  font-size: 1.11rem;
  font-weight: 700;
  transition: background 0.16s, transform .12s;
}
button:hover, input[type="submit"]:hover, button:focus {
  background: var(--mp-fun-blue);
  color: #fff;
  transform: scale(1.05);
}

/* ========================================================== */
/* FOOTER                                                    */
/* ========================================================== */
footer {
  background: var(--mp-footer);
  border-top: 3px solid var(--mp-accent);
  box-shadow: 0 -3px 18px #e7e8ec63;
  padding: 34px 0 18px 0;
  margin-top: 50px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* ========================================================== */
/* COOKIE CONSENT BANNER + MODAL                             */
/* ========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: linear-gradient(90deg, var(--mp-accent) 60%, var(--mp-fun-pink) 115%);
  color: #fff; box-shadow: 0 -5px 30px #ecc47a97;
  z-index: 3333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  font-size: 1.08rem;
  gap: 15px;
  animation: cookiefadein .55s;
}
@keyframes cookiefadein { from { opacity: 0; bottom: -100px; } to { opacity: 1; bottom: 0; } }
.cookie-banner p { color: #fff; margin: 0 20px 0 0; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  background: var(--mp-fun-blue);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 9px 14px;
  min-width: 115px;
  transition: background 0.18s;
}
.cookie-banner button.cookie-accept {
  background: #63c396;
}
.cookie-banner button.cookie-accept:hover {
  background: #2faf4a;
}
.cookie-banner button.cookie-reject {
  background: #fe99b0;
}
.cookie-banner button.cookie-reject:hover {
  background: #e03564;
}
.cookie-banner button.cookie-settings {
  background: var(--mp-fun-violet);
}
.cookie-banner button.cookie-settings:hover {
  background: #5c3f8e;
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px 5px; gap: 10px; font-size: 1.01rem; }
  .cookie-banner p { margin: 0 0 8px 0; }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3334;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,43,66,0.55);
  justify-content: center;
  align-items: center;
  animation: fadein_modal .28s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadein_modal { from { opacity: 0; } to { opacity: 1; } }

.cookie-modal {
  background: var(--mp-bg);
  border-radius: 22px;
  box-shadow: 0 8px 38px #eaab2c44;
  padding: 43px 32px 30px 32px;
  width: 95vw;
  max-width: 382px;
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: popup .36s;
}
@keyframes popup { from { transform: scale(0.89); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal h3 {
  color: #28506b;
  margin-bottom: 14px;
  font-size: 1.18rem;
  font-weight: 800;
  text-align: left;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-toggle {
  width: 38px; height: 22px; background: #ddd; border-radius: 14px; position: relative; cursor: pointer; transition: background .16s;
}
.cookie-toggle[data-checked="true"] { background: #63c396; }
.cookie-toggle[data-checked="false"] { background: #fe99b0; }
.cookie-toggle .circle {
  width: 18px; height: 18px; background: #fff; border-radius: 50%; position: absolute; top: 2px; left: 2px; transition: left .22s;
}
.cookie-toggle[data-checked="true"] .circle { left: 18px; }
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 15px; margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 17px;
  background: transparent; border: none; font-size: 1.6rem; color: var(--mp-accent-strong); transition: color .19s;
}
.cookie-modal-close:hover { color: #fe99b0; }

/* Modal overlay darkened - body lock */
body.cookie-modal-open { overflow: hidden !important; }

/* ========================================================== */
/* PLAYFUL, DYNAMIC MICRO-INTERACTIONS                       */
/* ========================================================== */
a, button, .cta-btn, .main-nav a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .22s, color .18s, box-shadow .17s, transform .13s;
}
.cta-btn:active, .main-nav a:active, .mobile-menu-toggle:active {
  transform: scale(0.98) rotate(-4deg);
}
.testimonial-card:before {
  content: '★';
  color: var(--mp-accent-strong);
  position: absolute;
  top: -8px; left: 14px;
  font-size: 2.3rem;
  opacity: 0.15;
  z-index: 0;
  animation: sparkle 1.8s infinite linear alternate;
}
@keyframes sparkle {
  from { opacity: 0.18; transform: rotate(0deg) scale(1); }
  to   { opacity: 0.26; transform: rotate(-12deg) scale(1.08); }
}
section ul li:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 12px; top: 18px;
  width: 22px; height: 22px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22"><circle fill="%23eaab2c" opacity="0.13" cx="11" cy="11" r="11"/></svg>') no-repeat;
  z-index: 0;
}
section ul li { position: relative; overflow: visible; }

/* ========================================================== */
/* SCROLLBAR CUSTOMIZATION                                   */
/* ========================================================== */
::-webkit-scrollbar { width: 10px; background: #fff9ec; }
::-webkit-scrollbar-thumb {
  background: #fea100;
  border-radius: 9px;
  min-height: 18px;
}

/* ========================================================== */
/* ACCESSIBILITY                                             */
/* ========================================================== */
:focus { outline: 2px solid var(--mp-accent-strong); outline-offset: 2px; }

/* Smoother section transitions */
section { transition: box-shadow .19s, background .28s; }
section:hover { box-shadow: 0 12px 54px #f8c24e47; }

/* Utility for fun font */
.fun-font-accent { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; color: var(--mp-fun-violet); font-weight: 900; letter-spacing: -0.5px; font-size: 1.3em; }

/* ========================================================== */
/* PRINT OPTIMIZATION                                        */
/* ========================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  main, section, .container, .content-wrapper { background: #fff !important; color: #000 !important; box-shadow: none !important; }
}

/* ========================================================== */
/* END OF STYLE                                              */
/* ========================================================== */
