/* =======================
   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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #382513;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* =======================
   VARIABLES (fallbacks)
======================= */
:root {
  --color-primary: #1D3557;
  --color-secondary: #F4A261;
  --color-accent: #F1FAEE;
  --color-bg: #FFF9F3;
  --color-footer-bg: #f8ece2;
  --color-card-bg: #FFFFFF;
  --color-neutral-900: #382513;
  --color-neutral-700: #5B423C;
  --color-neutral-50: #FFF9F3;
  --shadow: 0 4px 20px rgba(244, 162, 97, 0.08), 0 1.5px 6px rgba(29,53,87,0.06);
  --radius: 18px;
  --radius-lg: 38px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

html {
  background: var(--color-bg, #FFF9F3);
}

body {
  background: var(--color-bg, #FFF9F3);
  color: var(--color-neutral-900, #382513);
  font-family: var(--font-body);
  font-size: 16px;
  transition: background 0.3s;
}

/* =======================
   TYPOGRAPHY
======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary, #1D3557);
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote {
  color: var(--color-neutral-700, #5B423C);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
blockquote {
  background: var(--color-accent, #F1FAEE);
  border-left: 6px solid var(--color-secondary);
  padding: 20px 20px 20px 28px;
  font-style: italic;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.author {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}

/* =======================
   MAIN STRUCTURE
======================= */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
main {
  padding-bottom: 60px;
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
  background: var(--color-card-bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
header nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.2s;
}
header nav a:hover:not(.btn-primary), header nav a:focus:not(.btn-primary) {
  background: var(--color-secondary);
  color: #fff;
}
header .btn-primary {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-lg);
  padding: 10px 32px;
  font-size: 1rem;
  margin-left: 10px;
  box-shadow: 0 2px 10px rgba(244, 162, 97, 0.10);
  transition: background 0.18s, box-shadow 0.24s, transform 0.15s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
header .btn-primary:hover, header .btn-primary:focus {
  background: #e68629;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px rgba(244,162,97,0.19);
}

/* MOBILE BURGER BUTTON */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.7rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(244, 162, 97, 0.10);
  transition: background 0.19s, box-shadow 0.19s;
  z-index: 1201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e68629;
  box-shadow: 0 4px 16px rgba(244,162,97,0.21);
}

@media (min-width: 1100px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 1099px) {
  header nav {
    display: none;
  }
}

/* ========================
   MOBILE MENU
======================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-card-bg, #FFF);
  box-shadow: 0 4px 38px rgba(244,162,97,0.18);
  z-index: 1300;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.77,.2,.05,1.0);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 26px 0 0;
  font-size: 2rem;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(244, 162, 97, 0.10);
  transition: background 0.19s;
  z-index: 1400;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e68629;
}

.mobile-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 36px;
  margin-top: 38px;
}
.mobile-nav a {
  color: var(--color-primary, #1D3557);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 12px 0;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s, transform 0.19s;
  text-align: left;
  min-width: 120px;
  min-height: 40px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 480px) {
  .mobile-nav {
    margin-left: 16px;
  }
}

/* ========================
   HERO & MAIN BUTTONS
======================== */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main section:first-of-type {
  margin-top: 10px;
}
main h1 + p,
main h2 + p {
  font-size: 1.13rem;
  color: var(--color-neutral-700);
  margin-bottom: 14px;
}
.btn-primary,
.btn-secondary {
  display: inline-block;
  border-radius: var(--radius-lg);
  padding: 12px 38px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(244,162,97,0.12);
  transition: background 0.18s, color 0.18s, transform 0.13s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e68629;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(244,162,97,0.17);
}
.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #133152;
  transform: translateY(-2px) scale(1.04);
}
a.btn-primary, a.btn-secondary {
  text-align: center;
  text-decoration: none;
}

/* ========================
   FLEXBOX LAYOUT PATTERNS
======================== */
.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-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 24px;
  flex: 1 1 250px;
  min-width: 230px;
}
.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;
  padding: 20px;
  background: var(--color-accent, #F1FAEE);
  box-shadow: 0 3px 14px rgba(29,53,87,0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 600px;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MODULAR GRID FLEX UTILITIES */
.feature-grid, .benefit-grid, .destination-grid, .experience-types-list, .tour-list, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid > div,
.benefit-grid > div,
.destination-grid > div,
.experience-types-list > div,
.tour-list > div,
.faq-accordion > div {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 16px 18px 18px;
  flex: 1 1 235px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.feature-grid > div:hover,
.benefit-grid > div:hover,
.destination-grid > div:hover,
.experience-types-list > div:hover,
.tour-list > div:hover {
  box-shadow: 0 9px 34px rgba(244,162,97,0.16);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .benefit-grid img, .destination-grid img, .experience-types-list img {
  width: 42px;
  height: 42px;
}

/* ========================
   LISTS/TOPIC FILTERS
======================== */
ul, .topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  padding-left: 0;
}
ul li, .topic-filters li {
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 0;
  transition: background 0.15s, color 0.17s;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(244,162,97,0.065);
}
ul li:hover, .topic-filters li:hover {
  background: var(--color-secondary);
  color: #fff;
}
ul li:active, .topic-filters li:active {
  background: #e68629;
}

/* ========================
   FAQ ACCORDION
======================== */
.faq-accordion {
  width: 100%;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  cursor: pointer;
  transition: box-shadow 0.17s;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 18px rgba(244,162,97,0.16);
}
.faq-accordion h3 {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 600;
}
.faq-accordion p {
  margin-bottom: 0;
  color: var(--color-neutral-700);
  font-size: 1rem;
}

/* ========================
   FOOTER
======================== */
footer {
  background: var(--color-footer-bg, #f8ece2);
  padding: 38px 0 26px 0;
  color: var(--color-neutral-900);
  margin-top: 44px;
  border-top: 1.5px solid #f4a2612c;
  font-family: var(--font-body);
}
footer .container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 24px;
}
.footer-info img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  border-radius: 16px;
  background: #fff5e5;
}
.footer-info p {
  margin-bottom: 5px;
  color: var(--color-neutral-700);
  font-family: var(--font-body);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-links, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.footer-links a, .footer-legal a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 7px 14px;
  transition: background 0.16s, color 0.15s;
}
.footer-links a:hover, .footer-legal a:hover {
  background: var(--color-secondary);
  color: #fff;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  width: 35px;
  height: 35px;
  background: var(--color-accent);
  border-radius: 50%;
  padding: 6px;
  transition: background 0.2s, box-shadow 0.16s;
  box-shadow: 0 1px 7px rgba(29,53,87,0.08);
}
.footer-social a:hover img {
  background: var(--color-secondary);
}
@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    gap: 14px;
  }
  footer .content-wrapper {
    gap: 16px !important;
  }
}

/* ========================
   CONTACT INFO
======================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.contact-info p {
  color: var(--color-neutral-700);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ========================
   SPACING UTILITIES
======================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

/* MINIMUM GAP/MARGIN BETWEEN CARDS/SECTIONS */
section + section,
.card + .card,
.testimonial-card + .testimonial-card,
.benefit-grid > div + div,
.feature-grid > div + div,
.destination-grid > div + div,
.experience-types-list > div + div,
.tour-list > div + div {
  margin-top: 20px;
}

/* ========================
   TESTIMONIALS
======================== */
.testimonial-card {
  color: var(--color-neutral-900);
  background: var(--color-accent);
  border: 1.5px solid #f4a26138;
  box-shadow: 0 4px 21px rgba(244,162,97,0.12);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  max-width: 520px;
  font-size: 1.08rem;
  align-self: stretch;
  transition: box-shadow 0.15s, transform 0.13s;
}
.testimonial-card blockquote {
  background: none;
  border-left: none;
  padding: 0 0 0 0;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.testimonial-card .author {
  color: var(--color-secondary);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}
.testimonial-card img {
  display: inline-block;
  margin: 0 2px;
  width: 22px;
  height: 22px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(244, 162, 97, 0.13);
  transform: translateY(-3px) scale(1.012);
}

/* ========================
   RESPONSIVE DESIGN
======================== */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .card, .feature-grid > div, .benefit-grid > div, .destination-grid > div, .experience-types-list > div, .tour-list > div {
    min-width: 40vw;
    max-width: 100%;
    flex: 1 1 170px;
  }
}
@media (max-width: 768px) {
  .section, main section, .content-wrapper {
    padding: 26px 8px;
  }
  .content-grid,
  .feature-grid,
  .benefit-grid,
  .destination-grid,
  .experience-types-list,
  .tour-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-info, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .testimonial-card {
    max-width: 95vw;
    padding: 18px 8px;
  }
  h1 {
    font-size: 1.87rem;
  }
  h2 {
    font-size: 1.37rem;
  }
  .mobile-nav {
    margin-left: 12px;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section, main section {
    padding: 13px 2px;
  }
  h1 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.04rem;
    margin-bottom: 9px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 10px 22px;
  }
}

/* ========================
   COOKIE CONSENT BANNER
======================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff7ee;
  color: var(--color-primary);
  border-top: 2.5px solid var(--color-secondary);
  box-shadow: 0 -4px 22px rgba(244,162,97,0.22);
  z-index: 3000;
  padding: 28px 16px 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: center;
  transition: transform 0.37s cubic-bezier(.77,.2,.05,1.0);
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: var(--color-primary);
  font-size: 1.04rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button, .cookie-banner .btn-cookie-setting {
  padding: 8px 22px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-radius: 20px;
  font-weight: 600;
  border: none;
  margin: 0 7px 0 0;
  transition: background 0.16s, color 0.13s, transform 0.10s;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(244,162,97,0.10);
}
.cookie-banner .btn-cookie-accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .btn-cookie-accept:hover, .cookie-banner .btn-cookie-accept:focus {
  background: #e68629;
  color: #fff;
}
.cookie-banner .btn-cookie-reject {
  background: #dbe2ef;
  color: var(--color-primary);
}
.cookie-banner .btn-cookie-reject:hover, .cookie-banner .btn-cookie-reject:focus {
  background: #b8babd;
  color: #fff;
}
.cookie-banner .btn-cookie-setting {
  background: none;
  color: var(--color-primary);
  border: 1.1px solid var(--color-secondary);
}
.cookie-banner .btn-cookie-setting:hover, .cookie-banner .btn-cookie-setting:focus {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 17px 4vw;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 4000;
  transform: translate(-50%, -50%) scale(1);
  background: #fffefe;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 42px rgba(244,162,97,0.15), 0 4px 21px rgba(29,53,87,0.09);
  padding: 42px 32px 25px 32px;
  min-width: 320px;
  max-width: 96vw;
  transition: opacity 0.19s, transform 0.19s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.95);
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 6px;
  margin-top: 0;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.cookie-modal li {
  padding: 9px 0 6px 2px;
  color: var(--color-neutral-900);
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal label {
  font-weight: 500;
  color: var(--color-primary);
  margin-right: 8px;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-secondary);
  border-radius: 5px;
  margin-right: 6px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal button {
  padding: 9px 26px;
  font-size: 1rem;
  border-radius: 18px;
  font-weight: 600;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  background: var(--color-secondary);
  color: #fff;
  transition: background 0.16s
}
.cookie-modal button.btn-cookie-cancel {
  background: #e9ecef;
  color: var(--color-primary);
}
.cookie-modal button.btn-cookie-cancel:hover {
  background: #dbe2ef;
  color: var(--color-primary);
}
.cookie-modal button.btn-cookie-save {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-modal button.btn-cookie-save:hover {
  background: #e68629;
  color: #fff;
}
.cookie-modal .cookie-category-disabled {
  opacity: 0.7;
  color: #666;
  pointer-events: none;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 0;
  right: 0;
  margin: 14px 16px 0 0;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  border: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.33rem;
  box-shadow: 0 1px 7px rgba(29,53,87,0.09);
  cursor: pointer;
  z-index: 4100;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #e68629;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 15px 11px 18px 11px;
    min-width: 200px;
    max-width: 98vw;
  }
}

/* ========================
   TRANSITIONS & EFFECTS
======================== */
a, button, .btn-primary, .btn-secondary, .cookie-banner button, .footer-links a, .footer-legal a, .topic-filters li, .card, .testimonial-card {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.16s;
}

/* ========================
   Z-INDEX MANAGEMENT
======================== */
header { z-index: 100; }
.mobile-menu { z-index: 1300; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

/* ========================
   MISCELLANEOUS
======================== */
::-webkit-scrollbar {
  width: 11px;
  background: #FFF9F3;
  border-radius: 17px;
}
::-webkit-scrollbar-thumb {
  background: #F4A261;
  border-radius: 15px;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Hide outline on mouse interaction but keep for keyboard accessibility */
:focus:not(.focus-visible) {
  outline: none;
}

/* Ensure min height for touch targets (WCAG) */
nav a, .mobile-nav a, button {
  min-height: 40px;
}

/* ========================
   END OF STYLESHEET
======================== */