/* =========================================
   Morocco AutoGuide — Design System CSS
   Colors from Blueprint:
   --chefchaouen-blue: #2562B8
   --sky-blue: #BFD8FE
   --desert-terracotta: #C2410C
   --zellige-gold: #D97706
   --near-black: #111827
   Font: Playfair Display (headings) + Plus Jakarta Sans (body)
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2562B8;
  --blue-light: #BFD8FE;
  --blue-dark: #1a4a8a;
  --terracotta: #C2410C;
  --terracotta-light: #f97316;
  --gold: #D97706;
  --gold-light: #fbbf24;
  --near-black: #111827;
  --dark: #1f2937;
  --mid: #374151;
  --muted: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --gradient-hero: linear-gradient(135deg, rgba(17,24,39,0.82) 0%, rgba(37,98,184,0.55) 100%);
  --gradient-gold: linear-gradient(135deg, #D97706, #fbbf24);
  --gradient-terra: linear-gradient(135deg, #C2410C, #f97316);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--near-black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ---- Utility Classes ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* ---- Section Labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-label.gold {
  background: #fef3c7;
  color: #92400e;
}
.section-label.terra {
  background: #fef2ef;
  color: var(--terracotta);
}

/* ---- Section Headers ---- */
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--near-black); margin-bottom: 16px; }
.section-header p { font-size: 1.125rem; color: var(--muted); max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,98,184,0.38);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,98,184,0.46);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217,119,6,0.38);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,119,6,0.5);
}

.btn-terra {
  background: var(--gradient-terra);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(194,65,12,0.38);
}
.btn-terra:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194,65,12,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--near-black);
  border: 2px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: rgba(17,24,39,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; }
.nav-logo .logo-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); font-family: 'Plus Jakarta Sans', sans-serif; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 4px;
}
.lang-btn {
  background: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--blue);
  color: var(--white);
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(217,119,6,0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(217,119,6,0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO SECTION ---- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=NMYcF3v6L7BmPKiad7TEerRstzn6sUuIOqT%2F%2B%2BlXt3DqlXeu6ykaL5mq4jk0ZBXUp5oJ8sE51gU6mV3q%2F9MotdC5%2FVLmd6YZLnj6W708FE%2FbhYVWz51O0t2rEtt%2FVpa11HYBYHtRlKW%2BtgiQbNvos0eON%2FY%2FAgeUDPWQt9KW9Q%3D%3D&u2=2SH02wuxOG7yFaiC&width=2560');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(217,119,6,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,98,184,0.22) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,6,0.2);
  border: 1px solid rgba(217,119,6,0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-title .accent { color: var(--gold-light); }
.hero-title .accent-blue { color: var(--blue-light); }

.hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.stat-item {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Right — Quick Wizard Card */
.hero-right {}

.hero-card {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.6);
}

.hero-card-title {
  font-size: 1.3rem;
  color: var(--near-black);
  margin-bottom: 8px;
}
.hero-card-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.quick-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group select,
.form-group input {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--near-black);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,98,184,0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.quick-form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-gentle 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}
@keyframes bounce-gentle {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- FEATURES STRIP ---- */
#features-strip {
  background: var(--near-black);
  padding: 28px 0;
}
.features-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.strip-icon {
  width: 36px; height: 36px;
  background: rgba(217,119,6,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.strip-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.15);
}

/* ---- DESTINATIONS ---- */
#destinations { background: var(--white); }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  aspect-ratio: 4/3;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.dest-card.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

.dest-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.08); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.85) 0%, rgba(0,0,0,0.08) 60%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(17,24,39,0.92) 0%, rgba(17,24,39,0.3) 50%, transparent 100%);
}

.dest-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}

.dest-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(217,119,6,0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
}

.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}
.dest-card.featured .dest-name { font-size: 2rem; }

.dest-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.dest-card:hover .dest-desc { max-height: 60px; opacity: 1; }

.dest-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.dest-meta span { display: flex; align-items: center; gap: 5px; }
.dest-meta i { color: var(--gold); }

.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--near-black);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.dest-card:hover .dest-cta { opacity: 1; transform: translateY(0); }

/* ---- MAP SECTION ---- */
#explore-map {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}

.map-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,98,184,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(217,119,6,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.map-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
}

.map-left {}
.map-left .section-header h2 { color: var(--white); }
.map-left .section-header p { color: rgba(255,255,255,0.65); }

.region-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.region-item:hover,
.region-item.active {
  background: rgba(37,98,184,0.2);
  border-color: rgba(37,98,184,0.5);
}
.region-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.region-item.active .region-dot { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.region-name {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.region-count {
  margin-left: auto;
  background: rgba(217,119,6,0.18);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

/* SVG Map */
.map-right {}
.map-container {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow: hidden;
}

.morocco-map-svg {
  width: 100%;
  fill: rgba(37,98,184,0.25);
  stroke: rgba(37,98,184,0.6);
  stroke-width: 1.5;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}
.map-pin:hover { transform: translate(-50%, -110%) scale(1.15); }

.pin-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(217,119,6,0.8);
  animation: pin-pulse 2s ease-in-out infinite;
}
.pin-label {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--near-black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(217,119,6,0.5);
}
@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(217,119,6,0.8); }
  50% { box-shadow: 0 0 28px rgba(217,119,6,1); }
}

/* ---- AI WIZARD SECTION ---- */
#ai-wizard {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.wizard-bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(217,119,6,0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 85% 15%, rgba(37,98,184,0.2) 0%, transparent 40%);
  pointer-events: none;
}

.wizard-header { margin-bottom: 56px; }
.wizard-header h2 { color: var(--white); }
.wizard-header p { color: rgba(255,255,255,0.65); }

/* Steps bar */
.wizard-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.step-item.active .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 24px rgba(217,119,6,0.6);
}
.step-item.done .step-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.step-item.active .step-label { color: var(--gold-light); }
.step-item.done .step-label { color: var(--blue-light); }

.step-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 12px;
  margin-bottom: 28px;
  max-width: 80px;
  transition: var(--transition);
}
.step-connector.done { background: var(--blue); }

/* Wizard Panel */
.wizard-panel-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.wizard-panel {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: none;
}
.wizard-panel.active { display: block; }

.wizard-panel h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.wizard-panel .panel-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* City Selection Grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.city-option {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 3px solid transparent;
  transition: var(--transition);
}
.city-option.selected { border-color: var(--gold); }
.city-option.selected::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 26px; height: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}

.city-option img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.city-option:hover img { transform: scale(1.08); }

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
}
.city-name {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

/* Budget & Preferences */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.budget-card {
  padding: 24px 20px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}
.budget-card:hover { border-color: rgba(255,255,255,0.3); }
.budget-card.selected {
  border-color: var(--gold);
  background: rgba(217,119,6,0.12);
}
.budget-icon { font-size: 1.8rem; margin-bottom: 8px; }
.budget-label { font-weight: 700; color: var(--white); margin-bottom: 4px; }
.budget-range { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.pref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.pref-tag {
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  transition: var(--transition);
}
.pref-tag:hover { border-color: rgba(255,255,255,0.3); }
.pref-tag.selected {
  border-color: var(--blue);
  background: rgba(37,98,184,0.2);
  color: var(--blue-light);
}

/* Date pickers */
.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.wizard-input-group { display: flex; flex-direction: column; gap: 8px; }
.wizard-input-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wizard-input-group input {
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.wizard-input-group input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,98,184,0.2);
}
.wizard-input-group input::-webkit-calendar-picker-indicator { filter: invert(1); }

/* Duration slider */
.duration-slider-wrap { margin-bottom: 32px; }
.slider-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 8px; }
.duration-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  font-weight: 700;
  margin: 16px 0 8px;
}
.duration-value span { font-size: 1.1rem; color: rgba(255,255,255,0.6); font-family: 'Plus Jakarta Sans', sans-serif; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 16px rgba(217,119,6,0.7);
}

/* Result panel */
.wizard-result {
  background: linear-gradient(135deg, rgba(37,98,184,0.15), rgba(217,119,6,0.1));
  border: 1px solid rgba(217,119,6,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.result-icon { font-size: 3rem; margin-bottom: 16px; }
.wizard-result h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.wizard-result p { color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.8; }

.result-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.highlight-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
}
.highlight-icon { font-size: 1.4rem; margin-bottom: 8px; }
.highlight-title { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.highlight-val { font-weight: 700; color: var(--white); }

.result-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.wizard-nav .btn-prev {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.wizard-nav .btn-prev:hover { background: rgba(255,255,255,0.14); }

/* ---- PRICE COMPARISON ---- */
#price-compare { background: var(--light); }

.price-hero {
  background: var(--gradient-terra);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: var(--white);
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.price-hero::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.price-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; right: 80px;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.price-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.price-hero h3 { font-size: 1.8rem; margin-bottom: 8px; }
.price-hero p { opacity: 0.85; font-size: 0.95rem; }
.cache-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.cache-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Comparison tabs */
.compare-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.compare-tab {
  padding: 10px 22px;
  border-radius: 8px;
  background: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-tab.active { background: var(--blue); color: var(--white); box-shadow: 0 3px 12px rgba(37,98,184,0.3); }
.compare-tab:hover:not(.active) { background: var(--light); color: var(--near-black); }

.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.price-card.best-value { border-color: var(--gold); }

.best-label {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.provider-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.provider-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.provider-name { font-weight: 700; font-size: 0.95rem; }
.provider-type { font-size: 0.78rem; color: var(--muted); }

.price-main { margin-bottom: 20px; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1;
}
.price-currency { font-size: 1.2rem; color: var(--muted); }
.price-per { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--dark);
}
.price-features li i { color: #22c55e; font-size: 0.85rem; }
.price-features li.neg i { color: #ef4444; }
.price-features li.neg { color: var(--muted); }

.price-book { width: 100%; justify-content: center; padding: 13px; }

.price-refresh {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.refresh-btn {
  background: none;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.refresh-btn:hover { text-decoration: underline; }

/* ---- TRAVEL GUIDES / BLOG ---- */
#travel-guides { background: var(--white); }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.guide-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.guide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.guide-card:hover .guide-img { transform: scale(1.06); }

.guide-category {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.guide-category.history { background: rgba(217,119,6,0.85); color: var(--white); }
.guide-category.food { background: rgba(194,65,12,0.85); color: var(--white); }
.guide-category.adventure { background: rgba(37,98,184,0.85); color: var(--white); }
.guide-category.culture { background: rgba(17,24,39,0.8); color: var(--white); }

.guide-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.guide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.guide-meta span { display: flex; align-items: center; gap: 4px; }

.guide-title {
  font-size: 1.15rem;
  color: var(--near-black);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: var(--transition);
}
.guide-card:hover .guide-title { color: var(--blue); }

.guide-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.guide-author { display: flex; align-items: center; gap: 8px; }
.author-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name { font-size: 0.82rem; font-weight: 600; }
.read-more {
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.guide-card:hover .read-more { gap: 8px; }

/* ---- TESTIMONIALS ---- */
#testimonials {
  background: linear-gradient(135deg, #f0f7ff 0%, #fef3e2 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232562B8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.testimonials-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37,98,184,0.1);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.quote-icon {
  font-size: 3rem;
  color: var(--blue-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.stars i { color: var(--gold); font-size: 0.9rem; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-light);
}
.t-name { font-weight: 700; font-size: 0.9rem; }
.t-origin { font-size: 0.78rem; color: var(--muted); }

.testimonial-flag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.4rem;
}

/* ---- SEO / SCHEMA SECTION ---- */
#seo-trust {
  background: var(--near-black);
  padding: 80px 0;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.seo-stat {
  background: rgba(255,255,255,0.04);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.seo-stat:hover { background: rgba(37,98,184,0.12); }
.seo-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.seo-num span { font-size: 1.5rem; }
.seo-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- NEWSLETTER ---- */
#newsletter {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a3a6e 50%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(217,119,6,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(37,98,184,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.newsletter-inner h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 16px; }
.newsletter-inner p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 20px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.15); }

.lang-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.lang-icons .flag { font-size: 1.2rem; }

/* ---- FOOTER ---- */
footer {
  background: #090e18;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 24px; }

.social-links {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-langs { display: flex; gap: 12px; }
.footer-langs a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-langs a:hover { color: var(--white); }

.hreflang-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}
.hreflang-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- MOBILE NAV ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(9,14,24,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-close:hover { background: var(--terracotta); }

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,98,184,0.4);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: 1.1rem;
}
#back-to-top.visible { opacity: 1; pointer-events: all; }
#back-to-top:hover { background: var(--blue-dark); transform: translateY(-4px); }

/* ---- ZELLIGE PATTERN DIVIDER ---- */
.zellige-divider {
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 33%, var(--terracotta) 66%, var(--blue) 100%);
  background-size: 300% 100%;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- ZELLIGE GEOMETRIC PATTERN ---- */
.zellige-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(217,119,6,0.07)' stroke-width='0.5'%3E%3Cpolygon points='40,5 75,22 75,58 40,75 5,58 5,22'/%3E%3Cpolygon points='40,15 65,27 65,53 40,65 15,53 15,27'/%3E%3Cpolygon points='40,25 55,32 55,48 40,55 25,48 25,32'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}

/* ---- LOADING SKELETON ---- */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- FLOATING BADGE (hero decorative) ---- */
.floating-badge {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  animation: float-gentle 3s ease-in-out infinite;
  z-index: 3;
}
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.floating-badge.badge-1 { bottom: 140px; left: 48px; animation-delay: 0s; }
.floating-badge.badge-2 { top: 140px; right: 0; animation-delay: 1.5s; display:none; }

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---- SELECTION COLOR ---- */
::selection { background: rgba(217,119,6,0.35); color: var(--white); }

/* ---- PRINT STYLES ---- */
@media print {
  #navbar, .scroll-indicator, #back-to-top, #newsletter { display: none !important; }
  #hero { min-height: auto; padding: 40px 0; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 500px; margin: 0 auto; width: 100%; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.featured { grid-row: span 1; }
  .map-layout { grid-template-columns: 1fr; gap: 40px; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-layout { grid-template-columns: 1fr 1fr; }
  .seo-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .result-highlights { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .destinations-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .testimonials-layout { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .budget-grid { grid-template-columns: 1fr; }
  .result-highlights { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .price-hero-inner { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .wizard-panel { padding: 28px 20px; }
  .date-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .seo-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
