/* =====================
   CSS 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, 
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 {
  scroll-behavior: smooth;
}
body {
  background: #f9f8f5;
  color: #2a2a2a;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #216233;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c17939;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ===========
  TYPE & FONTS
  =========== */
@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', 'Arial', sans-serif;
  color: #0B2231;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 0 #EAD997, 2px 2px 0 #c1793933;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
p, li {
  color: #2a2a2a;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: #216233;
}
.text-section h2,
.text-section h3 {
  color: #0B2231;
  margin-top: 24px;
  margin-bottom: 10px;
}

/* =================
   BRAND RETRO COLORS
   ================= */
:root {
  --primary: #216233;
  --secondary: #0B2231;
  --accent: #EAD997;
  --retro-red: #C17939;
  --retro-blue: #082246;
  --retro-peach: #FFD9B0;
  --retro-mint: #B0DABE;
  --retro-yellow: #F6E9B5;
  --retro-cream: #f9f8f5;
  --white: #fff;
  --black: #222;
}


/* ==========
   MAIN LAYOUT
   ========== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-cream);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(33, 98, 51, 0.06), 0 0px 0 #EAD997;
}


/* ================
 HEADER & NAVIGATION
 ================ */
header {
  width: 100%;
  background: var(--retro-yellow);
  border-bottom: 2px solid var(--retro-red);
  box-shadow: 0 2px 10px rgba(33, 98, 51, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
header > a img {
  height: 54px;
  width: auto;
  margin: 16px 0 10px 8px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  font-weight: 700;
}
nav a {
  padding: 8px 20px;
  border-radius: 19px;
  color: var(--secondary);
  background: none;
  transition: background 0.2s, color 0.25s;
  position: relative;
}
nav a.cta-primary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 0 #c1793990;
  transition: background 0.18s, color 0.15s, transform 0.1s;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: var(--retro-red);
  color: #fff;
  border-color: var(--retro-yellow);
  transform: translateY(-2px) scale(1.03);
}
nav a:hover, nav a:focus {
  background: var(--retro-peach);
  color: var(--primary);
}

/* Header Layout */
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
  justify-content: space-between;
  padding: 0 8px;
}


/* =================
   MOBILE NAVIGATION
   ================= */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--retro-red);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.1s;
  box-shadow: 0 4px 18px #21623311;
  position: relative;
  z-index: 200;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-yellow);
  box-shadow: 0 8px 32px #0b223125;
  z-index: 3000;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.79,0.07,0.16,0.99);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  animation: slidein-menu 0.23s cubic-bezier(.62,1.63,.45,.92);
}
@keyframes slidein-menu {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 0 0;
  background: var(--retro-blue);
  color: var(--accent);
  border-radius: 50%;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 2px 8px #08224621;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-red);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 36px 36px 36px;
  width: 100vw;
}
.mobile-nav a {
  font-size: 1.28rem;
  color: var(--secondary);
  text-align: left;
  background: var(--retro-peach);
  border-radius: 16px;
  padding: 15px 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.19s, color 0.19s;
  margin-bottom: 4px;
  box-shadow: 0 2px 3px #21623313;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    padding-right: 12px;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* =========================
   HERO SECTION & BUTTONS
   ========================= */
.hero {
  padding: 40px 0 36px 0;
  background: repeating-linear-gradient(135deg, var(--retro-cream) 0 70px, var(--retro-yellow) 70px 140px);
  box-shadow: 0 4px 20px #21623315;
  border-bottom: 2px solid var(--retro-red);
  border-radius: 0 0 24px 24px;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta-primary {
  display: inline-block;
  margin-top: 22px;
  background: var(--primary);
  color: var(--accent) !important;
  padding: 13px 35px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.19rem;
  font-weight: 900;
  border: 3px solid var(--retro-yellow);
  box-shadow: 0 8px 0 #c1793992, 0 3px 14px #08224611;
  transition: background 0.17s, color 0.17s, transform 0.09s, box-shadow 0.09s;
  letter-spacing: 0.03em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-red);
  color: var(--retro-peach) !important;
  box-shadow: 0 14px 0 #f6e9b590, 0 6px 30px #21623319;
  transform: translateY(-2px) scale(1.034);
}

.details-btn {
  display: inline-block;
  background: var(--retro-blue);
  color: var(--accent);
  padding: 6px 24px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.16s, color 0.13s, box-shadow 0.11s;
  box-shadow: 0 2px 6px #08224617;
  border: 2px solid var(--primary);
}
.details-btn:hover, .details-btn:focus {
  background: var(--retro-red);
  color: #fff;
}

/* =========
  FEATURES
  ========= */
.features {
  background: var(--retro-cream);
  border-radius: 18px;
  box-shadow: 0px 5px 30px #b0dabe1a;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--retro-yellow);
  border-radius: 18px;
  box-shadow: 0 4px 12px #21623314;
  padding: 26px 22px 22px 22px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 240px;
  border: 2px solid var(--retro-peach);
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.17s, transform 0.13s;
  position: relative;
}
.feature-item img {
  width: 46px; height: 46px;
  object-fit: contain;
  margin-bottom: 5px;
  background: var(--retro-mint);
  border-radius: 15px;
  padding: 6px;
  border: 1px solid var(--retro-yellow);
}
.feature-item h3 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}
.feature-item:hover {
  box-shadow: 0 10px 32px #21623319;
  border: 2px solid var(--primary);
  transform: translateY(-2px) scale(1.019);
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  margin-top: 26px;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  background: var(--retro-mint);
  padding: 7px 16px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 1px 4px #b0dabe39;
}
.feature-icons img {
  width: 24px;
  height: 24px;
}

/* ======
 SERVICES
 ====== */
.services {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 12px #08224610;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 30px;
}
.tour-list li {
  background: var(--retro-mint);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px #21623312;
  padding: 25px 20px 18px 20px;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-list li h3 {
  color: var(--primary);
}
.text-section {
  margin-bottom: 24px;
}
.services .cta-primary {
  margin-top: 24px;
}
.booking-steps {
  margin: 28px 0 18px 0;
}
.booking-steps ol {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
}


/* =============
   TESTIMONIALS
   ============= */
.testimonials {
  background: var(--retro-yellow);
  border-radius: 18px;
  box-shadow: 0 4px 18px #ead99721;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border: 2px dashed var(--primary);
  border-radius: 16px;
  box-shadow: 0 10px 30px #ead9971a;
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.04rem;
  color: #222;
  transition: box-shadow 0.16s, border-color 0.16s, transform 0.11s;
}
.testimonial-card:hover {
  border-color: var(--retro-red);
  box-shadow: 0 20px 36px #21623321;
  transform: translateY(-2px) scale(1.032);
}
.testimonial-card p {
  color: #222;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--retro-blue);
  font-size: 1rem;
}
.testimonial-card span {
  color: var(--retro-red);
  font-size: 1.22rem;
  font-weight: bold;
  letter-spacing: 0.18em;
}
.star-rating {
  margin-top: 24px;
  font-size: 1.07rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ============
   ABOUT, FAQ, ETC.
   ============ */
.about, .contact, .privacy-policy, .dsgvo-info, .cookie-policy, .terms {
  background: var(--retro-cream);
  border-radius: 20px;
  box-shadow: 0 2px 12px #b0dabe1a;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about ul, .contact-info ul, .faq-list ul, .dsgvo-info ul, .cookie-policy ul, .text-section ul {
  list-style: disc inside;
  margin-top: 16px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1rem;
}
.about ul li, .text-section ul li, .faq-list ul li {
  margin-bottom: 13px;
  font-size: 1rem;
}

.faq-list h3 {
  font-size: 1.25rem;
  color: var(--retro-red);
  margin: 14px 0 7px 0;
}

.directions {
  margin-top: 24px;
  margin-bottom: 12px;
}

/* -----------------------
  CONTACT – Info sections
----------------------- */
.contact-info {
  margin-bottom: 22px;
  color: var(--primary);
}
.contact-info a {
  color: var(--retro-red);
  font-weight: bold;
}

/* ============
   FOOTER
   ============ */
footer {
  width: 100%;
  background: var(--retro-yellow);
  color: var(--secondary);
  border-top: 3px solid var(--primary);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -2px 24px #21623319;
  padding-top: 40px;
}
.container > .footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 32px;
}
.footer-logo img {
  width: 80px;
  height: auto;
}
.footer-nav, .footer-content nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 24px 0 0;
}
.footer-nav a,
.footer-content nav a {
  color: var(--secondary);
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover,
.footer-content nav a:hover {
  background: var(--primary);
  color: var(--accent);
}
.footer-contact {
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-contact strong {
  color: var(--primary);
  font-weight: 700;
}
.footer-contact a {
  color: var(--retro-red);
  font-weight: bold;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  background: var(--retro-mint);
  border-radius: 8px;
  box-shadow: 0 2px 5px #08224615;
  padding: 5px;
  transition: background 0.18s, box-shadow 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  background: var(--primary);
  box-shadow: 0 5px 9px #2162331a;
}


/* ==============
 COOKIE BANNER 
 ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4200;
  background: var(--retro-peach);
  color: #0B2231;
  box-shadow: 0 -8px 22px #21623333;
  border-top: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 20px 20px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 1.04rem;
  transition: transform 0.29s cubic-bezier(0.21,0.55,0.49,1);
  transform: translateY(0);
  animation: cookiebanner-fadein 0.25s;
}
@keyframes cookiebanner-fadein {
  0% { transform: translateY(100%); opacity: 0; }
  100%{ transform: translateY(0);   opacity: 1; }
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0.1;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}
.cookie-banner-btn {
  background: var(--primary);
  color: var(--accent);
  padding: 9px 24px;
  border-radius: 18px;
  font-weight: bold;
  font-family: 'Montserrat',sans-serif;
  border: 2px solid var(--accent);
  font-size: 1rem;
  transition: background 0.19s, color 0.19s, border 0.13s;
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-banner-btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  filter: brightness(0.95);
  background: var(--retro-red);
  color: #fff;
  border-color: var(--accent);
}
.cookie-banner-btn.settings:hover, .cookie-banner-btn.settings:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--retro-red);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #2a2a2adb;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadein-modal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--retro-yellow);
  border-radius: 16px;
  box-shadow: 0 13px 32px #0b223155;
  max-width: 340px;
  width: 94vw;
  padding: 30px 18px 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #222;
  font-family: 'Roboto',sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 14px;
  font-size: 1.72rem;
  background: var(--retro-red);
  color: var(--accent);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background 0.19s, color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--retro-mint);
  border-radius: 11px;
  padding: 9px 13px;
  font-size: 1rem;
}
.cookie-category .switch {
  margin-left: auto;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input {
  display: none;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  background-color: #eee;
  border-radius: 22px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.switch input:checked + .switch-slider {
  background-color: var(--primary);
}
.switch-slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.2s;
}
.switch input:checked + .switch-slider:before {
  transform: translateX(18px);
}


/* ==============
    RESPONSIVE
   ============== */
@media (max-width: 1200px) {
  .container {
    max-width: 920px;
  }
  .feature-grid, .footer-content {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid {
    gap: 15px;
  }
  .footer-content {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.65rem;
    padding-top: 4px;
  }
  h2 {
    font-size: 1.23rem;
  }
  .section, .features, .testimonials, .about, .contact, .privacy-policy, .dsgvo-info, .cookie-policy, .services, .terms {
    margin-bottom: 32px;
    padding: 24px 8px;
    border-radius: 13px;
  }
  .card-container,
  .feature-grid, .testimonial-carousel, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-content {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  .footer-logo img {
    width: 55px;
  }
  .feature-item, .testimonial-card {
    min-width: unset;
    max-width: 99vw;
    padding: 16px 7px 16px 12px;
  }
  .hero {
    margin-bottom: 18px;
    padding-bottom: 22px;
    border-radius: 0 0 12px 12px;
  }
  nav {
    gap: 7px;
    font-size: 1em;
    flex-wrap: wrap;
  }
  .cta-primary, .cookie-banner-btn, .details-btn {
    padding: 11px 19px;
    font-size: 1rem;
  }
}

/* Spacing Patterns (per requirements, Flexbox-only) */
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

/* ===============
   MICRO-INTERACTIONS
   =============== */
button, .cta-primary, .details-btn, .cookie-banner-btn {
  transition: background 0.18s, color 0.15s, box-shadow 0.13s, transform 0.13s;
}
.card,
.feature-item,
.testimonial-card,
.tour-list li {
  transition: box-shadow 0.17s, border-color 0.12s, transform 0.08s;
}

/* ===================
   ADDITIONAL UTILITIES
   =================== */
.hide { display: none!important; }
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important; width: 1px !important;
  margin: -1px !important; overflow: hidden !important;
  padding: 0 !important; position: absolute !important; white-space: nowrap !important;
}

/* =============
   PRINT STYLES
   ============= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
}

/* --- END --- */
