@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ==========================================================================
   KIDS BIRTHDAY PARTY VENUE — CORE DESIGN SYSTEM (style.css)
   ========================================================================== */

:root {
  /* Brand Color Palette - Playful, Sophisticated, Family Friendly */
  --primary: #ff5e88;
  --primary-hover: #f43f5e;
  --primary-light: #fff1f4;
  --primary-gradient: linear-gradient(135deg, #ff5e88 0%, #ff8ea9 100%);

  --secondary: #7c5cbf;
  --secondary-hover: #6a48b0;
  --secondary-light: #f5f2fd;
  --secondary-gradient: linear-gradient(135deg, #7c5cbf 0%, #9d7fe3 100%);

  --accent-amber: #f59e0b;
  --accent-amber-light: #fef3c7;
  --accent-sky: #0ea5e9;
  --accent-sky-light: #e0f2fe;
  --accent-mint: #10b981;
  --accent-mint-light: #d1fae5;
  --accent-coral: #fb7185;

  /* Neutrals & Surfaces */
  --bg-cream: #faf9f6;
  --bg-white: #ffffff;
  --surface-alt: #f4f6f9;
  --surface-card: #ffffff;
  --border-soft: #e2e8f0;
  --border-subtle: #edf2f7;

  /* Typography Colors */
  --text-main: #1e1b4b;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Feedback & Validation */
  --color-error: #dc2626;
  --color-error-bg: #fef2f2;
  --color-error-border: #fca5a5;
  --color-success: #16a34a;
  --color-success-bg: #f0fdf4;

  /* Elevation & Shadows */
  --shadow-xs: 0 2px 4px rgba(30, 27, 75, 0.04);
  --shadow-sm: 0 4px 12px -2px rgba(30, 27, 75, 0.06);
  --shadow-md: 0 12px 28px -6px rgba(30, 27, 75, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(30, 27, 75, 0.15);
  --shadow-glow: 0 8px 25px rgba(255, 94, 136, 0.25);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Layout */
  --header-height: 84px;
  --container-max: 1240px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-cream);
  scroll-behavior: smooth;
  overflow-x: hidden;
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: var(--bg-cream);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(18px, 2vw, 24px);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 54px;
  text-align: center;
  position: relative;
}

.section-header.text-left {
  text-align: left;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.section-header .section-title,
.section-header .section-subtitle {
  position: relative;
  z-index: 1;
}

.section-header.text-left .section-subtitle {
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  color: var(--primary);
  background: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow i {
  font-size: 0.9em;
}

.joyful-arrival-section .joyful-arrival-card,
.theme-spotlight-section .theme-spotlight-card {
  background: linear-gradient(135deg, #fffaf4 0%, #ffffff 100%) !important;
  border: 1px solid rgba(255, 168, 92, 0.25) !important;
  box-shadow: 0 16px 35px rgba(30, 27, 75, 0.08);
}

.joyful-arrival-section .section-title,
.theme-spotlight-section .section-title {
  color: var(--text-main) !important;
}

.joyful-arrival-section p,
.joyful-arrival-section li,
.theme-spotlight-section p,
.theme-spotlight-section li {
  color: var(--text-body) !important;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.badge-success {
  background: var(--accent-mint-light);
  color: var(--color-success);
}

.badge-amber {
  background: var(--accent-amber-light);
  color: #b45309;
}

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary);
  border-right-color: var(--secondary);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loader-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.loader-brand i {
  color: var(--primary);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 94, 136, 0.35);
  color: var(--text-white);
}

.btn-secondary {
  background: var(--secondary-gradient);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(124, 92, 191, 0.25);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(124, 92, 191, 0.35);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--text-white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn i {
  font-size: 0.95em;
  transition: transform var(--transition-fast);
}

.btn:hover i.fa-arrow-right {
  transform: translateX(4px);
}

/* ==========================================================================
   GLOBAL HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(14px);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  position: fixed;
  height: 74px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-soft);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.site-header .container,
.site-header .header-container {
  max-width: calc(var(--container-max) + 48px);
  padding-left: clamp(18px, 2vw, 24px);
  padding-right: clamp(18px, 2vw, 24px);
}

/* Brand Logo (Exact same in header, footer, login, dashboard) */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Header Controls & Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-toggle-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  background: var(--surface-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-full);
}

.header-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.header-toggle-btn:hover {
  color: var(--primary);
  background: var(--bg-white);
  box-shadow: var(--shadow-xs);
}

.header-toggle-btn.active {
  color: var(--primary);
  background: var(--bg-white);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.nav-login-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--text-main);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.nav-toggle-btn:hover {
  color: var(--primary);
}

/* Compact header typography without changing header dimensions or behavior */
.site-header .logo-title {
  font-size: 1.1rem;
}

.site-header .logo-subtitle {
  font-size: 0.64rem;
}

.site-header .nav-link {
  font-size: 0.8rem;
}

.site-header .nav-dropdown-item {
  font-size: 0.82rem;
}

.site-header .nav-login-btn,
.site-header .header-actions .btn {
  font-size: 0.82rem;
}

.mobile-nav-panel .logo-title {
  font-size: 1.1rem;
}

.mobile-nav-panel .logo-subtitle {
  font-size: 0.64rem;
}

.mobile-nav-panel .mobile-nav-link {
  font-size: 0.98rem;
}

.mobile-nav-panel .mobile-nav-sub a {
  font-size: 0.84rem;
}

.mobile-nav-panel .mobile-nav-footer .btn,
.mobile-nav-panel .mobile-nav-controls > span {
  font-size: 0.82rem !important;
}

/* ==========================================================================
   MOBILE HAMBURGER NAVIGATION PANEL
   (Full Width & Full Height of opened panel, vertical scroll, no horizontal overflow)
   ========================================================================== */
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}

.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav-panel.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  background: transparent;
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav-link i {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.mobile-nav-link.active i {
  color: var(--primary);
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface-alt);
  flex-shrink: 0;
}

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

/* ==========================================================================
   PAGE HERO (INNER PAGES)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 110px 0 70px;
  background-color: #1e1b4b;
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.86), rgba(20, 16, 46, 0.52)), url('../images/hero_venue.jpg');
  background-position: center;
  background-size: cover;
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
}

#about-hero,
#rules-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.86), rgba(20, 16, 46, 0.5)), url('../images/about hero.jpg');
}

#menu-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.84), rgba(20, 16, 46, 0.42)), url('../images/food hero.jpg');
  background-position: center 58%;
}

#booking-hero,
#contact-hero,
#gallery-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.84), rgba(20, 16, 46, 0.46)), url('../images/contact hero.jpg');
}

#gallery-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.82), rgba(20, 16, 46, 0.42)), url('../images/gallery hero.jpg');
}

#packages-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.84), rgba(20, 16, 46, 0.4)), url('../images/package hero.jpg');
}

#themes-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.78), rgba(20, 16, 46, 0.25)), url('../images/theme_princess.jpg');
}

#entertainment-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.8), rgba(20, 16, 46, 0.3)), url('../images/entertainment.jpg');
}

#music-hero {
  background-image: linear-gradient(90deg, rgba(20, 16, 46, 0.8), rgba(20, 16, 46, 0.3)), url('../images/dance.jpg');
}

#superhero-hero {
  background-image: linear-gradient(90deg, rgba(10, 16, 45, 0.84), rgba(10, 16, 45, 0.3)), url('../images/superhero.jpg');
}

#pkg-details-hero {
  background-image: linear-gradient(90deg, rgba(10, 16, 45, 0.88), rgba(10, 16, 45, 0.35)), url('../images/superhero.jpg');
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 94, 136, 0.25), transparent 50%),
              radial-gradient(circle at bottom left, rgba(124, 92, 191, 0.25), transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #ffb8cd;
}

.page-hero h1 {
  color: var(--text-white);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 24px;
  font-size: 1.15rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #f4f6f8;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

.breadcrumb a {
  color: #e2e8f0;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  font-size: 0.75rem;
}

/* ==========================================================================
   CARDS & CONTAINERS
   ========================================================================== */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Fallback so content remains visible if AOS does not initialize */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SECTION 1 — HERO (HOME PAGE)
   ========================================================================== */
.home-hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(255, 94, 136, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(124, 92, 191, 0.1) 0%, transparent 40%),
              var(--bg-cream);
  overflow: hidden;
}

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

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 12px;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
}

.hero-badge-float {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero-badge-float.top-left {
  top: 24px;
  left: -20px;
}

.hero-badge-float.bottom-right {
  bottom: 24px;
  right: -20px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ==========================================================================
   SECTION 2 — VENUE HIGHLIGHTS (HORIZONTAL FEATURE STRIP)
   ========================================================================== */
.highlights-strip-section {
  padding: 40px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.highlights-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.highlight-item:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
}

.highlight-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: all var(--transition-base);
}

.highlight-item:hover .highlight-icon-box {
  background: var(--primary);
  color: var(--text-white);
}

.highlight-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

/* ==========================================================================
   SECTION 3 — WHY FAMILIES CHOOSE US (SPLIT LAYOUT)
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-image-stack {
  position: relative;
}

.why-us-main-img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.why-us-stat-card {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--secondary-gradient);
  color: var(--text-white);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}

.why-us-stat-card .stat-icon {
  font-size: 2.2rem;
  opacity: 0.9;
}

.why-us-stat-card .stat-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.why-us-stat-card .stat-text {
  font-size: 0.88rem;
  opacity: 0.9;
}

.why-us-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.why-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-mint-light);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.why-feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-feature-text p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.stats-counter-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.counter-item {
  text-align: center;
}

.counter-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 4 — FEATURED PACKAGES (ASYMMETRIC LAYOUT)
   ========================================================================== */
.packages-featured-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.package-hero-card {
  background: linear-gradient(135deg, #2d1b4e 0%, #1e1b4b 100%);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.package-hero-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 94, 136, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.package-hero-card h3,
.package-hero-card .price-val {
  color: var(--text-white);
}

.package-hero-card .package-features-list li {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.98rem;
}

.package-hero-card .package-features-list li i {
  color: #ff5e88;
}

.package-price-wrap {
  margin: 24px 0;
}

.package-price-wrap .price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.package-price-wrap .price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.packages-stack-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package-aside-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all var(--transition-base);
}

.package-aside-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SECTION 5 — THEMED EXPERIENCES (IMAGE SHOWCASE)
   ========================================================================== */
.themes-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.theme-showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow-sm);
  background: var(--surface-alt);
}

.theme-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.theme-showcase-card:hover img {
  transform: scale(1.08);
}

.theme-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 18%, rgba(15, 23, 42, 0.8) 72%, rgba(15, 23, 42, 0.93) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.34);
}

.theme-card-overlay h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.theme-card-overlay p {
  color: #f1f5f9;
  font-size: 0.88rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.theme-card-overlay .btn {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
  box-shadow: none;
}

.theme-card-overlay .btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

/* ==========================================================================
   SECTION 6 — PARTY JOURNEY (TIMELINE)
   ========================================================================== */
.journey-timeline-section {
  background: var(--surface-alt);
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.timeline-steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--border-soft);
  z-index: 1;
}

.timeline-step-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-step-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 4px solid var(--primary-light);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.timeline-step-item:hover .timeline-step-badge {
  background: var(--primary);
  color: var(--text-white);
  border-color: #ffb8cd;
  transform: scale(1.1);
}

.timeline-step-title {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   SECTION 7 — PARENT TESTIMONIALS (EDITORIAL SLIDER / GRID)
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.rating-stars {
  color: var(--accent-amber);
  display: flex;
  gap: 4px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.author-avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SECTION 8 — FINAL CTA + VENUE PREVIEW (FULL WIDTH BANNER)
   ========================================================================== */
.final-cta-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #2e1065 100%);
  color: var(--text-white);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.final-cta-content h2 {
  color: var(--text-white);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
}

.final-cta-content p {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 560px;
}

.venue-quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.venue-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.venue-info-box i {
  color: #ff5e88;
  font-size: 1.2rem;
  margin-top: 3px;
}

.venue-info-box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
}

.venue-info-box span {
  font-size: 0.85rem;
  color: #94a3b8;
}

.cta-map-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  text-align: center;
}

.cta-map-frame {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  border: 0;
}

/* ==========================================================================
   PACKAGES PAGE & COMPARISON TABLE
   ========================================================================== */
.packages-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-full-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

.package-full-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.package-full-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--text-white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.package-full-card .features-ul {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-full-card .features-ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.package-full-card .features-ul li i {
  color: var(--color-success);
  font-size: 0.85rem;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--surface-alt);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
}

.comparison-table td i.fa-circle-check {
  color: var(--color-success);
}

.comparison-table td i.fa-circle-xmark {
  color: var(--text-light);
}

/* ==========================================================================
   GALLERY PAGE & FILTERS
   ========================================================================== */
.gallery-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

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

.gallery-grid-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--surface-alt);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.06);
}

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 15%, rgba(15, 23, 42, 0.8) 70%, rgba(15, 23, 42, 0.93) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.35);
  transition: opacity var(--transition-base);
}

.gallery-hover-overlay h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-weight: 800;
  line-height: 1.3;
}

.gallery-hover-overlay p {
  color: #f1f5f9;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.gallery-grid-item:hover .gallery-hover-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 24px;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-white);
  font-size: 1.75rem;
  cursor: pointer;
}

/* ==========================================================================
   FOOD MENU STYLES
   ========================================================================== */
.menu-category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.menu-category-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  font-weight: 700;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.menu-category-btn:hover,
.menu-category-btn.active {
  background: var(--secondary);
  color: var(--text-white);
  border-color: var(--secondary);
}

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

.menu-food-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.menu-food-thumb {
  width: 100%;
  height: 220px;
  border-radius: 0;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.menu-food-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.menu-food-meta {
  flex: 1;
  padding: 24px;
}

.menu-food-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.menu-food-header h4 {
  font-size: 1.1rem;
}

.menu-food-header .food-badge {
  font-size: 0.78rem;
  color: var(--color-success);
  font-weight: 700;
}

.menu-food-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FORMS & VALIDATION (RED ERROR STATES STRICTLY REQUIRED)
   ========================================================================== */
.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.form-label .required {
  color: var(--color-error);
  margin-left: 3px;
}

.form-control,
.form-select,
textarea.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  background: var(--bg-white);
  color: var(--text-main);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* Validation Error State — MUST BE RED */
.form-control.is-invalid,
.form-select.is-invalid,
textarea.form-control.is-invalid {
  border-color: var(--color-error) !important;
  background-color: var(--color-error-bg);
}

.form-error-msg {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--color-error);
  font-size: 0.84rem;
  font-weight: 600;
  margin-top: 6px;
}

.form-group.has-error .form-error-msg {
  display: flex;
}

.form-group.has-error .form-control,
.form-group.has-error .form-select {
  border-color: var(--color-error) !important;
  background-color: var(--color-error-bg);
}

/* Form Success Notification */
.form-success-banner {
  display: none;
  background: var(--color-success-bg);
  border: 1.5px solid #86efac;
  color: #14532d;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.form-success-banner.show {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ==========================================================================
   BOOKING WIZARD & CALENDAR INTERFACE
   ========================================================================== */
.booking-wizard-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 36px;
  align-items: flex-start;
}

.booking-calendar-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.calendar-day-header {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.calendar-date-cell {
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-white);
  transition: all var(--transition-fast);
}

.calendar-date-cell:hover:not(.disabled) {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.calendar-date-cell.selected {
  background: var(--primary) !important;
  color: var(--text-white) !important;
  border-color: var(--primary) !important;
}

.calendar-date-cell.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--surface-alt);
}

.calendar-date-cell.booked {
  background: #fee2e2;
  color: #b91c1c;
  cursor: not-allowed;
  border-color: #fca5a5;
}

/* Halls Selector */
.halls-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.hall-card-option {
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-white);
}

.hall-card-option:hover {
  border-color: var(--primary);
}

.hall-card-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* Sticky Booking Summary Sidebar */
.sticky-summary-panel {
  position: sticky;
  top: 100px;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  border-bottom: 0;
  padding-top: 16px;
}

.advance-box {
  background: var(--accent-mint-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
}

.advance-box .adv-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #065f46;
}

.advance-box .adv-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #047857;
}

/* ==========================================================================
   PARENT DASHBOARD LAYOUT & WIDGETS
   ========================================================================== */
.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  overflow: visible;
  background: var(--surface-alt);
}

@media (min-width: 1025px) {
  .dashboard-wrapper {
    height: 100vh !important;
    overflow: hidden !important;
  }

  .dashboard-sidebar {
    position: sticky !important;
    top: 0 !important;
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .dashboard-main-content {
    height: 100vh !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 18px !important;
  }
}

.dashboard-sidebar {
  box-shadow: 6px 0 22px rgba(30, 27, 75, 0.035);
}

.dash-nav-label {
  padding: 4px 18px 8px;
  color: var(--text-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dash-nav-label-spaced {
  margin-top: 16px;
}

.dash-nav-item {
  position: relative;
}

.dash-nav-item .nav-lock {
  margin-left: auto;
  font-size: 0.68rem;
  opacity: 0.55;
}

.dash-logout-link {
  margin-top: auto;
  color: var(--color-error);
}

.dash-logout-link:hover {
  background: var(--color-error-bg);
  color: var(--color-error);
}

.dashboard-sidebar {
  width: 280px;
  background: var(--bg-white);
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.dashboard-sidebar-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.dashboard-nav-menu {
  padding: 20px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.dash-nav-item:hover,
.dash-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.dash-nav-item i {
  font-size: 1.1rem;
}

.dashboard-main-content {
  flex: 1;
  min-width: 0;
  padding: 36px 40px;
  overflow: visible;
  min-height: 100vh;
  position: relative;
}

.dashboard-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -12px -18px 24px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xs);
}

.dashboard-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-mint);
  box-shadow: 0 0 0 4px var(--accent-mint-light);
}

.dashboard-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-icon-btn,
.dashboard-profile-chip {
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  color: var(--text-body);
}

.dashboard-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.dashboard-icon-btn:hover,
.dashboard-profile-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.notification-count {
  position: absolute;
  top: -3px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 17px;
}

.dashboard-profile-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 11px 4px 5px;
  border-radius: var(--radius-full);
}

.dashboard-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.85rem;
}

.profile-chevron {
  color: var(--text-light);
  font-size: 0.7rem;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.dashboard-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 15px 17px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-xs);
}

.dashboard-stat-card div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dashboard-stat-card strong {
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.dashboard-stat-card div span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.stat-icon-pink { background: var(--primary-light); color: var(--primary); }
.stat-icon-purple { background: var(--secondary-light); color: var(--secondary); }
.stat-icon-mint { background: var(--accent-mint-light); color: var(--color-success); }
.stat-icon-amber { background: var(--accent-amber-light); color: #b45309; }

.dashboard-inline-result {
  margin-bottom: 12px;
  padding: 8px 11px;
  border-radius: var(--radius-xs);
  background: var(--accent-mint-light);
  color: #047857;
  font-size: 0.78rem;
  font-weight: 700;
}

.dashboard-inline-result.availability-warning {
  background: var(--accent-amber-light);
  color: #b45309;
}

.dashboard-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.dashboard-account-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-xs);
}

.admin-access-panel {
  background: linear-gradient(135deg, var(--secondary-light), var(--bg-white));
}

.account-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
}

.admin-access-panel .account-panel-icon {
  background: rgba(124, 92, 191, 0.14);
  color: var(--secondary);
}

.dashboard-account-panel > div:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.panel-eyebrow {
  color: var(--text-muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-account-panel h3 {
  margin: 2px 0;
  font-size: 1rem;
}

.dashboard-account-panel p {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 13px 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition-base);
}

.dashboard-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-toast i {
  color: var(--color-success);
}

.dash-widget[id] {
  scroll-margin-top: 24px;
}

.dash-welcome-banner {
  background: linear-gradient(135deg, #7c5cbf 0%, #a855f7 100%);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.dash-welcome-banner h2 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 8px;
}

/* Booking Status Progress Pipeline */
.status-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
  padding: 0 10px;
}

.status-pipeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--border-soft);
  z-index: 1;
}

.pipeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pipeline-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pipeline-step.completed .pipeline-icon {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--text-white);
}

.pipeline-step.current .pipeline-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.pipeline-step span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.dashboard-widgets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.dash-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.dash-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   AUTHENTICATION LAYOUT (LOGIN, SIGNUP, FORGOT PW)
   ========================================================================== */
.auth-page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(30, 27, 75, 0.76), rgba(168, 85, 247, 0.35), rgba(255, 94, 136, 0.28)),
    url('../images/hero_venue.jpg') center center / cover no-repeat;
}

.auth-page-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(1px);
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: 0 28px 60px rgba(30, 27, 75, 0.22);
  backdrop-filter: blur(12px);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header .logo {
  justify-content: center;
  margin-bottom: 20px;
}

.auth-social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: var(--surface-alt);
  color: var(--text-main);
  font-size: 1.15rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--bg-white);
  border-color: var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-soft);
}

/* ==========================================================================
   GLOBAL FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: #111827;
  color: #94a3b8;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.footer-contact-row i {
  color: var(--primary);
  margin-top: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  border: 1px solid #334155;
  background: #1e293b;
  color: #f8fafc;
  font-size: 0.9rem;
}

.newsletter-form input.is-invalid {
  border-color: var(--color-error) !important;
  background-color: var(--color-error-bg);
}

.newsletter-form.has-error .form-error-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-error);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}

.footer-bottom-bar {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.social-icons-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
#signature-party-spaces .themes-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#signature-party-spaces .theme-showcase-card {
  height: 100%;
  min-height: 420px;
}

#party-food-fun .themes-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

#party-food-fun .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

#party-food-fun .card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  object-position: center;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .nav-toggle-btn {
    display: flex;
  }
  .highlights-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .packages-featured-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .themes-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline-steps-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-wizard-layout {
    grid-template-columns: 1fr;
  }
  .dashboard-wrapper {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .dashboard-sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
    overflow: visible;
  }
  .dashboard-main-content {
    height: auto;
    overflow: visible;
  }
  .dashboard-widgets-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }
  .section {
    padding: 70px 0;
  }
  .header-actions > .btn.btn-primary,
  .header-actions > a.btn-primary,
  .header-actions .btn-primary {
    display: none !important;
  }
  .header-toggle-group {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  img,
  picture,
  video,
  canvas,
  svg {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #why-choose-us .why-us-main-img,
  .why-us-image-stack video.why-us-main-img,
  .hero-image-wrapper video.hero-img-main {
    display: block;
    width: 100%;
    height: 280px;
    min-height: 280px;
    object-fit: cover;
    border-radius: 22px;
  }
  #signature-party-spaces .themes-showcase-grid,
  #party-food-fun .themes-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  #signature-party-spaces .theme-showcase-card,
  #party-food-fun .card {
    min-height: 260px !important;
    height: auto !important;
  }
  #signature-party-spaces .theme-showcase-card img,
  #party-food-fun .card img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    display: block !important;
  }
  #signature-party-spaces .theme-card-overlay {
    padding: 18px !important;
  }
  #featured-article .why-us-grid {
    display: block !important;
  }
  #featured-article .why-us-grid > div:first-child {
    min-height: 0 !important;
  }
  #featured-article .why-us-grid > div:first-child img {
    height: 260px !important;
    display: block !important;
  }
  #featured-article .why-us-grid > div:last-child {
    padding: 24px 18px !important;
  }
  #latest-articles > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #latest-articles article {
    min-height: 0 !important;
  }
  #latest-articles article img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  #latest-articles article > div {
    padding: 18px !important;
  }
  #planning-tips-strip > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #planning-tips-strip .card {
    padding: 18px 16px !important;
    text-align: left !important;
  }
  #planning-tips-strip .card > div {
    font-size: 1.8rem !important;
    margin-bottom: 6px !important;
  }
  #planning-tips-strip .card h4 {
    font-size: 1.05rem !important;
  }
  #planning-tips-strip .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  #calm-party-timeline > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #calm-party-timeline .card {
    padding: 18px 16px !important;
  }
  #calm-party-timeline .card > div {
    font-size: 1.6rem !important;
  }
  #calm-party-timeline .card h4 {
    font-size: 1.05rem !important;
  }
  #calm-party-timeline .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  #joyful-arrival-section .joyful-arrival-card > div {
    grid-template-columns: 1fr !important;
  }
  #joyful-arrival-section .joyful-arrival-card > div > div:first-child {
    padding: 24px 18px !important;
  }
  #joyful-arrival-section .joyful-arrival-card > div > div:last-child {
    min-height: 0 !important;
  }
  #joyful-arrival-section .joyful-arrival-card > div > div:last-child img {
    height: 260px !important;
    object-fit: cover !important;
  }
  #joyful-arrival-section .joyful-arrival-card ul {
    gap: 8px !important;
  }
  #joyful-arrival-section .joyful-arrival-card li {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
  #parents-forget-section > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #parents-forget-section .card {
    padding: 18px 16px !important;
  }
  #parents-forget-section .card h4 {
    font-size: 1.05rem !important;
  }
  #parents-forget-section .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  #themes-hero .container {
    display: block !important;
  }
  #themes-hero .blog-topic-hero-image {
    height: 240px !important;
    width: 100% !important;
    object-fit: cover !important;
    margin-top: 18px !important;
  }
  #themes-hero .blog-topic-meta {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .section[style*="background: var(--surface-alt);"] > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .section[style*="background: var(--surface-alt);"] .card {
    padding: 18px 16px !important;
  }
  .section[style*="background: var(--surface-alt);"] .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  .age-energy-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .age-energy-grid .card {
    padding: 18px 16px !important;
  }
  .age-energy-grid .card h4 {
    font-size: 1.05rem !important;
  }
  .age-energy-grid .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  .theme-spotlight-card > div {
    grid-template-columns: 1fr !important;
  }
  .theme-spotlight-card > div > div:first-child {
    min-height: 0 !important;
  }
  .theme-spotlight-card > div > div:first-child img {
    height: 260px !important;
  }
  .theme-spotlight-card > div > div:last-child {
    padding: 24px 18px !important;
  }
  .theme-spotlight-card ul {
    gap: 8px !important;
  }
  .theme-spotlight-card li {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }
  #theme-showcase-deep > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #theme-showcase-deep .card {
    min-height: 0 !important;
  }
  #theme-showcase-deep .card img {
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  #theme-showcase-deep .card > div {
    padding: 18px !important;
  }
  #theme-showcase-deep .card h4 {
    font-size: 1.08rem !important;
  }
  #theme-showcase-deep .card p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-stats-strip {
    justify-content: center;
  }
  .final-cta-section {
    padding: 70px 0;
  }
  .final-cta-content {
    text-align: center;
  }
  .final-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta-content [style*="display: flex"] {
    justify-content: center;
  }
  .venue-quick-info {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  #our-story [style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  #our-story .card {
    padding: 18px 16px !important;
  }
  #our-story .card h4 {
    font-size: 1rem !important;
  }
  #our-story .card p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
  #founders [style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #founders .card > div {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  #founders .card img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
  }
  #founders .card > div > div {
    padding: 20px 18px !important;
  }
  #founders .card h3 {
    font-size: 1.6rem !important;
  }
  #our-promise > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  #our-promise .card h4 {
    font-size: 1.05rem !important;
  }
  #our-promise .card p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
  #contact-cards-sec > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #contact-cards-sec .card {
    padding: 22px 18px !important;
  }
  #contact-cards-sec .card h4 {
    font-size: 1.05rem !important;
  }
  #contact-cards-sec .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  #enquiry-form-sec form > div[style*="display: grid; grid-template-columns: 1fr 1fr;"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  #enquiry-form-sec .card {
    padding: 24px 18px !important;
  }
  #map-location-sec .card {
    padding: 12px !important;
  }
  #map-location-sec iframe {
    height: 260px !important;
  }
  #map-location-sec .card > div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 12px 6px 4px !important;
  }
  #contact-cta-sec {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  #achievements > .container > div[style*="display: grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
  #achievements .card {
    padding: 24px 16px !important;
  }
  #achievements .card [style*="font-size: 3rem"] {
    font-size: clamp(2rem, 8vw, 2.6rem) !important;
  }
  #venue-spaces > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #venue-spaces .card {
    overflow: hidden;
  }
  #venue-spaces .card video {
    height: 220px !important;
  }
  #venue-spaces .card > div[style*="padding: 24px"] {
    padding: 18px !important;
  }
  .stats-counter-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .highlights-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
  .masonry-gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .halls-selector-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-main-content {
    padding: 24px 18px;
  }
  .dashboard-topbar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
  }
  .dashboard-header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .dashboard-header-actions .header-toggle-group {
    display: none;
  }
  .dashboard-profile-chip span {
    display: none;
  }
  .dashboard-sidebar {
    width: 100% !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-soft) !important;
  }
  .dashboard-nav-menu {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .dash-nav-item {
    justify-content: flex-start !important;
    padding: 12px 10px !important;
  }
  .dashboard-stat-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .dashboard-stat-card {
    min-height: 74px !important;
    padding: 12px 14px !important;
  }
  .dashboard-stat-card strong {
    font-size: 1.15rem !important;
  }
  .dash-welcome-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
    padding: 22px 18px !important;
  }
  .dash-welcome-banner h2 {
    font-size: 1.55rem !important;
  }
  .status-pipeline {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  .status-pipeline::before {
    display: none !important;
  }
  .pipeline-step {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: left !important;
  }
  .pipeline-icon {
    margin: 0 !important;
    flex-shrink: 0;
  }
  .dashboard-widgets-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .dash-widget {
    padding: 20px 18px !important;
  }
  .dashboard-account-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .dashboard-account-panel {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .dashboard-account-panel p {
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  .header-actions .nav-login-btn {
    display: none;
  }
  .header-toggle-group {
    display: flex !important;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .highlights-strip {
    grid-template-columns: 1fr;
  }
  .timeline-steps-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid-4 {
    grid-template-columns: 1fr;
  }
  #package-intro > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #package-intro > .container > div[style*="display: grid"] > div {
    padding: 18px 16px !important;
  }
  #package-intro h4 {
    font-size: 1.05rem !important;
  }
  #package-intro p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
  #optional-addons > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #optional-addons .card {
    padding: 16px !important;
  }
  #optional-addons .card img {
    height: 200px !important;
  }
  #optional-addons .card h4 {
    font-size: 1.05rem !important;
  }
  #optional-addons .card p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
  .themes-showcase-grid {
    grid-template-columns: 1fr;
  }
  #party-food-packages > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #party-food-packages .card {
    padding: 18px 16px !important;
  }
  #party-food-packages .card h3 {
    font-size: 1.2rem !important;
  }
  #party-food-packages .card .features-ul {
    gap: 8px !important;
  }
  #special-dietary > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #special-dietary .card {
    padding: 18px 14px !important;
    text-align: left !important;
  }
  #special-dietary .card h4 {
    font-size: 1.05rem !important;
  }
  #special-dietary .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  #safety-supervision > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #safety-supervision .card {
    padding: 18px 16px !important;
  }
  #safety-supervision .card h4 {
    font-size: 1.05rem !important;
  }
  #safety-supervision .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  #venue-guidelines > .container > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  #venue-guidelines .card {
    padding: 18px 16px !important;
  }
  #venue-guidelines .card h4 {
    font-size: 1.02rem !important;
  }
  #venue-guidelines .card p {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
  }
  .dashboard-stat-card {
    min-height: 74px;
    padding: 12px;
  }
  .dashboard-stat-card strong {
    font-size: 1.1rem;
  }
  .dashboard-stat-card div span {
    font-size: 0.65rem;
  }
  .dashboard-account-panel {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .hero-img-main {
    height: 320px;
  }
  .hero-badge-float {
    display: none;
  }
}

/* ==========================================================================
   NAV DROPDOWN — Home Menu
   ========================================================================== */
.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-has-dropdown > .nav-link .dropdown-caret {
  font-size: 0.65em;
  transition: transform var(--transition-fast);
  opacity: 0.6;
}

.nav-has-dropdown:hover > .nav-link .dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 999;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dashboard-header-menu > .nav-link {
  color: #64748b;
}

.dashboard-header-menu > .nav-link:hover,
.dashboard-header-menu > .nav-link:focus-visible {
  color: var(--primary);
}

.dashboard-mobile-sub {
  margin-bottom: 5px;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 7px;
  background: var(--bg-white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--primary);
  opacity: 0.7;
}

.nav-dropdown-item:hover i,
.nav-dropdown-item.active i {
  opacity: 1;
}

/* Mobile dropdown sub-links */
.mobile-nav-sub {
  padding-left: 20px;
  border-left: 2px solid var(--border-soft);
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-nav-sub a:hover,
.mobile-nav-sub a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.mobile-nav-sub a i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
}

/* ==========================================================================
   HOME 2 — SECTION 1: CINEMATIC HERO (Split with gradient overlay)
   ========================================================================== */
.h2-hero {
  min-height: calc(100vh - var(--header-height));
  height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}

.h2-hero-left {
  background: linear-gradient(140deg, #1e1b4b 0%, #3b1e7a 50%, #6d28d9 100%);
  padding: 72px 48px 72px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.h2-hero-left-inner {
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: clamp(18px, 4vw, 56px);
}

.h2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  color: #e0c8ff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.15);
}

.h2-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.h2-hero-title .accent-word {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h2-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.h2-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.h2-floating-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 320px;
}

.h2-float-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.h2-float-card .num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
}

.h2-float-card .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.h2-hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.h2-hero-right img,
.h2-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88);
}

.h2-hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,27,75,0.5) 0%, transparent 40%);
}

.h2-hero-right-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.h2-hero-right-tag .tag-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.h2-hero-right-tag strong {
  font-size: 0.95rem;
  color: #c91c8a;;
  display: block;
}

.h2-hero-right-tag span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .h2-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }
  .h2-hero-left {
    padding: 72px 24px 28px;
    align-items: flex-start;
  }
  .h2-hero-left-inner {
    width: 100%;
    margin: 0;
    max-width: none;
  }
  .h2-hero-title {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }
  .h2-hero-desc {
    font-size: 1rem;
  }
  .h2-hero-right {
    height: 52vw;
    min-height: 300px;
  }
  .h2-floating-cards {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .h2-hero-left {
    padding: 56px 18px 22px;
  }
  .h2-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .h2-hero-ctas .btn,
  .h2-hero-ctas a {
    width: 100%;
    justify-content: center;
  }
  .h2-hero-right-tag {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }
  .h2-hero-right-tag strong {
    font-size: 0.82rem;
  }
  .h2-hero-right-tag span {
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 2: BENTO STATS GRID
   ========================================================================== */
.h2-bento-section {
  padding: 100px 0;
  background: var(--bg-cream);
}

.h2-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.h2-bento-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.h2-bento-cell-a {
  grid-column: span 5;
  background: var(--primary-gradient);
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.h2-bento-cell-b {
  grid-column: span 3;
  background: linear-gradient(135deg, #1e1b4b, #3b1e7a);
  padding: 40px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.h2-bento-cell-c {
  grid-column: span 4;
  background: var(--surface-alt);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h2-bento-cell-d {
  grid-column: span 4;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  padding: 40px 32px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h2-bento-cell-e {
  grid-column: span 8;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.h2-bento-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.h2-bento-label {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h2-bento-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 12px;
}

.h2-bento-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.h2-bento-mini-stat {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 14px;
}

.h2-bento-mini-stat i {
  font-size: 1.5rem;
  color: var(--primary);
}

.h2-bento-mini-stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 800;
  display: block;
  line-height: 1;
}

.h2-bento-mini-stat small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h2-bento-quote {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  font-family: 'Outfit', sans-serif;
}

.h2-bento-quote-author {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 900px) {
  .h2-bento-grid {
    grid-template-columns: 1fr;
  }
  .h2-bento-cell-a,
  .h2-bento-cell-b,
  .h2-bento-cell-c,
  .h2-bento-cell-d,
  .h2-bento-cell-e {
    grid-column: span 1;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 3: THEME WHEEL (Horizontal Scroll Cards with Hover Flip)
   ========================================================================== */
.h2-themes-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--surface-alt) 100%);
  overflow: hidden;
}

.h2-themes-section .section-title {
  color: var(--text-main);
}

.h2-themes-section .section-subtitle {
  color: var(--text-muted);
}

.h2-theme-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 24px 32px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
}

.h2-theme-scroll-track::-webkit-scrollbar {
  height: 6px;
}

.h2-theme-scroll-track::-webkit-scrollbar-track {
  background: transparent;
}

.h2-theme-scroll-track::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

.h2-theme-flip-card {
  flex: 0 0 260px;
  height: 380px;
  scroll-snap-align: start;
  perspective: 1000px;
  cursor: pointer;
}

.h2-theme-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
  transform-style: preserve-3d;
}

.h2-theme-flip-card:hover .h2-theme-flip-inner {
  transform: rotateY(180deg);
}

.h2-theme-flip-front,
.h2-theme-flip-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  overflow: hidden;
}

.h2-theme-flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h2-theme-flip-front-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

.h2-theme-flip-front-overlay h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.h2-theme-flip-front-overlay span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.h2-theme-flip-back {
  transform: rotateY(180deg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.h2-theme-flip-back h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
}

.h2-theme-flip-back p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.h2-theme-flip-back ul {
  margin-bottom: 24px;
}

.h2-theme-flip-back ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.h2-theme-flip-back ul li::before {
  content: '✦';
  color: #fbbf24;
  font-size: 0.7rem;
}

.h2-theme-flip-back .btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.h2-theme-flip-back .btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.14);
}

/* Theme-specific card colors */
.flip-back-princess { background: linear-gradient(140deg, #db2777, #be185d); }
.flip-back-superhero { background: linear-gradient(140deg, #1d4ed8, #1e40af); }
.flip-back-jungle { background: linear-gradient(140deg, #15803d, #166534); }
.flip-back-space { background: linear-gradient(140deg, #1e1b4b, #312e81); }
.flip-back-dino { background: linear-gradient(140deg, #b45309, #92400e); }

/* ==========================================================================
   HOME 2 — SECTION 4: HOW IT WORKS (Animated Step Cards)
   ========================================================================== */
.h2-how-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.h2-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.h2-how-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-amber) 100%);
  z-index: 0;
}

.h2-how-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.h2-how-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.4rem;
  color: var(--primary);
  position: relative;
  transition: all var(--transition-base);
  box-shadow: 0 0 0 8px var(--primary-light);
}

.h2-how-step:hover .h2-how-step-circle {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.1);
}

.h2-how-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
}

.h2-how-step h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.h2-how-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .h2-how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .h2-how-steps::before {
    display: none;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 5: TRUST SHIELD (Certifications + Partner Logos)
   ========================================================================== */
.h2-trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
  position: relative;
  overflow: hidden;
}

.h2-trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.h2-trust-header {
  text-align: center;
  margin-bottom: 52px;
}

.h2-trust-header h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.h2-trust-header p {
  color: rgba(255,255,255,0.65);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.h2-trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.h2-trust-badge-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.h2-trust-badge-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.h2-trust-badge-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

.h2-trust-badge-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.h2-trust-badge-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.5;
}

.h2-trust-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.h2-trust-partner-item {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-fast);
}

.h2-trust-partner-item i {
  font-size: 1.2rem;
}

.h2-trust-partner-item:hover {
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .h2-trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .h2-trust-partners {
    gap: 24px;
  }
  .h2-hero-left {
    padding: 56px 20px 28px;
  }
  .h2-hero-right-tag {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }
  .h2-bento-section,
  .h2-themes-section,
  .h2-how-section,
  .h2-trust-section,
  .h2-experience-section,
  .h2-awards-section,
  .h2-faq-section,
  .h2-booking-widget-section,
  .h2-magazine-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .h2-theme-flip-card {
    flex-basis: 240px;
    height: 340px;
  }
  .h2-exp-tabs {
    flex-wrap: wrap;
  }
  .h2-faq-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .h2-widget-perks {
    grid-template-columns: 1fr;
  }
  .h2-magazine-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .h2-magazine-cta-btns .btn,
  .h2-magazine-cta-btns a {
    width: min(100%, 280px);
    justify-content: center;
  }
  .h2-mag-social-proof {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .h2-hero-left {
    padding: 46px 16px 20px;
  }
  .h2-hero-title {
    font-size: clamp(2rem, 11vw, 2.9rem);
  }
  .h2-hero-desc {
    font-size: 0.96rem;
  }
  .h2-eyebrow {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .h2-floating-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .h2-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .h2-hero-ctas .btn,
  .h2-hero-ctas a {
    width: 100%;
    justify-content: center;
  }
  .h2-bento-section,
  .h2-themes-section,
  .h2-how-section,
  .h2-trust-section,
  .h2-experience-section,
  .h2-awards-section,
  .h2-faq-section,
  .h2-booking-widget-section,
  .h2-magazine-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .h2-bento-grid {
    gap: 16px;
  }
  .h2-bento-cell-a,
  .h2-bento-cell-b,
  .h2-bento-cell-c,
  .h2-bento-cell-d,
  .h2-bento-cell-e {
    padding: 24px 18px;
  }
  .h2-bento-cell-e {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px;
  }
  .h2-bento-cell-e > div:first-child {
    width: 100%;
  }
  .h2-bento-quote {
    font-size: 1.05rem;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .h2-bento-quote-author {
    font-size: 0.8rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .h2-bento-cell-e .btn {
    width: 100%;
    justify-content: center;
  }
  .h2-bento-cell-e .fa-star,
  .h2-bento-cell-e [style*="font-size: 3rem"] {
    font-size: 2.25rem !important;
  }
  .h2-theme-flip-card {
    flex-basis: 220px;
    height: 320px;
  }
  .h2-how-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .h2-how-step {
    padding: 0;
  }
  .h2-trust-badges-grid {
    grid-template-columns: 1fr;
  }
  .h2-trust-header p,
  .h2-widget-content p,
  .h2-magazine-cta p {
    font-size: 0.96rem;
  }
  .h2-exp-image-mosaic {
    height: 280px;
  }
  .h2-exp-award-float {
    position: static;
    margin-top: 12px;
    width: max-content;
    max-width: 100%;
  }
  .h2-faq-grid {
    gap: 32px;
  }
  .h2-faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .h2-faq-sidebar-img {
    width: 100%;
    height: 220px;
    margin-bottom: 0;
    object-fit: cover;
    display: block;
  }
  .h2-faq-sidebar-cta {
    padding: 22px 18px;
  }
  .h2-faq-sidebar-cta h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .h2-faq-question {
    padding: 16px 18px;
    font-size: 0.94rem;
  }
  .h2-faq-answer {
    padding: 0 18px;
  }
  .h2-widget-grid {
    gap: 28px;
  }
  .h2-widget-content h2 {
    line-height: 1.2;
  }
  .h2-widget-perk {
    padding: 12px 10px;
  }
  .h2-booking-form-card {
    padding: 20px 18px;
  }
  .h2-form-row {
    gap: 12px;
  }
  .h2-form-group input,
  .h2-form-group select {
    padding: 12px 14px;
  }
  .h2-magazine-cta {
    padding: 88px 0;
  }
  .h2-magazine-cta h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }
  .h2-mag-avatars img {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 6: DUAL-COLUMN EXPERIENCE SHOWCASE
   ========================================================================== */
.h2-experience-section {
  padding: 100px 0;
  background: var(--surface-alt);
}

.h2-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.h2-exp-image-mosaic {
  position: relative;
  height: 520px;
}

.h2-exp-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.h2-exp-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.h2-exp-img-accent {
  position: absolute;
  top: 55%;
  left: 5%;
  width: 40%;
  height: 35%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--bg-white);
}

.h2-exp-award-float {
  position: absolute;
  top: 32px;
  right: 8%;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.h2-exp-award-float i {
  font-size: 1.5rem;
  color: var(--accent-amber);
}

.h2-exp-award-float strong {
  font-size: 0.88rem;
  color: var(--text-main);
  display: block;
}

.h2-exp-award-float span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.h2-exp-content {}

.h2-exp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.h2-exp-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.h2-exp-tab.active,
.h2-exp-tab:hover {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.h2-exp-tab-panel { display: none; }
.h2-exp-tab-panel.active { display: block; }

.h2-exp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.h2-exp-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.h2-exp-feature-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 94, 136, 0.1);
}

.h2-exp-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.h2-exp-feature-item h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.h2-exp-feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .h2-exp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .h2-exp-image-mosaic {
    height: 360px;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 7: AWARDS & RECOGNITION TICKER
   ========================================================================== */
.h2-awards-section {
  padding: 80px 0;
  background: var(--bg-white);
}

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

.h2-award-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-subtle);
  background: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.h2-award-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.h2-award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.h2-award-card:hover::before {
  opacity: 0.04;
}

.h2-award-trophy {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.h2-award-trophy.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #fff; }
.h2-award-trophy.silver { background: linear-gradient(135deg, #94a3b8, #64748b); color: #fff; }
.h2-award-trophy.bronze { background: linear-gradient(135deg, #fb923c, #ea580c); color: #fff; }
.h2-award-trophy.pink { background: var(--primary-gradient); color: #fff; }
.h2-award-trophy.purple { background: var(--secondary-gradient); color: #fff; }
.h2-award-trophy.mint { background: linear-gradient(135deg, #10b981, #059669); color: #fff; }

.h2-award-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.h2-award-card .award-year {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.h2-award-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .h2-awards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 8: INTERACTIVE FAQ ACCORDION
   ========================================================================== */
.h2-faq-section {
  padding: 100px 0;
  background: var(--surface-alt);
}

.h2-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.h2-faq-sidebar {}

.h2-faq-sidebar-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  object-fit: cover;
  height: 260px;
}

.h2-faq-sidebar-cta {
  padding: 28px;
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
}

.h2-faq-sidebar-cta h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.h2-faq-sidebar-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.h2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.h2-faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.h2-faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.h2-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.h2-faq-question:hover {
  color: var(--primary);
}

.h2-faq-item.open .h2-faq-question {
  color: var(--primary);
}

.h2-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.h2-faq-item.open .h2-faq-toggle {
  background: var(--primary-gradient);
  color: #fff;
  transform: rotate(45deg);
}

.h2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
}

.h2-faq-item.open .h2-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.h2-faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .h2-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .h2-faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .h2-faq-sidebar-img {
    height: 200px;
    margin-bottom: 0;
    width: 100%;
    display: block;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 9: LIVE AVAILABILITY MINI WIDGET
   ========================================================================== */
.h2-booking-widget-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-white), var(--primary-light));
}

.h2-widget-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.h2-widget-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.h2-widget-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.h2-widget-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.h2-widget-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
}

.h2-widget-perk i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.h2-widget-perk strong {
  font-size: 0.88rem;
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}

.h2-widget-perk span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.h2-booking-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.h2-booking-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.h2-booking-form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.h2-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.h2-form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.h2-form-group input,
.h2-form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--bg-cream);
  color: var(--text-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.h2-form-group input:focus,
.h2-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,94,136,0.12);
  background: var(--bg-white);
}

.h2-avail-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--accent-mint-light);
  border: 1px solid #a7f3d0;
  margin-bottom: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-success);
}

.h2-avail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

@media (max-width: 900px) {
  .h2-widget-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .h2-widget-content {
    text-align: center;
  }
  .h2-widget-perks {
    grid-template-columns: 1fr 1fr;
  }
  .h2-booking-form-card {
    padding: 28px;
  }
  .h2-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .h2-widget-grid {
    gap: 28px;
  }
  .h2-widget-content {
    text-align: left;
  }
  .h2-widget-content h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
    line-height: 1.18;
  }
  .h2-widget-content p {
    font-size: 0.96rem;
    margin-bottom: 24px;
  }
  .h2-widget-perks {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .h2-widget-perk {
    padding: 12px 10px;
  }
  .h2-booking-form-card {
    padding: 20px 18px;
  }
  .h2-booking-form-card h3 {
    font-size: 1.2rem;
  }
  .h2-avail-indicator {
    font-size: 0.8rem;
    padding: 10px 12px;
  }
  .h2-form-group input,
  .h2-form-group select {
    padding: 12px 14px;
  }
}

/* ==========================================================================
   HOME 2 — SECTION 10: MAGAZINE-STYLE FINAL CTA
   ========================================================================== */
.h2-magazine-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #ff5e88 0%, #f43f5e 30%, #7c5cbf 70%, #4f46e5 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.h2-magazine-cta::before {
  content: '🎂';
  position: absolute;
  top: -20px;
  right: 80px;
  font-size: 8rem;
  opacity: 0.08;
  transform: rotate(-15deg);
}

.h2-magazine-cta::after {
  content: '🎈';
  position: absolute;
  bottom: -20px;
  left: 60px;
  font-size: 6rem;
  opacity: 0.08;
  transform: rotate(10deg);
}

.h2-magazine-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.h2-mag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #ffe4ec;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.h2-magazine-cta h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.h2-magazine-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 44px;
}

.h2-magazine-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.h2-magazine-cta .btn-white {
  background: #fff;
  color: var(--primary);
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.h2-magazine-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
  color: var(--primary-hover);
}

.h2-magazine-cta .btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.h2-magazine-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.h2-mag-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.h2-mag-avatars {
  display: flex;
}

.h2-mag-avatars img {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-left: -10px;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.h2-mag-avatars img:first-child {
  margin-left: 0;
}

.h2-mag-proof-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.h2-mag-proof-text strong {
  color: #fff;
}

/* ==========================================================================
   EXTRA SECTIONS FOR EXISTING PAGES — Shared Utilities
   ========================================================================== */

/* Process Step Card */
.extra-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.extra-step-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.extra-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.extra-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.extra-step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 10px auto 20px;
}

.extra-step-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.extra-step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature Split Section */
.extra-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.extra-split-grid.reverse {
  direction: rtl;
}

.extra-split-grid.reverse > * {
  direction: ltr;
}

.extra-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.extra-split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.extra-split-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}

.extra-split-img-badge i {
  color: var(--primary);
  font-size: 1.2rem;
}

.extra-split-img-badge strong {
  font-size: 0.88rem;
  color: var(--text-main);
  display: block;
}

.extra-split-img-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.extra-split-content {}

.extra-split-content .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.extra-split-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.extra-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}

.extra-checklist li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-mint-light);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Testimonials Carousel Style */
.extra-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.extra-testimonial-card {
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.extra-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
}

.extra-testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.extra-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--accent-amber);
}

.extra-testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.extra-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.extra-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.extra-testimonial-author strong {
  font-size: 0.9rem;
  color: var(--text-main);
  display: block;
}

.extra-testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* CTA Banner */
.extra-cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.extra-cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  left: -100px;
}

.extra-cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -150px;
  right: -50px;
}

.extra-cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.extra-cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.extra-cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.65;
}

.extra-cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Feature Icon Cards Grid */
.extra-icon-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.extra-icon-card {
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: all var(--transition-base);
}

.extra-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.extra-icon-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  color: #fff;
}

.extra-icon-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.extra-icon-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive for extra sections */
.blog-topic-hero {
  padding: 150px 0 84px;
  background-color: #102a43;
  background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.84), rgba(16, 42, 67, 0.4)), url('../images/hero_venue.jpg');
  background-position: center;
  background-size: cover;
  color: #fff;
}

#themes-hero {
  background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.8), rgba(16, 42, 67, 0.28)), url('../images/theme_princess.jpg');
}

#entertainment-hero {
  background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.8), rgba(16, 42, 67, 0.28)), url('../images/entertainment.jpg');
}

.blog-topic-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 56px;
  align-items: end;
}

.blog-topic-hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 18px 0;
}

.blog-topic-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.75;
}

.blog-topic-hero-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 50px rgba(8, 25, 38, 0.25);
}

.blog-topic-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.blog-topic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
}

.blog-topic-content {
  max-width: 760px;
  font-size: 1.06rem;
  line-height: 1.85;
}

.blog-topic-content p,
.blog-topic-content ul,
.blog-topic-content ol {
  margin-bottom: 24px;
}

.blog-topic-content h2 {
  margin: 44px 0 14px;
  font-size: 1.75rem;
}

.blog-topic-content ul,
.blog-topic-content ol {
  padding-left: 24px;
}

.blog-topic-content li {
  margin-bottom: 10px;
}

.blog-topic-callout {
  margin: 32px 0;
  padding: 26px 28px;
  border-left: 5px solid var(--accent-amber);
  border-radius: var(--radius-md);
  background: var(--accent-amber-light);
}

.blog-topic-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-main);
}

.blog-topic-aside {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
}

.blog-topic-aside h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.blog-topic-aside a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-topic-aside a:last-child {
  border-bottom: 0;
}

.blog-topic-aside a i {
  margin-top: 4px;
  color: var(--primary);
}

@media (max-width: 900px) {
  .blog-topic-hero .container,
  .blog-topic-layout {
    grid-template-columns: 1fr;
  }

  .blog-topic-hero-image {
    height: 280px;
  }

  .blog-topic-aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .extra-steps-grid {
    grid-template-columns: 1fr;
  }
  .extra-split-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .extra-split-grid.reverse {
    direction: ltr;
  }
  .extra-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .extra-icon-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .extra-icon-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Profile Images - Testimonials */
.author-avatar-badge {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar-badge img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
