/* ========== CSS RESET AND 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, 
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* ========== FONT IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #18487b;
  --color-secondary: #f1c40f;
  --color-accent: #ffffff;
  --color-dark: #010b18;
  --color-gray-light: #f7f8fa;
  --color-gray: #e4e8f0;
  --color-success: #3ad29f;
  --color-info: #00b5ff;
  --color-danger: #ff3d6a;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========== GENERIC LAYOUTS ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(24, 72, 123, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 7px 30px 0 rgba(24,72,123,0.18);
  transform: translateY(-5px) scale(1.03) rotate(-1deg);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe9;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(24,72,123,0.06);
  margin-bottom: 24px;
  min-width: 0;
  max-width: 700px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px rgba(24,72,123,0.16);
  transform: scale(1.015) rotate(-1.5deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Playful Dynamic Accent BGs & Decorations */
.hero {
  background: linear-gradient(120deg, #f1c40f 0%, #ffe780 100%);
  padding: 60px 0 50px 0;
  margin-bottom: 60px;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  position: relative;
  box-shadow: 0 10px 40px #18487b11;
  /* Confetti dots as pseudo-elements */
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.28;
}
.hero::before {
  width: 80px;
  height: 80px;
  left: 36vw;
  top: -50px;
  background: var(--color-primary);
  animation: hero-dot-move 8s infinite alternate ease-in-out;
}
.hero::after {
  width: 48px;
  height: 48px;
  right: 10vw;
  bottom: 0;
  background: var(--color-success);
  animation: hero-dot-2-move 5s infinite alternate-reverse;
}
@keyframes hero-dot-move {
  0% { transform: scale(0.8) translateY(0px); }
  100% { transform: scale(1.05) translateY(42px); }
}
@keyframes hero-dot-2-move {
  0% { transform: scale(1) translateY(0px); }
  100% { transform: scale(0.9) translateY(-24px); }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 900;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.13;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.1;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #2266B2;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
p, ul li, ol li, address {
  font-family: var(--font-body);
  color: #373737;
  font-size: 1rem;
  line-height: 1.7;
}
.author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: #165b4f;
}
.star-rating {
  color: #ffbe3b;
  font-size: 1.2em;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.2em;
  display: block;
}

/* Headers & Buttons Fun Font / Playful Faces */
.cta, a.cta, .cta > a, button.cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border-radius: 24px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 3px 20px #18487b22;
  cursor: pointer;
  transition: background 0.25s, transform 0.18s, box-shadow 0.23s;
  margin: 18px 0 0 0;
  text-decoration: none;
  outline: none;
  gap: 8px;
}
.cta:hover, a.cta:hover, .cta:focus, a.cta:focus, button.cta:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 8px 28px #18487b33;
  transform: scale(1.045) rotate(-1.5deg);
}

/* ========== HEADER STYLES ========== */
header {
  background: #fff;
  border-bottom: 3px solid var(--color-secondary);
  box-shadow: 0 2px 9px #18487b11;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.3s, color 0.2s, transform 0.15s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: #181d26;
  transform: scale(1.07) rotate(-2deg);
}
header nav a.cta {
  margin-left: 12px;
}

header img {
  height: 56px;
  width: auto;
  transition: transform 0.18s;
}
header img:hover {
  transform: scale(1.1) rotate(2deg);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 70;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 90vw;
  max-width: 380px;
  background: #fff;
  z-index: 9999;
  box-shadow: 4px 0 38px #18487ba7, 0 2px 9px #f1c40f55;
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  transition: transform 0.44s cubic-bezier(.75,-0.02,.2,1.02);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-danger);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin: 20px 18px 0 0;
  cursor: pointer;
  transition: background 0.19s;
  z-index: 560;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 42px 32px 0 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--color-primary);
  padding: 14px 0;
  width: 100%;
  border-bottom: 2px solid #e4e8f0;
  transition: background 0.2s, color 0.18s;
  border-radius: 0 10px 10px 0;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #181d26;
  padding-left: 12px;
}

/* MOBILE MENU OVERLAY */
.mobile-menu::after {
  content: "";
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: -1;
  background: rgba(0,0,0,0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.mobile-menu.open::after {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1100px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  .container { max-width: 800px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.49rem; }
  .container { padding: 0 10px; }
  .section { padding: 25px 10px; }
  .hero { padding: 36px 0 28px 0; }
}
@media (max-width: 860px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== MAIN SECTIONS STYLES ========== */
.features, .about-features, .feature-grid {
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: linear-gradient(100deg, #e4e8f0 65%, #ffe682 100%);
  border-radius: 20px;
  box-shadow: 0 2px 12px #18487b0d;
  padding: 36px 24px 28px 24px;
  text-align: center;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 48%;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  z-index: 2;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 38px #18487b2b;
  transform: scale(1.035) rotate(-0.5deg);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  animation: popicon 1.6s infinite alternate cubic-bezier(.75,.12,.36,1.14);
}
@keyframes popicon {
  0% { transform: scale(1) rotate(-6deg); }
  100% { transform: scale(1.18) rotate(7deg); }
}

.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 28px 0 18px 0;
}
.value-icons > div {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 145px;
  text-align: center;
  box-shadow: 0 1px 6px #18487b11;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-icons > div:hover {
  box-shadow: 0 3px 18px #f1c40f99;
  transform: translateY(-5px) scale(1.04);
}
.value-icons img {
  width: 32px; height: 32px;
}

.services, .tour-services, .tour-includes {
  background: #f7f8fa;
  border-radius: 12px;
  margin-bottom: 48px;
}
.tour-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.tour-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px #18487b0c;
  padding: 30px 24px 18px 24px;
  min-width: 220px;
  max-width: 310px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
  transition: box-shadow 0.19s, transform 0.22s;
  z-index: 2;
}
.tour-card:hover {
  box-shadow: 0 7px 30px #18487b17;
  transform: scale(1.035) rotate(2deg);
}
.tour-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.about-short, .contact-short, .about-mission, .about-features {
  background: #fafbff;
  border-radius: 18px;
  margin-bottom: 32px;
}

/* Calendar/List Views */
.calendar-view {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 42px;
  background: #edf6fb;
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 18px;
}
.calendar-view ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.date-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 110px;
}
.date-filters ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.date-filters li {
  background: #f1c40f33;
  color: #18487b;
  border-radius: 10px;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-weight: 600;
}

.guarantees {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
}
.guarantees span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 18px;
  box-shadow: 0 1px 6px #18487b0d;
}
.guarantees img {
  width: 24px; height: 24px;
}

/* Gallery Benefits */
.gallery-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gallery-benefits li {
  background: #e4e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.07rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.gallery-benefits li img {
  width: 30px; height: 30px;
}

/* Contact Details / FAQ */
.contact-details ul, .contact-features ul, .faq-short ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 22px;
}
.contact-details li, .contact-features li, .faq-short li {
  display: flex;
  align-items: center;
  background: #f7f8fa;
  border-radius: 12px;
  gap: 9px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 1.04rem;
}
.contact-details img, .contact-features img, .faq-short img {
  width: 24px; height: 24px;
  margin-right: 10px;
}
.faq-short strong {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
}

.contact-note {
  background: #fffbe9;
  border-radius: 18px;
  padding: 18px 17px;
  color: #8c6610;
  font-weight: 600;
  margin-top: 9px;
}

/* ========== TESTIMONIALS & OPINIONS ========== */
.testimonials, .testimonial-list {
  background: #e4e8f0;
  border-radius: 18px;
  padding: 46px 0;
}
.testimonial-list .testimonial-card,
.testimonials .testimonial-card {
  background: #fffbe9;
  color: #23263b;
  border-left: 7px solid var(--color-secondary);
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 1px 9px #18487b22;
  max-width: 800px;
  font-size: 1.07rem;
  font-family: var(--font-body);
}
.testimonials .author,
.testimonial-list .author {
  color: var(--color-primary);
  font-style: normal;
}
.overall-rating {
  background: #fff;
  border-left: 8px solid var(--color-success);
  margin-top: 42px;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 14px #18487b0d;
}

/* ========== CTA SECTION =========== */
section.cta {
  background: linear-gradient(90deg, #fffbe9 10%, #ffe682 100%);
  border-radius: 30px;
  box-shadow: 0 1px 14px #18487b06;
  padding: 44px 8px 44px 8px;
  text-align: center;
  margin: 36px 0;
}
section.cta .cta {
  margin-top: 18px;
  padding: 14px 34px;
}
section.cta p {
  font-size: 1.07em;
  color: #26294b;
  margin-bottom: 8px;
}

/* ========== THANK YOU PAGE ========== */
.thank-you {
  background: #f1c40f11;
  border-radius: 23px;
  min-height: 280px;
  margin-top: 36px;
  padding: 30px 18px;
  text-align: center;
  animation: fade-in-down 1.1s cubic-bezier(.23,1.09,.69,0.99);
}
@keyframes fade-in-down {
  0% {opacity: 0; transform: translateY(-50px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* ========== FOOTER ========== */
footer {
  background: #18487b;
  color: #fff;
  padding: 38px 0 22px 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: 40px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 15px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 0;
  border-radius: 10px;
  background: none;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #f1c40f;
  background: none;
  text-decoration: underline;
}
footer address {
  color: #eee;
  font-family: var(--font-body);
  font-size: 0.99rem;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  padding: 28px 20px;
  background: #fffbe9;
  box-shadow: 0 -2px 20px #18487b10;
  z-index: 12341;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: banner-slide-up 0.8s cubic-bezier(.7,-0.12,.19,1.11);
}
@keyframes banner-slide-up {
  from { transform: translateY(150%);}
  to   { transform: translateY(0);}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-banner button {
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0.5em 0 0;
  cursor: pointer;
  box-shadow: 0 1px 6px #f1c40f22;
  transition: background 0.18s, color 0.16s, transform 0.17s;
}
.cookie-banner .accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #159779;
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-danger);
  border: 2px solid var(--color-danger);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-danger);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

@media (max-width: 640px) {
  .cookie-banner { padding: 18px 6px; }
  .cookie-banner .cookie-actions { gap: 7px; }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(0,0,0,0.22);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12400;
  animation: fade-in-modal 0.42s;
}
@keyframes fade-in-modal {
  from {opacity: 0;} to {opacity: 1;}
}
.cookie-modal-box {
  background: #fffbe9;
  border-radius: 24px;
  box-shadow: 0 5px 36px #18487b1e;
  padding: 36px 28px 24px 28px;
  min-width: 320px;
  max-width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: pop-in-modal 0.55s cubic-bezier(0.72,-0.09, 0.32,1.19);
}
@keyframes pop-in-modal {
  from { transform: scale(0.84); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--color-danger);
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-close:hover { background: #f1c40f; color: #fff; }
.cookie-modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
}
.cookie-modal-box ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 7px 0;
}
.cookie-modal-box .cookie-toggle {
  margin-left: auto;
  min-width: 24px;
}
.cookie-toggle input[type="checkbox"] {
  width: 30px;
  height: 18px;
  accent-color: var(--color-secondary);
  border: none;
  border-radius: 16px;
  outline: 2px solid #ddd;
  outline-offset: 1px;
}
.cookie-modal-box .cookie-actions {
  margin-top: 9px;
  display: flex;
  gap: 8px;
}

/* ========== LEGAL / POLICY ========== */
.legal {
  background: #f7f8fa;
  border-radius: 16px;
  padding: 44px 16px;
  margin-bottom: 42px;
}
.legal h1 {color: var(--color-primary);}
.legal h2 {
  color: var(--color-secondary);
  font-size: 1.19rem;
  margin-top: 22px;
}
.legal ul { margin-top: 14px; margin-bottom: 8px; }
.legal ul li {
  background: #e4e8f0;
  border-radius: 9px;
  padding: 9px 17px;
  margin-bottom: 8px;
}
.legal p {
  margin-bottom: 8px;
}

/* ========== RESPONSIVE LAYOUTS ========== */
@media (max-width: 1100px) {
  .feature-grid > div { min-width: 42vw; max-width: 100%; }
  .tour-card { min-width: 42vw; }
  .guarantees { flex-direction: column; gap: 13px; }
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; align-items: stretch; }
  .feature-grid > div { min-width: 85vw; max-width: 100%; }
  .tour-card { min-width: 85vw; }
  .value-icons { flex-direction: column; gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.09rem; }
  .feature-grid, .tour-cards, .guarantees, .value-icons, .content-grid, .calendar-view, .gallery-benefits ul {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section {flex-direction: column; gap: 16px;}
  .container { padding-left: 6px; padding-right: 6px; }
}
@media (max-width: 600px) {
  .testimonial-card { padding: 13px; }
}

/* ========== ANIMATIONS AND MICRO-INTERACTIONS ========== */
a, .cta, button, .tour-card, .feature-grid > div, .testimonial-card, .cookie-banner button, .cookie-modal-close, .mobile-nav a, header nav a {
  transition: background 0.19s, color 0.12s, box-shadow 0.18s, transform 0.13s, border 0.12s;
}
.tour-card:hover, .cta:hover, .feature-grid > div:hover, .testimonial-card:hover {
  animation: jiggle 0.28s linear 1;
}
@keyframes jiggle {
  0% { transform: rotate(-1.2deg) scale(1.00);}
  40% { transform: rotate(1.2deg) scale(1.05);}
  100% { transform: rotate(0deg) scale(1.055);}
}

/* Decorative doodle-line under h2s for Playful Touch */
h2 {
  position: relative;
}
h2::after {
  content: "";
  display: block;
  height: 8px;
  width: 44px;
  background: var(--color-secondary);
  border-radius: 8px;
  margin: 8px auto 0 auto;
  opacity: 0.85;
  animation: wavy-doodle 2.19s infinite alternate ease-in-out;
}
@keyframes wavy-doodle {
  from {transform: scaleX(0.95) rotate(-2deg);}
  to   {transform: scaleX(1.12) rotate(2deg);}
}

/* ========== UTILITY CLASSES AND OVERRIDES ========== */
.mt-2 {margin-top: 8px;}
.mt-3 {margin-top: 16px;}
.mb-2 {margin-bottom: 8px;}
.mb-3 {margin-bottom: 16px;}
.text-center {text-align: center;}
.text-accent {color: var(--color-secondary)!important;}

/* ================= END OF COMPREHENSIVE CSS ================= */
