/* ================================================================
   CSS RESET & BASE STYLES
   ================================================================ */
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%;
  vertical-align: baseline;
  background: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f9f9f8;
  color: #132b34;
  min-height: 100vh;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, textarea, select {
  font: inherit;
}
a {
  color: #164E63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD700;
}

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
  --primary: #164E63;
  --secondary: #D1E4DD;
  --accent: #FFD700;
  --background: #f9f9f8;
  --headline: #164E63;
  --body: #26353d;
  --card-bg: #fff;
  --shadow-main: 0 4px 20px rgba(22, 78, 99, 0.07);
  --shadow-card: 0 2px 12px rgba(22, 78, 99, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--headline);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 2px 2px 0 var(--accent), 0px 4px 10px #c2ecf3aa;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--body);
  font-size: 1rem;
  margin-bottom: 10px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3988A3;
  font-size: 1.15rem;
  margin-bottom: 26px;
  letter-spacing: 0.02em;
}
strong {
  color: var(--primary);
  font-weight: bold;
}
address {
  font-style: normal;
  color: #444D53;
}
.text-section, .content-wrapper > .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  background: #ffffff55;
  border-radius: var(--radius-md);
  padding: 26px 22px 18px;
}

/* Artful Highlight Effect for Headings */
h2::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 15px;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 50% 35% 80% 50%/ 80% 60% 40% 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* ================================================================
   CONTAINER & SECTION LAYOUTS
   ================================================================ */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
header {
  background: var(--primary);
  padding: 0;
  box-shadow: 0 2px 16px rgba(17,60,80,0.07);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 46px;
  margin-right: 16px;
}
header nav {
  display: flex;
  gap: 18px;
  margin-right: auto;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.24s, color 0.20s, box-shadow 0.2s;
}
header nav a:hover, header nav a:focus {
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent);
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  margin-left: 18px;
  font-size: 1.05rem;
  box-shadow: 0 3px 18px #FFD70033;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.13s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 28px #FFD70077;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
}
.cta-secondary {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  margin-top: 18px;
  box-shadow: 0 2px 12px #164E6333;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.13s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 7px 21px #FFD70088;
  transform: translateY(-1px) scale(1.04) rotate(1.5deg);
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px #FFD70055;
  transition: background 0.19s, color 0.17s, transform .15s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(6deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,78,99,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 38px;
  padding-left: 0;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.44,0,.44,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: bold;
  width: 48px;
  height: 48px;
  margin-left: 22px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 7px #FFD70099;
  transition: background 0.18s, color 0.16s, transform .11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08) rotate(-8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  margin-top: 10px;
  width: 100%;
  gap: 0;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 18px 0;
  margin-right: 18px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  width: 85vw;
  transition: color 0.23s, background .18s, transform 0.15s;
  display: block;
  border-radius: var(--radius-md) var(--radius-lg) 0 0;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.11);
  transform: translateX(8px) scale(1.045) skewX(-3deg);
}

/* Hiding desktop nav and showing burger on mobile  */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .container {
    gap: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .cta-primary {
    margin-left: 0;
  }
}

/* ================================================================
   HERO SECTIONS
   ================================================================ */
.hero {
  padding: 44px 0 24px 0;
  background: linear-gradient(115deg, var(--secondary) 65%, #C1F0E2 99%);
  border-bottom-left-radius: 70px 40px;
  border-bottom-right-radius: 150px 80px;
  box-shadow: var(--shadow-main);
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 0 10px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 14px;
  line-height: 1.14;
  text-shadow: 2px 2px 0 var(--secondary),0 2px 10px #D1E4DD55;
}
.hero .cta-primary {
  margin-top: 16px;
}

/* ================================================================
   FEATURE, SERVICE, PROGRAM GRIDS – FLEXBOX ONLY!
   ================================================================ */
.features,
.services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
}
.features .content-wrapper, .services .content-wrapper {
  width: 100%;
}

ul.feature-grid, ul.feature-list, ul.service-list, ul.tour-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
ul.feature-list {
  flex-direction: column;
  gap: 14px;
}
ul.feature-grid > li, ul.service-list > li, ul.tour-list > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 250px;
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  gap: 10px;
  transition: box-shadow .19s, transform .18s, background .19s;
  position: relative;
}
ul.feature-grid > li img, ul.service-list > li img, ul.tour-list > li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
ul.feature-grid > li:hover, ul.service-list > li:hover, ul.tour-list > li:hover {
  box-shadow: 0 8px 34px #FFD70057;
  background: #fffde3;
  transform: scale(1.023) rotate(-1.5deg);
  z-index: 2;
}
ul.feature-grid h3, ul.service-list h3, ul.tour-list h3 {
  color: var(--primary);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f8fbfa;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-main);
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonials h2 {
  margin-bottom: 6px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  color: #172c33;
  padding: 20px 28px 18px 24px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 14px #164E6325;
  transition: box-shadow .18s, transform .15s, background 0.17s;
}
.testimonial-card:hover {
  background: #FBF9E8;
  box-shadow: 0 7px 48px #FFD70088;
  transform: scale(1.015) skewY(-2deg);
}
.testimonial-card p {
  font-style: italic;
  color: #21323b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--primary);
}

/* Ensuring contrast for testimonial text on light bg */
.testimonial-card, .testimonials .content-wrapper > .testimonial-card {
  background: #fff;
  color: #14212c;
}

/* ================================================================
   CONTACT & INFO LISTS
   ================================================================ */
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #EAF5F1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.contact-info-list,
.feature-list {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info-list li,
.feature-list li {
  font-size: 1rem;
  color: #2E4553;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-info-list a {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px dotted var(--accent);
  text-decoration: none;
  transition: color 0.12s;
}
.contact-info-list a:hover, .contact-info-list a:focus {
  color: var(--accent);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--primary);
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
  border-bottom: 1px solid transparent;
  transition: color 0.17s, border 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}
.footer-info address {
  color: #e3f7ff;
  font-size: .98rem;
  line-height: 1.5;
}
.footer-info a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline dotted var(--accent);
  transition: color 0.17s;
}
.footer-info a:hover, .footer-info a:focus {
  color: #fff;
}

/* ================================================================
   CARD CONTAINERS & FLEX PATTERNS (MANDATORY)
   ================================================================ */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; display: flex; flex-direction: column; background: var(--card-bg); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ADDITIONAL FLEXBOX FOR PAGES */
@media (max-width: 720px) {
  .content-wrapper, .about .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 44px;
  }
  .about .content-wrapper {
    gap: 60px;
  }
  .contact {
    align-items: center;
  }
  .testimonials .content-wrapper {
    flex-direction: row;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .testimonials .testimonial-card {
    min-width: 320px;
    max-width: 460px;
  }
}

/* Responsive Section head + [form] layouts  */
@media (max-width: 720px) {
  .section, .features, .services, .testimonials, .contact {
    padding: 32px 8px;
    margin-bottom: 36px;
  }
  .features .content-wrapper, .services .content-wrapper {
    padding: 0;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  ul.feature-grid, ul.service-list, ul.tour-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* Text-image sections orientation switch for mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ================================================================
   MICRO-INTERACTIONS & ANIMATIONS
   ================================================================ */
.card, .testimonial-card, .feature-grid > li, .service-list > li {
  transition: box-shadow .18s, transform .15s, background 0.15s;
}
.card:hover, .feature-grid > li:hover {
  box-shadow: 0 8px 28px #FFD70057;
  background: #fffde3;
  transform: scale(1.015) rotate(-1deg);
  z-index: 2;
}
.cta-primary, .cta-secondary, .mobile-menu-close, .mobile-menu-toggle {
  transition: background 0.17s, color 0.13s, transform 0.14s;
}
.cta-primary:active, .cta-secondary:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
}

/* Headings art underline for artistic look */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 6px;
  background: var(--accent);
  border-radius: 10px;
  opacity: .30;
  margin-top: 4px;
}
h1::after {
  width: 80px;
  height: 8px;
  margin-top: 10px;
  opacity: .23;
}

/* Artistic touches - hand drawn underline */
h2 {
  background-image: url('../assets/underline-art.svg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 70px 15px;
  padding-bottom: 12px;
}
h2::before {
  top: 8px;
  left: 0;
  z-index: -1;
}

/* ================================================================
   COOKIE CONSENT BANNER (FIXED)
   ================================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99990;
  width: 100%;
  background: #1c6377;
  color: #fff;
  padding: 18px 14px 14px 18px;
  box-shadow: 0 -2px 16px #164E6377;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fade-in-bounce .9s cubic-bezier(.19,1.1,.49,.93);
}
@keyframes fade-in-bounce {
  0% { transform: translateY(120px) scale(.99); opacity: 0.2; }
  80% { transform: translateY(-12px) scale(1.02); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-banner strong {
  color: var(--accent);
  font-weight: bold;
}
.cookie-banner-button {
  margin: 10px 8px 0 0;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 8px 21px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  box-shadow: 0 2px 8px #FFD70044;
  cursor: pointer;
  transition: background 0.19s, color 0.20s;
}
.cookie-banner-button:hover, .cookie-banner-button:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .97rem;
  border: 1px solid var(--accent);
  transition: background .15s, color .15s;
}
.cookie-banner .cookie-settings:hover {
  background: #FFD700;
  color: var(--primary);
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,78,99,0.36);
  z-index: 99991;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal {
  background: #fff;
  color: #13343e;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px #164E6385;
  padding: 38px 26px 32px 32px;
  min-width: 290px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fade-in-scale .58s cubic-bezier(.15,1.2,.31,.92);
}
@keyframes fade-in-scale {
  0% { opacity: 0; transform: scale(.8) translateY(48px); }
  80% { opacity: 1; transform: scale(1.04) translateY(-6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-category {
  display: flex; flex-direction: row; align-items: center; gap: 22px; margin-bottom: 12px;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem; color: var(--primary); font-weight: 600;
}
.cookie-modal-category input[type=checkbox] {
  width: 21px; height: 21px; margin-right: 8px;
  accent-color: var(--accent);
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 14px; top: 6px; font-size: 2.3rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 50%; width: 46px; height: 46px; cursor: pointer;
  font-family: inherit;
  box-shadow: 0 3px 16px #D1E4DD33;
  display: flex; align-items: center; justify-content: center;
  transition: background .13s, color .17s, transform .14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: var(--accent); color: var(--primary);
  transform: scale(1.09) rotate(-10deg);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}
.cookie-modal-actions button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #164E6344;
  transition: background .13s, color .17s, transform .14s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--accent); color: var(--primary);
}

/* ================================================================
   SCROLLBAR 
   ================================================================ */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
  background: #F9F9F8;
}
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 20px;
}

/* ================================================================
   CUSTOM ARTISTIC DECORATIVE ELEMENTS 
   ================================================================ */
.section, .hero, .features, .services, .testimonials, .contact {
  position: relative;
}
.section::before, .hero::before, .features::before, .services::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -36px;
  right: -70px;
  width: 180px;
  height: 90px;
  background: var(--accent);
  opacity: 0.16;
  filter: blur(30px);
  border-radius: 100px 40px 90px 70px / 60px 100px 30px 90px;
  pointer-events: none;
}
.section::before { display: none; }
.hero::before { top: -42px; right: -20px; width: 238px; height: 140px; opacity: 0.13; }

.features::after, .testimonials::after, .services::after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: -24px;
  left: -48px;
  width: 100px;
  height: 62px;
  background: var(--secondary);
  opacity: 0.08;
  filter: blur(15px);
  border-radius: 98px 60px 70px 20px;
  pointer-events: none;
}

/* ================================================================
   @MEDIA QUERIES FOR RESPONSIVENESS
   ================================================================ */
@media (max-width: 1140px) {
  .container { max-width: 92vw; }
  ul.feature-grid > li, ul.service-list > li, ul.tour-list > li { min-width: 180px; }
}
@media (max-width: 960px) {
  .features, .services, .testimonials, .contact, .hero {
    border-radius: var(--radius-md);
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.72rem; }
  h2 { font-size: 1.13rem; }
  .hero { padding: 23px 0 12px 0; border-radius: 38px 38px 80px 40px/30px 50px 40px 80px; }
  .card, ul.feature-grid > li, ul.service-list > li, ul.tour-list > li {
    padding: 14px 9px 14px 10px;
    min-width: 120px;
  }
  .footer-nav {
    gap: 10px;
  }
  .footer-info address {
    font-size: .917rem;
  }
}

/* =====================
   PRINT STYLES
   ===================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  body { color: #111; background: #fff; }
  .section, .features, .services, .testimonials, .contact
  { box-shadow: none !important; border-radius: 0 !important; }
}
section {
  padding: 15px;
}