/* ==========================================================================
   FESTIVAL DE LA PAELLA Y ARROCES 2026 - DESIGN SYSTEM & STYLESHEET
   Brand Palette: Deep Royal Indigo (#1B1464), Gourmet Green (#9bc53d) & Deep Wine Magenta/Pink (#892D7A)
   Aesthetic: Classy, Refined, High-End Luxury
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --primary-navy: #1B1464;
  --primary-navy-dark: #0F0A3E;
  --primary-navy-light: #2A218A;
  --accent-green: #9bc53d;
  --accent-green-hover: #84aa30;
  
  /* Luxury Wine Magenta / Orchid Pink Accent Palette (#892D7A) */
  --accent-pink: #892D7A;
  --accent-pink-dark: #6B1E5F;
  --accent-pink-light: #A43993;
  --accent-pink-glow: rgba(137, 45, 122, 0.35);
  
  --accent-gold: #E6B325;
  --accent-gold-light: #FFF4D0;
  
  /* Neutral Palette */
  --cream-bg: #FDFBF7;
  --card-bg: #FFFFFF;
  --ink-primary: #120E2E;
  --ink-muted: #5C5875;
  --border-line: #E8E2D9;
  --border-glass: rgba(255, 255, 255, 0.15);
  
  /* Shadows & Effects */
  --shadow-sm: 0 4px 12px rgba(27, 20, 100, 0.06);
  --shadow-md: 0 12px 30px rgba(27, 20, 100, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 10, 62, 0.16);
  --shadow-glow: 0 0 25px rgba(155, 197, 61, 0.35);
  --shadow-pink-glow: 0 0 25px rgba(137, 45, 122, 0.35);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  padding: 0;
  background-color: var(--cream-bg);
  color: var(--ink-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Authentic Vector Rice Pattern Texture Background */
.rice-pattern-bg {
  background-image: url('images/graphics/rice-pattern-bg.svg');
  background-size: 240px 240px;
  background-repeat: repeat;
}

/* Utility visibility classes for language switching */
[data-lang] {
  display: none !important;
}

body.lang-es [data-lang="es"],
body.lang-en [data-lang="en"] {
  display: block !important;
}

body.lang-es span[data-lang="es"],
body.lang-en span[data-lang="en"],
body.lang-es a[data-lang="es"],
body.lang-en a[data-lang="en"],
body.lang-es button[data-lang="es"],
body.lang-en button[data-lang="en"] {
  display: inline-flex !important;
}

body.lang-es div[data-lang="es"],
body.lang-en div[data-lang="en"] {
  display: block !important;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--ink-primary);
  font-weight: 700;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: var(--primary-navy-dark);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-kicker {
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.dark-section .section-kicker {
  color: var(--accent-green);
}

.light-section .section-kicker {
  color: var(--primary-navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-green);
  color: var(--primary-navy-dark);
  border-color: var(--accent-green);
  box-shadow: 0 8px 20px rgba(155, 197, 61, 0.3);
}

.btn-primary:hover {
  background: var(--accent-green-hover);
  border-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(155, 197, 61, 0.45);
}

.btn-pink {
  background: linear-gradient(135deg, #A43993 0%, #892D7A 100%);
  color: #FFFFFF;
  border-color: #892D7A;
  box-shadow: 0 8px 20px rgba(137, 45, 122, 0.35);
}

.btn-pink:hover {
  background: linear-gradient(135deg, #B544A3 0%, #9B348B 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(137, 45, 122, 0.5);
}

.btn-navy {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
  box-shadow: 0 8px 20px rgba(27, 20, 100, 0.25);
}

.btn-navy:hover {
  background: var(--primary-navy-light);
  border-color: var(--primary-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 20, 100, 0.35);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-ghost-navy {
  background: transparent;
  border-color: var(--primary-navy);
  color: var(--primary-navy);
}

.btn-ghost-navy:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* TOP PROMO BAR - CLASSY LUXURY DEEP PINK/MAGENTA (#892D7A) GRADIENT */
.promo-bar {
  background: linear-gradient(90deg, #6B1E5F 0%, #892D7A 50%, #6B1E5F 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(137, 45, 122, 0.25);
}

.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.promo-bar a {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 800;
}

.navbar {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.nav-inner {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.3s ease;
}

.nav-brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-inner {
  height: 64px;
}

.navbar.scrolled .nav-brand-logo {
  height: 44px;
}

/* Location Badge with Map Pin Icon */
.park-mark {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-navy);
  padding: 6px 14px;
  background: #F8F3F9;
  border: 1px solid rgba(137, 45, 122, 0.2);
  border-radius: 99px;
}

.park-mark-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-pink);
  flex-shrink: 0;
}

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

.lang-toggle {
  display: flex;
  background: #F2EDE6;
  padding: 4px;
  border-radius: 99px;
  border: 1px solid var(--border-line);
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--primary-navy);
  color: #FFFFFF;
}

/* HERO SECTION WITH CRISP CLEAR OVERLAY AREA */
.hero {
  position: relative;
  min-height: 720px;
  background-image: url('images/hero_background.jpg');
  background-size: cover;
  background-position: center right;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Stylish gradient overlay with crisp clear cutout area over right image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    #0F0A3E 0%, 
    rgba(15, 10, 62, 0.96) 42%, 
    rgba(27, 20, 100, 0.4) 62%, 
    transparent 82%
  );
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(137, 45, 122, 0.14) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: #FFFFFF;
  margin: 16px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.hero-copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--accent-green);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.125rem;
  color: #E2DEED;
  max-width: 620px;
  margin-bottom: 28px;
}

/* Single Line Sleek Metadata Bar with Magenta Left Accent */
.hero-details-bar {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--accent-pink);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

.hero-detail-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F3EFFC;
}

.hero-detail-item strong {
  color: var(--accent-green);
  font-weight: 800;
}

.hero-detail-sep {
  color: var(--accent-gold);
  font-size: 0.9rem;
  opacity: 0.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-micro {
  font-size: 0.8125rem;
  color: #C3BEDB;
  margin-top: 14px;
}

/* Hero Ticket Quick Card */
.hero-card {
  background: #FFFFFF;
  color: var(--ink-primary);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--accent-green);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-line);
}

.hero-card-header h3 {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card-header .badge {
  background: var(--accent-gold-light);
  color: #8C6A08;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-line);
}

.price-item:last-of-type {
  border-bottom: none;
}

.price-item span {
  font-weight: 600;
}

.price-item strong {
  font-size: 1.35rem;
  color: var(--primary-navy);
  font-family: var(--font-heading);
}

/* INFO STRIP WITH CLEAN UNIFIED GOURMET GREEN MONOCHROME ICONS */
.info-strip {
  background: linear-gradient(135deg, #0A062D 0%, #1B1464 50%, #150E4F 100%);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 6;
  box-shadow: 0 10px 30px rgba(15, 10, 62, 0.25);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.info-item:last-child {
  border-right: none;
}

/* Clean Unified Single-Color Icon Badge */
.info-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(155, 197, 61, 0.12);
  border: 1px solid rgba(155, 197, 61, 0.28);
  display: grid;
  place-items: center;
  color: var(--accent-green);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.info-item:hover .info-icon-badge {
  background: rgba(155, 197, 61, 0.22);
  border-color: var(--accent-green);
}

.info-icon-badge svg {
  width: 22px;
  height: 22px;
  color: var(--accent-green);
  stroke: var(--accent-green);
}

.info-item-text {
  display: flex;
  flex-direction: column;
}

.info-item .label {
  color: var(--accent-green);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.info-item .value {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
}

/* Sections Common */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 48px;
  max-width: 800px;
}

.section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin: 12px 0 16px;
}

.section-header p.intro {
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Food Offering Grid */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.recipe-card {
  border-radius: 24px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-line);
  display: flex;
  flex-direction: column;
  position: relative;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.recipe-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.recipe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img-wrap img {
  transform: scale(1.06);
}

.recipe-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-navy);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--accent-green);
  z-index: 3;
}

.recipe-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recipe-content h3 {
  font-size: 1.6rem;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.recipe-content p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Experience Video Section */
.section-dark {
  background: var(--primary-navy-dark);
  color: #FFFFFF;
  position: relative;
}

.section-dark h2 {
  color: #FFFFFF;
}

.section-dark .intro {
  color: #D1C9E3;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.video-container {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #000000;
  aspect-ratio: 16/9;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.gallery-thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 30px;
  border: 1px solid var(--border-line);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.35rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--ink-muted);
  margin: 0;
}

/* Ticket Comparison Section */
.section-tickets {
  background: #F4EFF8;
}

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

.ticket-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--border-line);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.ticket-card.featured {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.ticket-tag {
  align-self: flex-start;
  background: #ECE7F5;
  color: var(--primary-navy);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-card.featured .ticket-tag {
  background: linear-gradient(135deg, #892D7A 0%, #6B1E5F 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(137, 45, 122, 0.4);
}

.ticket-card h3 {
  font-size: 1.6rem;
  margin: 20px 0 8px;
  color: var(--primary-navy);
}

.ticket-card.featured h3 {
  color: #FFFFFF;
}

.ticket-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 24px;
}

.ticket-card.featured .ticket-price {
  color: #FFFFFF;
}

.ticket-price small {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink-muted);
}

.ticket-card.featured .ticket-price small {
  color: #D1C9E3;
}

.ticket-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.ticket-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticket-card.featured .ticket-features li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ticket-features li::before {
  content: "✓";
  color: var(--accent-green);
  font-weight: 800;
}

.ticket-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: -16px;
  margin-bottom: 24px;
}

.ticket-card.featured .ticket-note {
  color: #C6BED8;
}

/* MIDDLE CTA BANNER */
.banner-offer {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(13, 7, 56, 0.86) 0%, rgba(27, 20, 100, 0.78) 40%, rgba(137, 45, 122, 0.82) 75%, rgba(15, 10, 62, 0.88) 100%),
    url('images/paella_flames_banner.jpg') center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
  border-top: 3px solid var(--accent-green);
  border-bottom: 3px solid var(--accent-pink);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.banner-offer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 850px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(137, 45, 122, 0.35) 0%, rgba(155, 197, 61, 0.18) 50%, transparent 75%);
  pointer-events: none;
}

.banner-offer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(circle at 90% 20%, rgba(137, 45, 122, 0.45) 0%, transparent 70%);
  pointer-events: none;
}

.banner-offer .container {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.banner-offer h2 {
  color: #FFFFFF;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 18px;
}

.banner-offer p {
  font-size: 1.35rem;
  color: #F0EBF9;
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Plan Visit Section */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.visit-card {
  background: #FFFFFF;
  border: 1px solid var(--border-line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.visit-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-line);
}

.visit-row:last-child {
  border-bottom: none;
}

.visit-row small {
  display: block;
  color: var(--primary-navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.visit-row b {
  font-size: 1.1rem;
  color: var(--ink-primary);
}

/* Booking & Payment Calendar Container Section (#booking-section) */
.booking-section {
  background: #FFFFFF;
  border-top: 3px solid var(--accent-pink);
  border-bottom: 1px solid var(--border-line);
  box-shadow: var(--shadow-md);
}

.booking-box {
  background: var(--cream-bg);
  border: 2px dashed var(--primary-navy);
  border-radius: 28px;
  padding: 40px;
  margin-top: 32px;
}

.booking-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-navy);
  color: #FFFFFF;
  border: 1px solid var(--accent-pink);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.booking-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.calendar-widget-preview {
  background: #FFFFFF;
  border: 1px solid var(--border-line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-line);
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
}

.cal-day-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink-muted);
}

.cal-date {
  padding: 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #B2ADC7;
}

.cal-date.active-event {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-pink-dark) 100%);
  color: #FFFFFF;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(137, 45, 122, 0.4);
}

.time-slots {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.time-btn {
  border: 1px solid var(--primary-navy);
  background: #FFFFFF;
  color: var(--primary-navy);
  padding: 8px 14px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8125rem;
}

.time-btn.selected {
  background: var(--primary-navy);
  color: #FFFFFF;
}

.checkout-preview {
  background: #FFFFFF;
  border: 1px solid var(--border-line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.ticket-selector-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-line);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-navy);
  background: #FFFFFF;
  color: var(--primary-navy);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
}

/* INTERACTIVE LUXURY BOOKING MODAL POPUP - SLEEK COMPACT FIT (NO SCROLLBAR) */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 10, 62, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-container {
  background: #FFFFFF;
  border-radius: 20px;
  width: min(880px, 98%);
  padding: 24px 28px;
  position: relative;
  box-shadow: 0 24px 60px rgba(15, 10, 62, 0.4);
  border-top: 5px solid var(--accent-pink);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.booking-modal-overlay.active .booking-modal-container {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-line);
  background: #F4F1FA;
  color: var(--primary-navy);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.booking-modal-close:hover {
  background: var(--accent-pink);
  color: #FFFFFF;
  border-color: var(--accent-pink);
}

/* Compact Modal Overrides */
.booking-modal-container .section-header {
  margin: 0 0 14px !important;
  text-align: center;
}

.booking-modal-container .section-header h2 {
  font-size: 1.45rem !important;
  margin: 4px 0 4px !important;
}

.booking-modal-container .section-header p.intro {
  font-size: 0.88rem !important;
}

.booking-modal-container .booking-header-tag {
  font-size: 0.7rem !important;
  padding: 3px 10px !important;
  margin-bottom: 6px !important;
}

.booking-modal-container .booking-demo-grid {
  margin-top: 10px;
  gap: 18px;
}

.booking-modal-container .calendar-widget-preview,
.booking-modal-container .checkout-preview {
  padding: 16px 18px;
  border-radius: 16px;
}

.booking-modal-container .cal-header {
  margin-bottom: 8px;
  padding-bottom: 6px;
  font-size: 0.82rem;
}

.booking-modal-container .cal-date {
  padding: 6px;
  font-size: 0.82rem;
}

.booking-modal-container .time-slots {
  margin-top: 8px;
  gap: 6px;
}

.booking-modal-container .time-btn {
  padding: 4px 10px;
  font-size: 0.75rem;
}

.booking-modal-container .ticket-selector-row {
  padding: 6px 0;
  font-size: 0.85rem;
}

.booking-modal-container .qty-btn {
  width: 28px;
  height: 28px;
  font-size: 0.95rem;
}

.booking-modal-container .checkout-preview .btn-primary {
  margin-top: 12px !important;
  min-height: 44px !important;
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
}

/* FAQ Section */
.faq-section {
  background: #F6F3FA;
}

.faq-list {
  max-width: 880px;
  margin-top: 36px;
}

details {
  border-top: 1px solid var(--border-line);
  padding: 20px 0;
}

details:last-child {
  border-bottom: 1px solid var(--border-line);
}

summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--accent-pink);
  font-weight: 800;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "−";
  color: var(--primary-navy);
}

details p {
  color: var(--ink-muted);
  font-size: 1rem;
  margin: 14px 0 0;
  line-height: 1.6;
}

/* BOTTOM FINAL CTA SECTION */
.final-cta {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(9, 5, 38, 0.86) 0%, rgba(27, 20, 100, 0.78) 45%, rgba(137, 45, 122, 0.82) 75%, rgba(11, 7, 45, 0.88) 100%),
    url('images/final_cta_ambiance.jpg') center/cover no-repeat;
  color: #FFFFFF;
  text-align: center;
  padding: 135px 0;
  overflow: hidden;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(155, 197, 61, 0.30) 0%, transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(137, 45, 122, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: #FFFFFF;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 900px;
  margin: 0 auto 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.final-cta p {
  font-size: 1.25rem;
  color: #E6E1F5;
  max-width: 720px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Footer with Bigger Logo */
footer {
  background: var(--primary-navy-dark);
  color: #A9A2C2;
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: 76px;
  width: auto;
  object-fit: contain;
}

/* Mobile Sticky Bottom Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #FFFFFF;
  border-top: 1px solid var(--border-line);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(15, 10, 62, 0.15);
  align-items: center;
  justify-content: space-between;
}

.mobile-sticky-bar .sticky-price {
  font-weight: 800;
  color: var(--primary-navy);
  font-size: 0.9rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid,
  .experience-grid,
  .visit-grid,
  .booking-demo-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-copy {
    order: 1;
  }
  
  .hero-card {
    order: 2;
  }
  
  .recipe-grid,
  .steps-grid,
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  
  .ticket-card.featured {
    transform: none;
  }
  
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .info-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  
  .park-mark {
    display: none;
  }
  
  .nav-inner {
    height: 80px;
  }
  
  .nav-brand-logo {
    height: 52px;
  }
  
  .navbar.scrolled .nav-inner {
    height: 60px;
  }
  
  .navbar.scrolled .nav-brand-logo {
    height: 38px;
  }
  
  .hero::before {
    background: linear-gradient(
      180deg, 
      #0F0A3E 0%, 
      rgba(15, 10, 62, 0.92) 60%, 
      rgba(27, 20, 100, 0.6) 100%
    );
  }

  .hero-details-bar {
    white-space: normal;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  /* Mobile Promo Bar: Hide redundant CTA link */
  .promo-bar a {
    display: none !important;
  }

  /* Mobile Header Button: Keep strictly on a single line */
  .nav-right .btn-navy {
    padding: 8px 14px;
    font-size: 0.8125rem;
    min-height: 40px;
    white-space: nowrap;
  }

  .mobile-sticky-bar {
    display: flex;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    border-right: none;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  /* Mobile Footer: Centered alignment for text, logo, and phone */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Mobile Booking Box & Calendar Widget: Prevent Horizontal Overflow */
  .booking-box {
    padding: 24px 12px;
    border-radius: 20px;
    overflow: hidden;
  }

  .booking-demo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .calendar-widget-preview,
  .checkout-preview {
    padding: 16px 12px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .cal-days-grid {
    gap: 3px;
  }

  .cal-day-name {
    font-size: 0.68rem;
  }

  .cal-date {
    padding: 6px 2px;
    font-size: 0.78rem;
  }

  .time-slots {
    gap: 6px;
  }

  .time-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .ticket-selector-row {
    font-size: 0.85rem;
    gap: 8px;
  }

  .qty-controls {
    gap: 6px;
  }

  .qty-btn {
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
  }
}
