/* ==========================================================================
   JAN THIEL SCOOTERS — THEME STYLESHEET
   Restored to the original prototype's dark "Premium Sunset" look
   (near-black background, orange as the dominant accent, sand-gold /
   ocean-blue secondaries) applied site-wide, not just to Harley cards.
   ========================================================================== */

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --bg-primary: #0a0d10;
  --bg-secondary: #12161b;
  --bg-tertiary: #192027;

  --color-primary: #ff6b00;      /* Electric Sunset Orange */
  --color-primary-rgb: 255, 107, 0;
  --color-secondary: #e0a96d;    /* Sand Gold */
  --color-secondary-rgb: 224, 169, 109;
  --color-accent: #00a8ff;       /* Ocean Blue */
  --color-accent-rgb: 0, 168, 255;
  --color-success: #2ecc71;

  --harley-bg: #050608;          /* deepest black, Harley "beyond nature" tier */
  --harley-chrome: #e0a96d;

  --text-white: #ffffff;
  --text-gray-light: #e2e8f0;
  --text-gray: #94a3b8;
  --text-gray-dark: #64748b;

  --glass-bg: rgba(20, 26, 33, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-gray-light);
  font-family: var(--font-body);
}

body { overflow-x: hidden; line-height: 1.6; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

p { color: var(--text-gray); margin-bottom: 1rem; }

a { color: var(--color-secondary); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--color-primary); }

.text-accent { color: var(--color-primary); }

img { max-width: 100%; display: block; }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.max-width-700 { max-width: 700px; }
.max-width-900 { max-width: 900px; }

.section { padding: 6rem 0; position: relative; border-bottom: 1px solid rgba(255,255,255,0.03); }
.grid { display: grid; gap: 3rem; }
.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.align-center { align-items: center; }
.text-center { text-align: center; }
.flex-row { display: flex; align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }

/* --- Section Headers --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #d85b00 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--color-primary-rgb), 0.4); color: var(--text-white); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

.btn-block { display: flex; width: 100%; }

/* --- Header & Nav --- */
#main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; transition: var(--transition-smooth); }

.header-glass {
  background: rgba(10, 13, 16, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.25rem 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--text-white); letter-spacing: -0.03em; }
.logo img { max-height: 69px; width: auto; }
.logo-accent { color: var(--color-primary); }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links-list { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links-list li { list-style: none; }
.nav-link { font-family: var(--font-heading); color: var(--text-gray); font-weight: 600; font-size: 0.95rem; transition: var(--transition-fast); }
.nav-link:hover { color: var(--text-white); }

.btn-nav {
  background: var(--color-primary);
  color: var(--text-white);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.btn-nav:hover { background: var(--text-white); color: var(--bg-primary); }

.lang-switcher { display: flex; gap: 0.5rem; margin-left: 0.5rem; }
.lang-switcher a { font-family: var(--font-heading); font-size: 0.8rem; color: var(--text-gray); padding: 0.25rem 0.4rem; }
.lang-switcher a.active { color: var(--color-primary); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle .bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--text-white); transition: var(--transition-smooth); }

/* --- Hero --- */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #050608;
}

.hero-bg-image { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; z-index: 1; }
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 60% 40%, rgba(var(--color-accent-rgb), 0.12) 0%, rgba(var(--color-primary-rgb), 0.08) 50%, var(--bg-primary) 100%);
}

.hero-content { position: relative; z-index: 10; text-align: center; }

.hero-title { font-size: 5rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 2rem; }
.hero-title .text-accent {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle { font-size: 1.3rem; color: var(--text-gray-light); max-width: 750px; margin: 0 auto 3rem; line-height: 1.5; }

.hero-actions { display: flex; gap: 1.5rem; justify-content: center; }

/* --- Glass Cards --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 3rem;
}

/* --- Story Section --- */
.story-section { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.story-brand-mark { display: block; width: 260px; max-width: 80%; height: auto; margin: 0; }
.lead { font-size: 1.25rem; color: var(--text-white); font-weight: 500; margin-bottom: 1.5rem; }

.story-highlights { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.highlight-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.highlight-icon {
  background: rgba(224, 169, 109, 0.1);
  border: 1px solid rgba(224, 169, 109, 0.2);
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem; flex-shrink: 0;
}
.highlight-icon svg { width: 22px; height: 22px; color: var(--color-secondary); }
.highlight-item h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }

.story-image-container {
  position: relative; height: 450px;
  background: radial-gradient(circle at center, rgba(var(--color-primary-rgb), 0.1) 0%, transparent 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.story-card-glass {
  width: 100%; max-width: 420px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: var(--transition-smooth);
}
.story-card-glass:hover { transform: rotate(0deg) translateY(-10px); box-shadow: 0 30px 60px rgba(255, 107, 0, 0.15); }
.sc-header { background: rgba(255, 255, 255, 0.02); padding: 0.75rem 1.5rem; display: flex; gap: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sc-dot { width: 10px; height: 10px; border-radius: 50%; }
.sc-dot.red { background: #ff5f56; } .sc-dot.yellow { background: #ffbd2e; } .sc-dot.green { background: #27c93f; }
.sc-content { padding: 2.5rem; }
.sc-content h3 { font-family: var(--font-body); font-weight: 400; font-style: italic; font-size: 1.35rem; line-height: 1.6; margin-bottom: 1.5rem; color: var(--text-white); }
.sc-author { font-family: var(--font-heading); font-weight: 600; color: var(--color-secondary); }

/* --- Fleet --- */
.fleet-section { background: var(--bg-primary); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; margin-top: 5rem; }

.fleet-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
}
.fleet-card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.1); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); }

.card-inner { padding: 2rem; display: flex; flex-direction: column; height: 100%; }
.card-image-wrapper { height: 200px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.75rem; background: var(--bg-tertiary); }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 4rem; background: var(--bg-tertiary); }
.card-image-placeholder svg { width: 64px; height: 64px; color: var(--text-gray-dark); }

.card-header-info { margin-bottom: 1.25rem; }

.animal-tag { display: inline-block; font-size: 0.75rem; text-transform: uppercase; font-family: var(--font-heading); font-weight: 800; letter-spacing: 0.08em; padding: 0.35rem 0.75rem; border-radius: var(--radius-full); margin-bottom: 0.75rem; }
.animal-tag.apex { background: rgba(255, 255, 255, 0.08); color: var(--text-white); border: 1px solid rgba(255, 255, 255, 0.15); }
.animal-tag.trupial_125cc { background: rgba(255, 107, 0, 0.15); color: var(--color-primary); }
.animal-tag.lagadishi_50cc { background: rgba(0, 168, 255, 0.15); color: var(--color-accent); }
.animal-tag.van { background: rgba(224, 169, 109, 0.15); color: var(--color-secondary); }

.vehicle-title { font-size: 1.65rem; font-weight: 800; letter-spacing: -0.01em; }
.papiamentu-subtitle { font-size: 0.85rem; color: var(--text-gray); margin-top: 0.25rem; }

.card-specs { display: flex; gap: 1rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.25rem; }
.spec-badge { flex: 1; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 0.5rem; text-align: center; }
.spec-label { display: block; font-size: 0.7rem; text-transform: uppercase; color: var(--text-gray-dark); font-weight: 600; }
.spec-value { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; color: var(--text-white); }

.card-context { display: flex; gap: 0.75rem; align-items: center; background: rgba(255, 107, 0, 0.03); border: 1px dashed rgba(255, 107, 0, 0.15); border-radius: var(--radius-md); padding: 0.85rem 1.25rem; margin-bottom: 1.5rem; }
.context-icon { flex-shrink: 0; display: flex; }
.context-icon svg { width: 20px; height: 20px; color: var(--color-primary); }
.context-text { font-size: 0.85rem; color: var(--text-gray-light); line-height: 1.4; }

.card-description { margin-bottom: 1.5rem; flex-grow: 1; }
.card-description p { font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.75rem; }
.card-description strong { color: var(--text-white); }

.card-pricing { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.25rem; padding: 0.9rem 1rem; background: rgba(255,255,255,0.02); border-radius: var(--radius-md); }
.price-usd { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--color-primary); }
.price-xcg { font-size: 0.78rem; color: var(--text-gray-dark); }

/* Harley premium tier — the deepest black, chrome/gold accents */
.harley-tier {
  border: 1px solid rgba(224, 169, 109, 0.25);
  background: linear-gradient(180deg, rgba(20, 26, 33, 0.9) 0%, var(--harley-bg) 100%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.harley-tier:hover { border-color: var(--harley-chrome); box-shadow: 0 15px 50px rgba(224, 169, 109, 0.15); }
.harley-tier .spec-value { color: var(--harley-chrome); }
.harley-tier .card-pricing .price-usd { color: var(--harley-chrome); }

.badge-card-apex {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--bg-primary);
  font-family: var(--font-heading); font-weight: 800; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem; border-radius: var(--radius-full); z-index: 5;
}

/* Secondary Van section */
.also-available-section { background: var(--bg-secondary); padding: 4rem 0; }
.also-available-card { display: flex; align-items: center; gap: 2rem; background: var(--bg-tertiary); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid rgba(255,255,255,0.05); }
.also-available-card .card-image-wrapper { width: 220px; height: 140px; flex-shrink: 0; margin-bottom: 0; }

/* --- Photo Carousel --- */
.carousel-section { background: var(--bg-primary); overflow: hidden; }
.carousel-frame { position: relative; padding: 1rem 0 0.5rem; }

/* Restrained tropical accent — two large, very low-opacity leaf silhouettes
   tucked in opposite corners of the whole strip, not on every slide, so it
   reads as a subtle island touch rather than a decorated frame. */
.carousel-leaf { position: absolute; width: 220px; height: 220px; fill: var(--color-success); opacity: 0.05; pointer-events: none; z-index: 1; }
.carousel-leaf-tl { top: -3rem; left: -3rem; }
.carousel-leaf-br { bottom: -3rem; right: -3rem; transform: rotate(180deg); }

.carousel-track-wrapper { position: relative; display: flex; align-items: center; gap: 0; z-index: 2; }
.carousel-track {
  flex: 1; display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem 4vw 1.5rem; scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 auto; width: min(480px, 78vw); aspect-ratio: 8 / 5;
  scroll-snap-align: center; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow);
}
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel-arrow {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--text-white); font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast); margin: 0 1rem;
}
.carousel-arrow:hover { background: var(--color-primary); border-color: var(--color-primary); }

/* --- Map --- */
.map-section { background: var(--bg-primary); }
.map-interactive-container {
  background: radial-gradient(circle at center, #11171f 0%, #07090c 100%);
  border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; align-items: center; justify-content: center; height: 100%; min-height: 400px;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}
.curacao-svg-map { width: 100%; height: auto; max-height: 380px; }
.island-landmass { fill: #19202a; stroke: #2e3a4b; stroke-width: 2.5; }
.map-grid-line { stroke: rgba(255,255,255,0.02); stroke-width: 1; stroke-dasharray: 5,5; }
.map-marker { cursor: pointer; }
.map-marker circle { fill: var(--color-secondary); stroke: var(--bg-primary); stroke-width: 2; }
.map-marker circle.marker-base { fill: var(--color-primary); }
.map-marker text { fill: var(--text-gray-light); font-family: var(--font-heading); font-size: 11px; font-weight: 600; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.map-marker circle.ping { fill: transparent; stroke: var(--color-secondary); stroke-width: 1; opacity: 0.8; animation: pulse-ping 2s infinite; pointer-events: none; }
@keyframes pulse-ping { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
.map-route-path { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; cursor: pointer; transition: var(--transition-smooth); }
.map-route-path:hover, .map-route-path.active { stroke: var(--color-primary); stroke-width: 7; filter: drop-shadow(0 0 6px rgba(var(--color-primary-rgb), 0.6)); }

.map-info-container { display: flex; flex-direction: column; justify-content: center; }
.route-details-card { min-height: 220px; display: flex; flex-direction: column; justify-content: center; padding: 2.5rem; }
.route-card-empty { text-align: center; }
.route-card-empty .large-icon { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.6; }
.large-icon svg { width: 1em; height: 1em; display: inline-block; }
.route-card-empty h4 { font-weight: 500; color: var(--text-gray); max-width: 320px; margin: 0 auto; font-size: 1rem; }
.route-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.route-badge { background: var(--color-primary); color: var(--text-white); font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.08em; padding: 0.3rem 0.75rem; border-radius: var(--radius-full); }
.route-duration { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--text-white); display: inline-flex; align-items: center; gap: 0.35rem; }
.route-duration svg { width: 15px; height: 15px; flex-shrink: 0; }
.route-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; }
.route-desc { font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; }
.recommendation-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-md); padding: 1.25rem; }
.rec-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-gray-dark); font-weight: 600; margin-bottom: 0.5rem; }
.rec-vehicle { display: flex; gap: 1rem; align-items: center; }
.rec-icon { font-size: 2.2rem; background: rgba(255,255,255,0.04); width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.rec-vehicle h4 { font-size: 1rem; font-weight: 700; }
.rec-vehicle p { font-size: 0.8rem; margin-bottom: 0; }

/* --- Quiz --- */
.quiz-section { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.quiz-widget { min-height: 380px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.quiz-step { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; animation: fade-in 0.4s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-visual { margin-bottom: 1.5rem; }
.quiz-visual-mark { width: 72px; height: auto; }
.quiz-step h3 { font-size: 1.85rem; font-weight: 800; margin-bottom: 1rem; max-width: 500px; }
.quiz-step p { max-width: 480px; margin-bottom: 2rem; font-size: 1rem; }
.quiz-progress { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; color: var(--color-primary); letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.quiz-options { display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 500px; margin-bottom: 2rem; }
.quiz-option { cursor: pointer; width: 100%; }
.quiz-option input[type="radio"] { display: none; }
.opt-box { display: block; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; text-align: left; transition: var(--transition-fast); }
.opt-title { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--text-white); margin-bottom: 0.25rem; }
.opt-desc { display: block; font-size: 0.85rem; color: var(--text-gray); line-height: 1.4; }
.quiz-option input[type="radio"]:checked + .opt-box { background: rgba(255, 107, 0, 0.06); border-color: var(--color-primary); box-shadow: 0 0 15px rgba(255, 107, 0, 0.1); }
.quiz-nav { display: flex; gap: 1.5rem; justify-content: center; width: 100%; max-width: 500px; }

.result-badge { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%); color: var(--bg-primary); font-family: var(--font-heading); font-weight: 800; font-size: 0.75rem; letter-spacing: 0.1em; padding: 0.35rem 1rem; border-radius: var(--radius-full); margin-bottom: 1.5rem; }
.result-animal-icon { font-size: 5rem; margin-bottom: 1rem; filter: drop-shadow(0 0 10px rgba(224, 169, 109, 0.3)); }
.quiz-result-desc { font-size: 1.05rem; line-height: 1.6; max-width: 520px; }
.quiz-result-actions { display: flex; gap: 1.5rem; }

/* --- Booking --- */
.booking-section { background: var(--bg-primary); }
.booking-widget-wrapper { padding: 0; overflow: hidden; }
.booking-placeholder { padding: 3rem; text-align: center; }
.booking-placeholder .large-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }

/* --- Google Reviews --- */
.reviews-widget-wrapper { padding: 0; overflow: hidden; }

/* --- FAQ --- */
.faq-list .glass-card { padding: 2rem; }

/* --- WhatsApp float --- */
.whatsapp-float {
  position: fixed; bottom: 2.5rem; right: 2.5rem;
  background: #25d366; width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); z-index: 99;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.wa-icon { display: flex; color: var(--text-white); }
.wa-icon svg { width: 28px; height: 28px; }
.wa-tooltip {
  position: absolute; right: 80px; background: var(--bg-secondary); border: 1px solid var(--glass-border);
  color: var(--text-white); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-size: 0.85rem;
  font-family: var(--font-heading); font-weight: 600; white-space: nowrap; opacity: 0;
  transform: translateX(10px); transition: var(--transition-smooth); pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* --- Footer --- */
.site-footer { background: #06080a; border-top: 1px solid rgba(255,255,255,0.03); padding: 6rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 5rem; }
.footer-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--text-white); margin-bottom: 1.5rem; display: inline-block; }
.footer-logo .logo-image { max-height: 120px; width: auto; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 2rem; }
.footer-contact-details p { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text-gray-light); display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-icon { width: 1.1em; height: 1.1em; flex-shrink: 0; margin-top: 0.15em; }
.footer-nav h4, .footer-security h4 { font-size: 1.1rem; margin-bottom: 1.75rem; position: relative; padding-bottom: 0.5rem; }
.footer-nav h4::after, .footer-security h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background-color: var(--color-primary); }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.75rem; }
.footer-nav a { font-size: 0.9rem; color: var(--text-gray); }
.footer-nav a:hover { color: var(--text-white); }
.footer-security p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 2rem; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-gray-dark); margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .grid-2-col { grid-template-columns: 1fr; gap: 4rem; }
  .story-image-container { height: 350px; }
  .also-available-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; gap: 1rem; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(10, 13, 16, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 2rem; border-bottom: 1px solid var(--glass-border); gap: 1.5rem; box-shadow: var(--glass-shadow);
  }
  /* Single clean column on mobile — the menu list itself was staying row-direction
     even though its parent switched to column, so links, Book Now, and the language
     switcher all rendered side by side. Book Now stays desktop-only in this panel. */
  .nav-links.active .nav-links-list { flex-direction: column; align-items: flex-start; width: 100%; gap: 1.25rem; }
  .nav-links.active .btn-nav { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .whatsapp-float { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; }
  /* #main-header (z-index:100) paints above .whatsapp-float (z-index:99), so the
     open mobile menu visually covers the WhatsApp button underneath it. */
  .whatsapp-float.wa-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .carousel-arrow { display: none; } /* touch swipe is the natural mobile interaction */
  .carousel-track { padding-left: 1.25rem; padding-right: 1.25rem; }
}
