/*
 * Aanbodreis — Main Stylesheet
 * Design: Alpine Modernism — Swiss Grid Precision with Warmth
 * Primary: #1B3A6B (Deep Cobalt Blue)
 * Accent: #D4622A (Terracotta Orange)
 * Background: #FAFAF7 (Warm White)
 * Fonts: DM Serif Display (headings), DM Sans (body), Bebas Neue (numbers)
 */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: #FAFAF7;
  color: #1A1A2E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; }

/* ===== VARIABLES ===== */
:root {
  --cobalt: #1B3A6B;
  --cobalt-dark: #152d52;
  --cobalt-light: #2D4A7A;
  --terracotta: #D4622A;
  --terracotta-dark: #bf5522;
  --warm-white: #FAFAF7;
  --charcoal: #1A1A2E;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--cobalt); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,98,42,.35); }
.btn-outline { background: transparent; color: var(--cobalt); border-color: var(--cobalt); }
.btn-outline:hover { background: var(--cobalt); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-secondary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.btn-secondary:hover { background: var(--cobalt-dark); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex; align-items: center; gap: .75rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 2.5rem; height: 2px; background: var(--terracotta); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); margin-bottom: .75rem; }
.section-subtitle { font-size: 1.1rem; color: var(--slate); max-width: 560px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(27, 58, 107, 0.0);
  backdrop-filter: blur(0px);
  transition: all .35s ease;
  padding: 1.25rem 0;
}
.navbar.scrolled {
  background: rgba(27, 58, 107, 0.97);
  backdrop-filter: blur(12px);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: #fff; line-height: 1; }
.nav-logo-sub { font-size: .65rem; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: .25rem; flex: 1; justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  padding: .5rem .75rem; border-radius: 8px;
  transition: all var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--terracotta); border-radius: 1px;
}
.nav-arrow { font-size: .65rem; margin-left: .2rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + .5rem); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all .2s ease; border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li a {
  display: flex; align-items: center; gap: .6rem;
  color: var(--charcoal); padding: .6rem .9rem; border-radius: 8px;
  font-size: .9rem; transition: background var(--transition);
}
.dropdown-menu li a:hover { background: #F1F5F9; color: var(--cobalt); }

/* Language Switcher */
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; padding: .45rem .85rem; border-radius: 8px;
  font-size: .85rem; font-weight: 500; cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { background: rgba(255,255,255,.2); }
.lang-arrow { font-size: .6rem; }
.lang-dropdown {
  position: absolute; top: calc(100% + .5rem); right: 0;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 160px; padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all .2s ease; border: 1px solid var(--border);
}
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown li a {
  display: flex; align-items: center; gap: .6rem;
  color: var(--charcoal); padding: .55rem .9rem; border-radius: 8px;
  font-size: .875rem; transition: background var(--transition);
}
.lang-dropdown li a:hover, .lang-dropdown li a.active { background: #F1F5F9; color: var(--cobalt); font-weight: 600; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta { display: none; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cobalt); padding: 8rem 0 4rem;
}
.page-hero-label { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.page-hero-label::before { content: ''; display: block; width: 2.5rem; height: 2px; background: var(--terracotta); }
.page-hero-label span { color: var(--terracotta); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.2rem; max-width: 600px; }

/* ===== HERO (HOME) ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,58,107,.82) 0%, rgba(27,58,107,.55) 60%, rgba(0,0,0,.3) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  padding-top: 5rem;
}
.hero-label {
  display: flex; align-items: center; gap: .75rem;
  color: var(--terracotta); font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-label::before { content: ''; display: block; width: 2.5rem; height: 2px; background: var(--terracotta); }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem); color: #fff;
  margin-bottom: 1.5rem; max-width: 700px; line-height: 1.1;
}
.hero-sub {
  color: rgba(255,255,255,.8); font-size: 1.2rem; max-width: 560px;
  margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,.4); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--cobalt); padding: 2rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.1);
}
.stat-item {
  background: var(--cobalt); padding: 1.5rem 2rem; text-align: center;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  color: var(--terracotta); line-height: 1; margin-bottom: .25rem;
}
.stat-label { color: rgba(255,255,255,.7); font-size: .85rem; }

/* ===== DESTINATIONS GRID ===== */
.dest-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.dest-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; group: true;
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,58,107,.85) 0%, rgba(27,58,107,.2) 60%, transparent 100%);
  transition: background .3s;
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(27,58,107,.9) 0%, rgba(27,58,107,.4) 60%, transparent 100%); }
.dest-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem;
}
.dest-card-flag { font-size: 1.5rem; margin-bottom: .5rem; }
.dest-card-name { font-size: 1.5rem; color: #fff; margin-bottom: .3rem; }
.dest-card-desc { color: rgba(255,255,255,.75); font-size: .875rem; line-height: 1.5; margin-bottom: .75rem; display: none; }
.dest-card:hover .dest-card-desc { display: block; }
.dest-card-price {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--terracotta); color: #fff;
  font-size: .8rem; font-weight: 700; padding: .35rem .85rem; border-radius: 20px;
}
.dest-card-link {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  color: #fff; border: 1px solid rgba(255,255,255,.3);
  padding: .4rem 1rem; border-radius: 20px; font-size: .8rem; font-weight: 600;
  opacity: 0; transition: opacity var(--transition);
}
.dest-card:hover .dest-card-link { opacity: 1; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); transition: all var(--transition);
}
.service-card:hover { border-color: rgba(212,98,42,.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.5rem;
}
.service-card h3 { font-size: 1.3rem; color: var(--charcoal); margin-bottom: .5rem; }
.service-card p { color: var(--slate); font-size: .9rem; line-height: 1.65; }

/* ===== NO COMMISSION BANNER ===== */
.no-commission {
  background: var(--cobalt); padding: 4rem 0; text-align: center;
}
.no-commission h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.no-commission p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: 'DM Serif Display', serif; font-size: 4rem;
  color: var(--terracotta); opacity: .2; position: absolute; top: .5rem; left: 1.25rem;
  line-height: 1;
}
.testimonial-stars { color: #F59E0B; margin-bottom: .75rem; font-size: 1rem; }
.testimonial-text { color: var(--slate); font-size: .9rem; line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.testimonial-dest { font-size: .8rem; color: var(--slate-light); }

/* ===== BLOG GRID ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition); cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { position: relative; height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-cat {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--terracotta); color: #fff;
  font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: 20px;
}
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { display: flex; align-items: center; gap: .5rem; color: var(--slate-light); font-size: .78rem; margin-bottom: .6rem; }
.blog-card h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: .5rem; line-height: 1.35; transition: color var(--transition); }
.blog-card:hover h3 { color: var(--terracotta); }
.blog-card p { color: var(--slate); font-size: .85rem; line-height: 1.6; margin-bottom: .75rem; }
.blog-read-more { color: var(--terracotta); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: .3rem; }

/* ===== DESTINATION DETAIL ===== */
.dest-detail-hero {
  position: relative; height: 60vh; min-height: 400px; overflow: hidden;
}
.dest-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.dest-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,58,107,.8) 0%, rgba(0,0,0,.2) 100%);
}
.dest-detail-hero-content {
  position: absolute; bottom: 3rem; left: 0; right: 0;
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
}
.dest-detail-hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; }
.dest-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.dest-gallery img { border-radius: var(--radius); height: 200px; object-fit: cover; width: 100%; transition: transform .4s; cursor: pointer; }
.dest-gallery img:hover { transform: scale(1.03); }
.dest-highlights { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0; }
.dest-highlight-tag {
  display: flex; align-items: center; gap: .5rem;
  background: #F1F5F9; color: var(--cobalt);
  padding: .5rem 1rem; border-radius: 20px; font-size: .875rem; font-weight: 500;
}
.dest-highlight-tag::before { content: '✓'; color: var(--terracotta); font-weight: 700; }
.dest-price-card {
  background: var(--cobalt); color: #fff; border-radius: var(--radius-xl);
  padding: 2rem; position: sticky; top: 6rem;
}
.dest-price-card .price { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--terracotta); line-height: 1; }
.dest-price-card .price-label { color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: 1.5rem; }
.dest-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff; border-radius: var(--radius-lg); padding: 1.25rem;
  border: 1px solid var(--border); margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(212,98,42,.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-info-label { font-size: .72rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .2rem; }
.contact-info-value { font-weight: 600; color: var(--charcoal); }
.contact-info-sub { font-size: .85rem; color: var(--slate); }
.form-card { background: #fff; border-radius: var(--radius-xl); padding: 2.5rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--charcoal); margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: var(--charcoal); background: #fff; transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(27,58,107,.08); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  text-align: center; padding: 3rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: .5rem; }
.form-success p { color: var(--slate); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-xl); width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--terracotta); color: #fff; border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; text-align: center; box-shadow: var(--shadow-md);
}
.about-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; line-height: 1; }
.about-badge-label { font-size: .8rem; font-weight: 600; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.5rem;
  border: 1px solid var(--border); transition: all var(--transition);
}
.value-card:hover { border-color: rgba(212,98,42,.3); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: .4rem; }
.value-card p { font-size: .85rem; color: var(--slate); line-height: 1.6; }

/* ===== LEGAL PAGES ===== */
.legal-content {
  background: #fff; border-radius: var(--radius-xl); padding: 3rem;
  border: 1px solid var(--border); max-width: 800px; margin: 0 auto;
}
.legal-content h2 { font-size: 1.4rem; color: var(--charcoal); margin: 2rem 0 .75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--slate); line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; color: var(--slate); margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: .4rem; line-height: 1.7; }
.legal-content strong { color: var(--charcoal); font-weight: 600; }
.no-commission-box {
  background: var(--cobalt); color: #fff; border-radius: var(--radius-lg);
  padding: 1.75rem; margin-bottom: 2rem;
}
.no-commission-box h2 { color: #fff; margin-top: 0; }
.no-commission-box p { color: rgba(255,255,255,.8); margin-bottom: 0; }

/* ===== FOOTER ===== */
.footer { background: #0D1E3D; padding: 4rem 0 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo span { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: #fff; }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .875rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: all var(--transition);
}
.social-link:hover { background: var(--terracotta); color: #fff; }
.footer-col h4 { color: #fff; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-lang { display: flex; gap: .5rem; }
.footer-lang a { font-size: 1.1rem; opacity: .5; transition: opacity var(--transition); }
.footer-lang a:hover, .footer-lang a.active { opacity: 1; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9000;
  max-width: 420px; width: calc(100% - 3rem);
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,.18); border: 1px solid var(--border);
  overflow: hidden; animation: slideUp .4s ease;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-inner { padding: 0; }
.cookie-header {
  background: var(--cobalt); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.cookie-icon { font-size: 1.2rem; }
.cookie-header h3 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 600; flex: 1; }
.cookie-close { background: none; border: none; color: rgba(255,255,255,.6); cursor: pointer; font-size: 1rem; padding: .25rem; line-height: 1; transition: color var(--transition); }
.cookie-close:hover { color: #fff; }
.cookie-inner > p { padding: 1rem 1.25rem .5rem; color: var(--slate); font-size: .875rem; line-height: 1.6; }
.cookie-customize-btn {
  display: flex; align-items: center; gap: .4rem;
  background: none; border: none; color: var(--cobalt); font-size: .85rem; font-weight: 600;
  cursor: pointer; padding: .25rem 1.25rem; transition: color var(--transition);
}
.cookie-customize-btn:hover { color: var(--terracotta); }
.cookie-prefs { padding: .5rem 1.25rem; }
.cookie-pref-item {
  display: flex; align-items: flex-start; gap: .75rem;
  background: #F8FAFC; border-radius: 10px; padding: .75rem; margin-bottom: .5rem;
}
.cookie-toggle {
  width: 40px; height: 22px; border-radius: 11px; background: #CBD5E1;
  position: relative; cursor: pointer; flex-shrink: 0; transition: background var(--transition);
  margin-top: 2px;
}
.cookie-toggle.active { background: var(--terracotta); }
.cookie-toggle.locked { opacity: .6; cursor: not-allowed; background: var(--terracotta); }
.toggle-knob {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform var(--transition);
}
.cookie-toggle.active .toggle-knob { transform: translateX(18px); }
.cookie-pref-item strong { display: block; font-size: .85rem; color: var(--charcoal); margin-bottom: .2rem; }
.cookie-pref-item span { font-size: .78rem; color: var(--slate); }
.cookie-actions { display: flex; flex-direction: column; gap: .5rem; padding: .75rem 1.25rem 1.25rem; }
.cookie-save-row { padding: 0 1.25rem 1.25rem; }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-popup {
  background: #fff; border-radius: var(--radius-xl);
  max-width: 480px; width: 100%; overflow: hidden;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.exit-hero { position: relative; height: 160px; overflow: hidden; }
.exit-hero img { width: 100%; height: 100%; object-fit: cover; }
.exit-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,58,107,.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1rem 1.25rem;
}
.exit-badge {
  background: var(--terracotta); color: #fff;
  font-size: .8rem; font-weight: 700; padding: .35rem .9rem; border-radius: 20px;
}
.exit-close {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.exit-close:hover { background: rgba(255,255,255,.4); }
.exit-content { padding: 1.75rem; }
.exit-content h2 { font-size: 1.6rem; color: var(--charcoal); margin-bottom: .5rem; }
.exit-content p { color: var(--slate); font-size: .9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.exit-content form input {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: .95rem;
  color: var(--charcoal); margin-bottom: .75rem; outline: none; transition: border-color var(--transition);
}
.exit-content form input:focus { border-color: var(--cobalt); }
.exit-skip {
  display: block; width: 100%; text-align: center;
  color: var(--slate-light); font-size: .8rem; background: none; border: none;
  cursor: pointer; margin-top: .75rem; padding: .5rem; transition: color var(--transition);
}
.exit-skip:hover { color: var(--slate); }
.exit-success-msg { text-align: center; padding: 1rem 0; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%; background: #DCFCE7;
  color: #16A34A; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.exit-success-msg h3 { font-size: 1.4rem; color: var(--charcoal); margin-bottom: .5rem; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .dest-layout { grid-template-columns: 1fr; }
  .dest-price-card { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cobalt); padding: 6rem 2rem 2rem; z-index: 999; gap: .25rem; justify-content: flex-start; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: .75rem 1rem; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,.08); border: none; margin-top: .25rem; }
  .dropdown-menu li a { color: rgba(255,255,255,.75); }
  .hamburger { display: flex; z-index: 1000; }
  .nav-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .dest-gallery { grid-template-columns: 1fr; }
  .legal-content { padding: 1.5rem; }
  .cookie-banner { bottom: 0; right: 0; left: 0; max-width: 100%; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
  .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}
