/* -------------------------------------------------------------------------
   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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #F7F8FA;
  color: #31415B;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
a:focus { outline: 2px solid #E3C06D; outline-offset: 2px; }
img { max-width: 100%; display: block; border: 0; }
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}
button { cursor: pointer; }

/* -------------------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------------------*/
:root {
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Nunito', Arial, sans-serif;
  --primary: #204078;
  --secondary: #E3C06D;
  --accent: #F7F8FA;
  --pastel-lavender: #D9E6F7;
  --pastel-rose: #F6E3EA;
  --pastel-sky: #EBF8F8;
  --pastel-mint: #D3F1E7;
  --pastel-peach: #FFE0CC;
  --pastel-sand: #FAF2DD;
  --text-dark: #31415B;
  --text-light: #fff;
  --border-radius: 18px;
  --shadow: 0px 4px 24px 0px rgba(60, 72, 113, .09);
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--accent);
  font-size: 16px;
}
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: var(--primary);
  margin-bottom: 14px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, h5, h6 { font-family: var(--font-display); color: var(--primary); }
p, .subheadline, .subtitle {
  font-size: 1.07rem;
  color: #4A587A;
  margin-bottom: 10px;
}
.subheadline, .subtitle {
  font-weight: 500;
  color: #6083AB;
  font-size: 1.13rem;
}
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.06rem; }
  body { font-size: 15px; }
}

/* -------------------------------------------------------------------------
   GENERAL LAYOUT
---------------------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.26s, transform 0.22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0px 8px 36px 0px rgba(60,72,113,0.15);
  transform: translateY(-2px) scale(1.016);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section, .text-section, .team-list, .faq-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: var(--pastel-sand);
  border-radius: var(--border-radius);
  box-shadow: 0px 1px 12px 0px rgba(55,58,75,0.06);
  margin-bottom: 20px;
  min-width: 280px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .content-grid, .text-image-section, .team-list, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .section { padding: 28px 8px; margin-bottom: 36px; }
}

/* -------------------------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------------------------*/
header {
  background: var(--pastel-sky);
  box-shadow: 0 2px 10px 0 rgba(80, 120, 180, 0.06);
  position: relative;
  z-index: 200;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo img {
  height: 48px;
  transition: filter 0.18s;
}
.logo:hover img { filter: brightness(0.92); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 500;
}
.main-nav a {
  color: var(--primary);
  font-size: 1.06rem;
  position: relative;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.21s, color 0.21s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-mint);
  color: #168184;
}
.main-nav .cta.primary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.09rem;
  border-radius: 24px;
  padding: 10px 28px;
  margin-left: 8px;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  box-shadow: 0 2px 12px 0 rgba(60, 72, 113, .09);
  letter-spacing: 0.03em;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.19s, color 0.19s;
  z-index: 252;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #fff;
}
/* Hide nav on mobile, show burger */
@media (max-width: 940px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* ---------------- Mobile Menu Overlay -----------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  background: linear-gradient(133deg, #F6E3EA 0%, #D3F1E7 100%);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.72, 0.06, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 28px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.16s;
  border: none;
  z-index: 3010;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--primary);
}
.mobile-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.27rem;
  font-weight: 700;
  padding: 15px 0;
  border-radius: 14px;
  transition: background 0.19s, color 0.17s;
  min-width: 220px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #178466;
  background: #fff;
}
@media (min-width: 941px) {
  .mobile-menu { display: none !important; }
}

/* -------------------------------------------------------------------------
   HERO SECTIONS
---------------------------------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, #F6E3EA 0%, #D3F1E7 80%);
  padding: 70px 0 60px 0;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 13px 40px 0 rgba(220, 230, 250, 0.19);
  margin-bottom: 56px;
}
.hero .container { text-align: center; }
.hero h1 { color: var(--primary); margin-bottom: 10px; }
.hero .subheadline {
  margin-bottom: 28px;
  display: block;
  color: #336699;
  font-size: 1.13rem;
  font-weight: 500;
}
@media (max-width: 950px) {
  .hero { padding: 48px 0 44px 0; }
  .hero .container { padding: 0 7px; }
}
@media (max-width: 600px) {
  .hero { padding: 29px 0 18px 0; border-radius: 0 0 20px 20px; }
}

/* -------------------------------------------------------------------------
   BUTTONS & CTA
---------------------------------------------------------------------------*/
.cta, .cta.primary, .cta.secondary {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 38px;
  border-radius: 32px;
  font-size: 1.13rem;
  margin: 12px 1px 0 0;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 16px 0 rgba(170, 180, 190, 0.09);
  border: none;
  transition: background 0.22s, color 0.18s, box-shadow 0.15s, transform 0.19s;
  display: inline-block;
}
.cta.secondary {
  background: var(--pastel-peach);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cta.primary:hover, .cta.secondary:hover, .cta.primary:focus, .cta.secondary:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(50, 70, 110, 0.13);
  transform: translateY(-2px) scale(1.018);
}
.cta.secondary:hover, .cta.secondary:focus {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--primary);
}

/* -------------------------------------------------------------------------
   FEATURES, CARDS, TEASERS
---------------------------------------------------------------------------*/
.feature-grid, .experience-teasers, .country-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 24px 0;
}
.feature-grid li, .experience-teasers li, .country-highlights li {
  background: var(--pastel-rose);
  border-radius: var(--border-radius);
  flex: 1 1 230px;
  min-width: 230px;
  padding: 22px 20px 20px 20px;
  box-shadow: 0px 4px 18px 0px rgba(220, 180, 220, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, background 0.21s;
}
.feature-grid li:hover,
.experience-teasers li:hover,
.country-highlights li:hover {
  background: var(--pastel-lavender);
  box-shadow: var(--shadow);
}
.feature-grid img, .destination-features img {
  height: 40px;
  width: 40px;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .feature-grid, .experience-teasers, .country-highlights {
    flex-direction: column;
    gap: 13px;
  }
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 18px 0;
}
.article-grid article {
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  flex: 1 1 280px;
  min-width: 230px;
  transition: box-shadow 0.2s, background 0.19s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-grid article h3 {
  margin-bottom: 9px;
  color: var(--primary);
  font-weight: 700;
}
.article-grid article a {
  color: var(--secondary);
  font-weight: 700;
  margin-top: 7px;
  transition: color 0.18s, text-decoration 0.14s;
}
.article-grid article a:hover { color: #f397b6; text-decoration: underline; }
@media (max-width: 768px) {
  .article-grid { flex-direction: column; gap: 13px; }
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 18px 0;
}
.team-list li {
  background: var(--pastel-sand);
  border-radius: var(--border-radius);
  padding: 22px 20px;
  box-shadow: 0px 3px 14px 0px rgba(80,154,180,0.06);
  min-width: 200px;
  flex: 1 1 210px;
}

/************************** Destinations Tabs ***************************/
.continent-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
  margin-top: 4px;
}
.continent-tabs button {
  background: var(--pastel-mint);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  padding: 11px 34px;
  border-radius: 48px;
  transition: background 0.19s, color 0.17s, transform 0.11s;
}
.continent-tabs button:hover, .continent-tabs button:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  outline: 2px solid #cabb86;
}
@media (max-width: 768px) {
  .continent-tabs { gap: 10px; }
  .continent-tabs button { font-size: 0.97rem; padding: 9px 16px; }
}

/************************** Destinations Features ***************************/
.destination-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 19px;
}
.destination-features li {
  background: var(--pastel-peach);
  border-radius: 15px;
  padding: 16px 17px 16px 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: var(--primary);
}
div.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 23px 0 0 0;
}
div.benefits-grid > div {
  background: var(--pastel-mint);
  border-radius: 17px;
  box-shadow: var(--shadow);
  padding: 20px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
div.benefits-grid > div img {
  height: 36px;
  margin-bottom: 4px;
}
div.benefits-grid > div span {
  font-family: var(--font-display); font-weight: 700; color: var(--primary);
}
/************************** Step by step (tour-su-misura) ***************************/
.step-by-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  margin-left: 11px;
}
.step-by-step li {
  background: var(--pastel-peach);
  border-radius: 16px;
  padding: 10px 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}
/************************** FAQ snippet & list ***************************/
.faq-snippet {
  margin-top: 22px;
  background: var(--pastel-rose);
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: 0px 2px 8px 0px rgba(190,180,170,0.06);
}
.faq-list li,
.faq-snippet p {
  margin-bottom: 13px;
}

/* -------------------------------------------------------------------------
   ACCENT, LIGHT, AND SPECIAL SECTION BACKGROUNDS
---------------------------------------------------------------------------*/
.accent {
  background: linear-gradient(120deg, #D3F1E7 0%, #F6E3EA 100%);
  padding: 45px 0;
  border-radius: 22px;
  margin-bottom: 45px;
}
.light-bg {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 4px 20px 0px rgba(196, 210, 239, 0.06);
  padding: 40px 0;
}
@media (max-width: 768px) {
  .accent { padding: 25px 0; margin-bottom: 22px; border-radius: 14px; }
  .light-bg { padding: 21px 0; border-radius: 10px; }
}

/* -------------------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------------------*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 23px 0 10px 0;
}
.testimonial-card {
  background: var(--pastel-sand);
  border-radius: var(--border-radius);
  box-shadow: 0px 6px 28px 0px rgba(170,180,190,0.09);
  min-width: 220px;
  min-height: 120px;
  color: var(--text-dark);
  transition: box-shadow 0.19s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0px 12px 38px 0px rgba(120,120,140,0.13);
  transform: translateY(-1px) scale(1.022);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #3A3F55;
}
.testimonial-meta {
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
  font-size: 0.98rem;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .testimonial-slider { flex-direction: column; gap: 14px; }
}

/* -------------------------------------------------------------------------
   CTA BANNER
---------------------------------------------------------------------------*/
.cta-banner {
  text-align: center;
  padding: 66px 0 53px 0;
  border-radius: 23px;
  margin-top: 30px;
  margin-bottom: 56px;
  background: linear-gradient(120deg, #F6E3EA 0%, #D3F1E7 70%);
  box-shadow: 0 6px 28px 0 rgba(220,210,230,0.10);
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 19px;
}
.cta-banner p { font-size: 1.1rem; }
@media (max-width: 768px) {
  .cta-banner { padding: 26px 0 18px 0; border-radius: 11px; margin-bottom: 32px; }
  .cta-banner h2 { font-size: 1.44rem; }
}

/* -------------------------------------------------------------------------
   FOOTER
---------------------------------------------------------------------------*/
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 36px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 2 1 230px;
  min-width: 180px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-brand img { height: 40px; margin-bottom: 7px; }
.footer-brand p { color: #e8e9ef; }
.footer-links {
  flex: 1 1 170px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #F7F8FA;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s;
  opacity: 0.89;
}
.footer-links a:hover, .footer-links a:focus { color: var(--secondary); opacity: 1; }
.footer-contact {
  flex: 2 1 280px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact p, .footer-contact a {
  color: #F7F8FA;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px; height: 20px;
  margin-right: 2px;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 21px; }
  .footer-brand, .footer-links, .footer-contact { min-width: 0; max-width: 100%; }
}

/* -------------------------------------------------------------------------
   THANK YOU PAGE
---------------------------------------------------------------------------*/
.thank-you {
  min-height: 44vh;
  padding: 84px 0 36px 0;
  text-align: center;
}
.thank-you h1 {
  color: var(--primary); margin-bottom: 13px;
}
.thank-you .confirmation-message {
  color: #6083AB;
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.thank-you .next-steps { margin-bottom: 19px; }
.thank-you .cta.primary { margin-top: 22px; }

/* -------------------------------------------------------------------------
   COOKIE CONSENT BANNER + MODAL
---------------------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #D3F1E7 0%, #F6E3EA 100%);
  color: var(--primary);
  border-radius: 14px 14px 0 0;
  box-shadow: 0px -4px 32px 0px rgba(60, 72, 113, 0.12);
  z-index: 5000;
  padding: 28px 16px 19px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: bottom 0.22s, opacity 0.23s;
  font-size: 1rem;
  animation: cookieFadeIn 0.7s ease-in;
}
@keyframes cookieFadeIn {
  from { opacity: 0; bottom: -150px; }
  to { opacity: 1; bottom: 0; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 9px 19px;
  border-radius: 24px;
  border: none;
  margin-top: 6px;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.18s, color 0.17s, transform 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--secondary);
  margin-left: 9px;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  border-color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    padding: 19px 8px 11px 8px;
    gap: 16px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-buttons { width: 100%; justify-content: flex-start; gap: 9px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(52,64,70,0.22);
  z-index: 5999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: linear-gradient(112deg, #F6E3EA 0%, #D3F1E7 100%);
  border-radius: 20px;
  padding: 32px 30px 28px 30px;
  min-width: 320px;
  min-height: 300px;
  max-width: 95vw;
  max-height: 84vh;
  box-shadow: 0 14px 60px 0 rgba(60,72,113,0.15);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  z-index: 6100;
  animation: cookieModalFadeIn 0.3s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}
.cookie-modal form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--pastel-mint);
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 1rem;
  font-family: var(--font-display);
  width: 100%;
  font-weight: 600;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: var(--primary);
  margin-top: 2px;
  margin-left: 0;
}
.cookie-modal .category-desc {
  font-size: 0.96rem;
  color: #466699;
  font-weight: 400;
  margin-left: 38px;
  margin-bottom: 5px;
}
.cookie-modal .essential {
  color: #238663;
}
.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-buttons button {
  padding: 11px 28px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 21px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 40px;
  font-size: 1.24rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 600px) {
  .cookie-modal { padding: 22px 8px 16px 14px; min-width: 0; }
}

/* -------------------------------------------------------------------------
   FORMS (newsletter, contact)
---------------------------------------------------------------------------*/
input, textarea, select {
  border-radius: 10px;
  border: 1.5px solid var(--pastel-sky);
  padding: 12px 15px;
  margin-bottom: 13px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  color: var(--primary);
  resize: vertical;
  transition: border-color 0.18s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0px 2px 10px 0px rgba(200,175,210,0.13);
}
label {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   MISCELLANEOUS, SPACING, UTILITIES
---------------------------------------------------------------------------*/
.text-section { flex-direction: column; align-items: flex-start; gap: 14px; }
li, ul li { margin-bottom: 7px; }
@media (max-width: 768px) {
  .text-section { gap: 7px; }
}
hr {
  border: none;
  border-bottom: 1.5px solid var(--pastel-lavender);
  margin: 20px 0;
}
strong { color: var(--primary); }

/* Prevent overlapping & ensure consistent spacing */
.section, .card, .card-container, .testimonial-card, .feature-grid, .accent, .light-bg,
.cta-banner, .article-grid, .team-list, .cookie-banner, .content-grid, .experience-teasers,
.benefits-grid, .destination-features ul {
  margin-bottom: 24px;
  gap: 20px;
}

/* Z-index layering */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: inherit; }

/* -------------------------------------------------------------------------
   TRANSITIONS & MICRO-INTERACTIONS
---------------------------------------------------------------------------*/
.card, .feature-grid li, .experience-teasers li, .testimonial-card, .article-grid article, .team-list li {
  transition: box-shadow 0.22s, background 0.18s, transform 0.13s;
}
.cta, .cta.primary, .cta.secondary, button, .continent-tabs button {
  transition: background 0.22s, color 0.18s, box-shadow 0.18s, border 0.15s, transform 0.13s;
}
/* Animate entry of section content */
.section, .hero, .accent, .cta-banner, .light-bg {
  animation: fadeinSection 0.68s cubic-bezier(0.82,0.05,0.46,1);
}
@keyframes fadeinSection {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity:1; transform:none; }
}

/* -------------------------------------------------------------------------
   PRINT SUPPORT
---------------------------------------------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, .hero, .accent, .cta-banner, .light-bg { background: #fff !important; box-shadow: none !important; }
}
