/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFFDFB;
  color: #254C65;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  color: #53B5A6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #254C65;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #254C65;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  background: #F8E9D1;
  border-left: 6px solid #53B5A6;
  padding: 18px 24px 18px 20px;
  border-radius: 18px;
  font-style: italic;
  color: #254C65;
  margin: 0 0 20px 0;
}
blockquote span {
  color: #53B5A6;
  font-style: normal;
  font-weight: 500;
}
strong {
  color: #254C65;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* Header & Navigation */
header {
  width: 100%;
  background: #FFFDFB;
  box-shadow: 0 2px 10px 0 rgba(236,190,137,0.09);
  z-index: 1001;
  border-bottom: 2px solid #F8E9D1;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #254C65;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 2px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #F8E9D1;
  color: #53B5A6;
}
header a.cta-primary {
  margin-left: 28px;
}
.logo {
  height: 48px;
  margin-right: 24px;
}

/* Hamburger Menu (Mobile) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  background: #254C65;
  color: #FFFDFB;
  border: none;
  font-size: 2rem;
  padding: 7px 16px 7px 10px;
  border-radius: 12px;
  z-index: 1200;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #53B5A6;
}
.mobile-menu-toggle:hover {
  background: #53B5A6;
  color: #FFFDFB;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFDFB;
  box-shadow: 0 0 32px 0 rgba(37,76,101,0.16);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.4,.2,.3,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 42px 0 20px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F8E9D1;
  color: #254C65;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 56px;
  height: 56px;
  position: absolute;
  right: 17px;
  top: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  box-shadow: 0 2px 12px 0 rgba(236,190,137,0.13);
  transition: background 0.11s, color 0.11s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #53B5A6;
  color: #FFFDFB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 56px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #254C65;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 15px 0;
  border-radius: 10px;
  width: 80vw;
  text-align: center;
  background: none;
  transition: background 0.18s, color 0.16s;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8E9D1;
  color: #53B5A6;
}

/* Hide nav and show burger on mobile */
@media (max-width: 900px) {
  header .container nav, header .container a.cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background: #F8E9D1;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: 0 4px 32px 0 rgba(37,76,101,0.09);
  margin-bottom: 60px;
  padding: 55px 0 40px 0;
  display: flex;
  align-items: center;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  margin: 0 auto;
  align-items: flex-start;
  max-width: 640px;
}
.hero h1 {
  color: #254C65;
}
.hero .subheadline {
  color: #254C65;
  font-size: 1.18rem;
  margin-bottom: 18px;
  font-weight: 500;
}

/* Call to Action Section */
.cta-section {
  background: #F8E9D1;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 46px 20px;
  text-align: center;
  box-shadow: 0 4px 26px rgba(37,76,101,0.09);
}
.cta-section .container {
  align-items: center;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-text {
  font-size: 1.18rem;
  color: #254C65;
  margin-bottom: 18px;
  font-weight: 500;
}

/* Sections: Spacing Patterns */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFDFB;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(236,190,137,0.10);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 22px;
  align-items: flex-start;
}
.feature {
  flex: 1 1 220px;
  background: #FFFDFB;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(236,190,137,0.12);
  padding: 32px 20px 22px 20px;
  text-align: left;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s;
}
.feature:hover { box-shadow: 0 6px 28px 0 rgba(83,181,166,0.13); }

.feature img {
  width: 48px; height: 48px; margin-bottom: 5px;
  background: #F8E9D1;
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(83,181,166,0.09);
}

/* Services */
.services-summary-list, .detailed_service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.service-card {
  background: #FFFDFB;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(236,190,137,0.11);
  padding: 28px 22px 23px 22px;
  flex: 1 1 240px;
  min-width: 205px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.18s;
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(83,181,166,0.16);
  background: #F8E9D1;
}
.service-price {
  color: #53B5A6;
  font-size: 1.09rem;
  font-weight: 600;
  margin-top: 10px;
}

.cta-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  display: inline-block;
  color: #254C65;
  background: none;
  border: 2px solid #53B5A6;
  border-radius: 13px;
  padding: 8px 22px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 9px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #53B5A6;
  color: #FFFDFB;
}

/* Testimonials */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #FFFDFB;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(83,181,166,0.12);
  padding: 26px 24px 24px 26px;
  flex: 1 1 285px;
  min-width: 215px;
  color: #254C65;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, background 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px 0 rgba(37,76,101,0.14);
  background: #F8E9D1;
}
.testimonial-name {
  font-size: 1.09rem;
  color: #53B5A6;
  font-weight: 600;
  margin-bottom: 0;
}
.stars {
  color: #FFB200;
  font-size: 1.13rem;
  letter-spacing: 0.10em;
}

/* Cards for Destinations & Stories */
.destination-list, .traveler-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.destination-card, .story-card {
  background: #FFFDFB;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(236,190,137,0.12);
  padding: 24px 22px 20px 20px;
  flex: 1 1 245px;
  min-width: 215px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.16s;
}
.destination-card:hover, .story-card:hover {
  background: #F8E9D1;
  box-shadow: 0 7px 29px 0 rgba(83,181,166,0.13);
}
.region-tag {
  display: inline-block;
  background: #53B5A6;
  color: #FFFDFB;
  border-radius: 10px;
  padding: 3px 13px;
  font-size: 0.93rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.story-highlight {
  color: #53B5A6;
  font-weight: 600;
  margin-top: 8px;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.benefit {
  background: #FFFDFB;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(236,190,137,0.12);
  padding: 24px 19px 22px 21px;
  flex: 1 1 215px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, background 0.15s;
}
.benefit:hover {
  box-shadow: 0 7px 24px 0 rgba(83,181,166,0.13);
  background: #F8E9D1;
}
.benefit img {
  width: 40px; height: 40px; margin-bottom: 6px;
  background: #F8E9D1;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 1px 4px rgba(83,181,166,0.07);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.faq-item {
  flex: 1 1 300px;
  background: #FFFDFB;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(236,190,137,0.11);
  padding: 22px 18px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.13s, background 0.12s;
}
.faq-item:hover {
  background: #F8E9D1;
  box-shadow: 0 6px 26px 0 rgba(83,181,166,0.13);
}
.faq-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 15px;
  list-style-type: disc;
}
.faq-categories li {
  color: #53B5A6;
  font-size: 1rem;
}

/* Travel Tips / Expert Tips Lists */
.travel-tips-list, .expert-tips-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 15px 0 14px 0;
  padding-left: 0;
}
.travel-tips-list li, .expert-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-left: 4px solid #F8E9D1;
  padding: 12px 0 12px 13px;
  background: #FFFDFB;
  border-radius: 8px;
}
.travel-tips-list img, .expert-tips-list img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F8E9D1;
  padding: 3px;
  margin-top: 2px;
}

/* Footer */
footer {
  background: #254C65;
  color: #FFFDFB;
  padding: 38px 0 28px 0;
  font-size: 1rem;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  box-shadow: 0 -6px 32px 0 rgba(83,181,166,0.09);
}
footer .container {
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F8E9D1;
  opacity: 0.93;
  font-weight: 500;
  font-size: 1.01rem;
  padding: 4px 0;
  transition: color 0.14s, opacity 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #53B5A6;
  opacity: 1;
}
.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 5px;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  background: #F8E9D1;
  border-radius: 13px;
  padding: 5px;
}
.footer-brand span {
  font-size: 0.97rem;
  opacity: 0.96;
}

/* Buttons */
.cta-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  display: inline-block;
  background: #53B5A6;
  color: #FFFDFB;
  border: none;
  border-radius: 17px;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 1.13rem;
  box-shadow: 0 2px 13px 0 rgba(83,181,166,0.13);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, transform 0.19s, box-shadow 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #254C65;
  color: #F8E9D1;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px 0 rgba(83,181,166,0.19);
  outline: 0;
}
button, .btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  border-radius: 15px;
  background: #53B5A6;
  color: #FFFDFB;
  font-weight: 600;
  transition: background 0.17s, color 0.15s, box-shadow 0.17s;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #254C65;
  color: #F8E9D1;
  outline: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .services-summary-list,
  .detailed_service_list,
  .benefits-list,
  .testimonial-cards,
  .destination-list,
  .traveler-stories,
  .faq-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container {
    padding: 0 8px;
  }
  .hero {
    padding: 32px 0 26px 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    margin-bottom: 35px;
  }
  section {
    margin-bottom: 35px;
    padding: 26px 6px;
  }
  .card, .service-card, .feature, .benefit, .testimonial-card,
  .destination-card, .story-card, .faq-item {
    min-width: unset; flex: 1 1 100%;
  }
  .feature-grid,
  .services-summary-list,
  .detailed_service_list,
  .benefits-list,
  .testimonial-cards,
  .destination-list,
  .traveler-stories,
  .faq-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .cta-section {
    border-radius: 20px;
    padding: 24px 8px;
  }
  footer {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 24px 0 16px 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  h1, h2, h3 {
    font-size: 1.1rem;
  }
  .hero {
    padding: 15px 0 10px 0;
  }
  .cta-section {
    padding: 13px 3px;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F8E9D1;
  color: #254C65;
  box-shadow: 0 -4px 24px 0 rgba(37,76,101,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 25px 22px 25px;
  font-size: 1rem;
  z-index: 3500;
  transition: transform 0.30s;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-text { max-width: 470px; }
.cookie-banner .cookie-btn{
  margin: 0 6px;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 12px;
  font-weight: 600;
  background: #53B5A6;
  color: #FFFDFB;
  border: none;
  transition: background 0.15s, color 0.14s;
}
.cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn:hover {
  background: #254C65;
  color: #F8E9D1;
}
.cookie-banner .cookie-secondary {
  background: #FFFDFB;
  color: #53B5A6;
  border: 2px solid #53B5A6;
  margin-left: 8px;
}
.cookie-banner .cookie-secondary:focus,
.cookie-banner .cookie-secondary:hover {
  background: #53B5A6;
  color: #FFFDFB;
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 16px 8px 17px 8px;
    font-size: 0.98rem;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,76,101,0.24);
  z-index: 3550;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #FFFDFB;
  border-radius: 20px;
  box-shadow: 0 12px 64px 0 rgba(83,181,166,0.22);
  padding: 36px 28px 28px 28px;
  min-width: 335px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  animation: modalIn 0.34s cubic-bezier(0.48,0.13,0.36,1) both;
}
@keyframes modalIn {
  0% { transform: translateY(60px) scale(0.98); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 14px;
  background: #F8E9D1;
  color: #254C65;
  border: none;
  font-size: 1.7rem;
  width: 40px; height: 40px;
  border-radius: 11px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #53B5A6;
  color: #FFFDFB;
}
.cookie-modal h2 {
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-category .cookie-toggle {
  width: 48px;
  height: 24px;
  border-radius: 13px;
  background: #F8E9D1;
  position: relative;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.13s;
}
.cookie-category .cookie-toggle.active {
  background: #53B5A6;
}
.cookie-category .cookie-toggle::after {
  content: "";
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #FFFDFB;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 2px 6px rgba(83,181,166,0.11);
  transition: left 0.13s;
}
.cookie-category .cookie-toggle.active::after {
  left: 26px;
}
.cookie-category label {
  font-size: 1.07rem;
  color: #254C65;
  font-weight: 500;
}
.cookie-category .cookie-always-on {
  color: #53B5A6;
  font-size: 0.96rem;
  margin-left: 9px;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  width: 100%;
}
.cookie-modal-footer .cookie-btn {
  padding: 9px 18px;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 10px;
  background: #53B5A6;
  color: #FFFDFB;
  border: none;
}
.cookie-modal-footer .cookie-btn:focus, .cookie-modal-footer .cookie-btn:hover {
  background: #254C65;
  color: #F8E9D1;
}
.cookie-modal-footer .cookie-secondary {
  background: #FFFDFB;
  color: #53B5A6;
  border: 2px solid #53B5A6;
}
.cookie-modal-footer .cookie-secondary:focus,
.cookie-modal-footer .cookie-secondary:hover {
  background: #53B5A6;
  color: #FFFDFB;
}

@media (max-width: 500px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 19px 8px 14px 11px;
    font-size: 0.98rem;
  }
  .cookie-modal h2 {
    font-size: 1.09rem;
  }
}

/* Misc */
.inspirational-quotes {
  margin: 21px 0 0 0;
  padding: 0;
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Custom Scrollbar (modern browsers) */
::-webkit-scrollbar { width: 10px; background: #F8E9D1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #53B5A6; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #254C65; }

/* Micro-interactions and transition helpers */
.card, .service-card, .feature, .benefit, .testimonial-card, .destination-card, .story-card,
.cta-primary, .cta-secondary, button, .btn {
  transition: box-shadow 0.14s, background 0.13s, color 0.13s, transform 0.15s;
}
.card:active, .service-card:active, .feature:active, .benefit:active, .testimonial-card:active,
.destination-card:active, .story-card:active {
  transform: scale(0.98);
}

/* Ensure spacing between all content sections & cards */
section + section { margin-top: 0 !important; }
.card:not(:last-child), .service-card:not(:last-child), .feature:not(:last-child), .benefit:not(:last-child), .testimonial-card:not(:last-child), .destination-card:not(:last-child), .story-card:not(:last-child), .faq-item:not(:last-child) {
  margin-bottom: 20px;
}

/* Focus highlight for accessibility */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid #53B5A6;
  outline-offset: 1px;
}

/* Hide scroll on mobile menu */
body.mobile-menu-open {
  overflow: hidden;
}
