/* ==========================================================================
   CASINO GETAWAYS CANADA - DESIGN SPECIFICATION & COMPONENT STYLING
   Aesthetic: Premium Dark Experience with Electric Magenta Accents,
              Photographic Storytelling, Glassmorphism, and Glowing Gradients.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  /* Color Tokens from UI Spec */
  --bg-primary: #08061F;
  --bg-secondary: #0E0A2B;
  --bg-card: #15112F;
  --bg-card-light: #1C173A;
  --bg-black: #050412;
  --primary: #FF00B8;
  --primary-dark: #D90099;
  --primary-light: #FF39C7;
  --purple: #6C35FF;
  --purple-dark: #24104D;
  --blue: #252F78;
  --white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: #C7C3D8;
  --text-muted: #85819D;
  --border: rgba(255, 255, 255, 0.12);
  --border-active: #FF00B8;
  --success: #4DFFB5;
  --yellow: #F7D75A;

  /* Gradients from UI Spec */
  --gradient-hero-overlay: linear-gradient(90deg, rgba(8, 6, 31, 0.95) 0%, rgba(8, 6, 31, 0.65) 50%, rgba(8, 6, 31, 0.2) 100%);
  --gradient-magenta-purple: linear-gradient(135deg, #FF00B8 0%, #7435FF 100%);
  --gradient-purple-blue: linear-gradient(135deg, #19114A 0%, #27256E 100%);
  --gradient-speaker-banner: linear-gradient(100deg, #17105A 0%, #7C25A8 50%, #FF00B8 100%);
  --gradient-footer: linear-gradient(180deg, #08061F 0%, #050412 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Effects */
  --pink-glow: 0 0 25px rgba(255, 0, 184, 0.35);
  --purple-glow: 0 0 35px rgba(108, 53, 255, 0.28);
  --card-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: 1px solid rgba(255, 255, 255, 0.12);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Image default & placeholder styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: var(--bg-card);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* Typography Presets */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

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

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Buttons */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  height: 42px;
  padding: 0 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 5px 18px rgba(255, 0, 184, 0.28);
  transition: all 0.25s ease;
}

.primary-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 184, 0.45);
  color: var(--white);
}

.secondary-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  height: 42px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  border: var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: #07051A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 0;
  font-size: 11px;
  color: var(--text-muted);
  width: 100%;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.announcement-badge {
  background: rgba(255, 0, 184, 0.15);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(8, 6, 31, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-fallback-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  background: var(--gradient-magenta-purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 14px;
  box-shadow: var(--pink-glow);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-subtitle {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-link.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Mobile Drawer Menu */
.mobile-nav-drawer {
  display: none;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 20px 30px;
  width: 100%;
}

.mobile-nav-drawer.open {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ==========================================================================
   HERO SECTION (Conference / Event Style)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero-overlay);
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
  display: block;
}

.hero-meta-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.hero-meta-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 0, 184, 0.18);
  border: 1px solid rgba(255, 0, 184, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

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

.hero-floating-badge {
  position: absolute;
  right: 50px;
  bottom: 80px;
  z-index: 4;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-magenta-purple);
  box-shadow: var(--pink-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  color: var(--white);
  animation: floatPulse 4s ease-in-out infinite;
}

.badge-inner-star {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 2px;
}

.badge-text-primary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1.15;
}

.badge-text-sub {
  font-size: 9px;
  opacity: 0.85;
}

/* ==========================================================================
   HORIZONTAL MARQUEE / TICKER
   ========================================================================== */
.ticker-wrap {
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  white-space: nowrap;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   IMAGE-CONTENT SPLIT (ABOUT SECTION)
   ========================================================================== */
.split-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.split-visual {
  position: relative;
}

.split-photo-frame {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--primary);
  overflow: hidden;
  box-shadow: var(--pink-glow);
}

.split-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.split-photo-frame:hover .split-photo {
  transform: scale(1.03);
}

.split-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 6, 31, 0.9);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-checklist {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 10px rgba(255, 0, 184, 0.5);
}

/* ==========================================================================
   DESTINATIONS GRID (Cards)
   ========================================================================== */
.destinations-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

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

.dest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--pink-glow);
}

.dest-media-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dest-card:hover .dest-img {
  transform: scale(1.05);
}

.dest-region-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 6, 31, 0.88);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 0, 184, 0.3);
}

.dest-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-title {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--white);
}

.dest-loc {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.dest-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.dest-specs-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.dest-specs-row span {
  color: var(--white);
}

/* ==========================================================================
   VIDEO FEATURE / SHOWCASE CARD
   ========================================================================== */
.showcase-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.video-feature-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
}

.video-feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 6, 31, 0.4) 0%, rgba(8, 6, 31, 0.85) 100%);
}

.video-center-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  padding: 20px;
}

.play-pulse-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: var(--pink-glow);
  transition: all 0.3s ease;
}

.play-pulse-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(255, 0, 184, 0.7);
}

.play-pulse-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 4px;
}

.video-card-title {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

/* Metrics Row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.metric-cell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.25s ease;
}

.metric-cell:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 8px;
}

.metric-num span {
  color: var(--primary);
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CONFERENCE-STYLE SCHEDULE / ITINERARY TABS
   ========================================================================== */
.schedule-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.day-tabs-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.day-tab-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.day-tab-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.day-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(255, 0, 184, 0.35);
}

.schedule-panel {
  display: none;
}

.schedule-panel.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.schedule-item-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 100px 1fr 140px;
  gap: 24px;
  align-items: center;
  transition: all 0.25s ease;
}

.schedule-item-card:hover {
  background: var(--bg-card-light);
  border-color: rgba(255, 0, 184, 0.4);
  transform: translateX(4px);
}

.sched-time {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.sched-content-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.sched-content-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.sched-tag {
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   VIVID 3-COLOR GRADIENT PROMO BANNER
   ========================================================================== */
.promo-banner-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
}

.promo-banner-card {
  background: var(--gradient-speaker-banner);
  border-radius: var(--radius-md);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 15px 40px rgba(124, 37, 168, 0.35);
  position: relative;
  overflow: hidden;
}

.promo-banner-content h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.promo-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.promo-side-visual {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-side-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ==========================================================================
   PACKAGES / TICKET PRICING CARDS
   ========================================================================== */
.packages-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

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

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.package-card.featured {
  background: linear-gradient(145deg, #15112F 0%, #24104D 100%);
  border: 1px solid var(--primary);
  box-shadow: var(--pink-glow);
  transform: translateY(-10px);
}

.package-card.featured:hover {
  transform: translateY(-14px);
}

.package-tier-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}

.package-card.featured .package-tier-label {
  color: var(--primary-light);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 8px;
}

.package-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.package-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.package-features-list {
  list-style: none;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-feature-li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.feature-bullet {
  color: var(--primary);
  font-size: 14px;
  font-weight: bold;
}

.package-btn-wrap {
  margin-top: auto;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.testimonial-split-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 40px;
}

.testimonial-photo-frame {
  height: 320px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote-icon {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.0;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
}

.testimonial-quote-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author-role {
  font-size: 12px;
  color: var(--primary);
}

/* ==========================================================================
   ACCORDION & SPLIT FAQ
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.faq-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.25s ease;
}

.accordion-item.open {
  border-color: var(--primary);
  background: var(--bg-card-light);
}

.accordion-trigger {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.accordion-icon {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 20px 18px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.accordion-item.open .accordion-content {
  display: block;
}

.faq-visual-side {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ==========================================================================
   FULL WIDTH ATMOSPHERIC CTA
   ========================================================================== */
.atmosphere-cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.cta-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.cta-overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(8, 6, 31, 0.7) 0%, rgba(8, 6, 31, 0.95) 100%);
}

.cta-inner-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* ==========================================================================
   GETAWAY SPOTLIGHTS / ARTICLE CARDS (NO BLOG / NO FORMS)
   ========================================================================== */
.spotlights-section {
  padding: 90px 0;
  background-color: var(--bg-secondary);
}

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

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.spotlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--pink-glow);
}

.spotlight-media {
  height: 180px;
  overflow: hidden;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-img {
  transform: scale(1.05);
}

.spotlight-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.spotlight-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.spotlight-title {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.spotlight-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.spotlight-link {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spotlight-link:hover {
  color: var(--primary-light);
}

/* ==========================================================================
   INTERACTIVE STAY CALCULATOR
   ========================================================================== */
.calc-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--card-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.calc-control-group {
  margin-bottom: 22px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.calc-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  cursor: pointer;
}

.calc-select {
  width: 100%;
  background: var(--bg-card-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 10px 14px;
  font-size: 13px;
  outline: none;
}

.calc-results-tile {
  background: rgba(255, 0, 184, 0.05);
  border: 1px solid rgba(255, 0, 184, 0.25);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-secondary);
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  margin-top: 10px;
  border-top: 2px solid var(--primary);
}

.calc-total-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
}

.calc-total-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}

/* ==========================================================================
   FOOTER (Conference Aesthetic, Dark, No Newsletter Form)
   ========================================================================== */
.site-footer {
  background: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px;
  width: 100%;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-col p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 14px 0 20px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-disclaimer-card strong {
  color: var(--text-secondary);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: #6F6A83;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEALS
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 0 25px rgba(255, 0, 184, 0.4);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 0 38px rgba(255, 0, 184, 0.65);
  }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop, Tablet, Mobile)
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .destinations-grid,
  .spotlights-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

  .package-card.featured:hover {
    transform: translateY(-6px);
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid {
    gap: 40px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .promo-banner-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .nav-menu,
  .header-cta-btn {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .hero-section {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .hero-floating-badge {
    position: static;
    margin-top: 30px;
    width: 100px;
    height: 100px;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-photo {
    height: 280px;
  }

  .destinations-grid,
  .spotlights-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .schedule-item-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sched-tag {
    text-align: left;
  }

  .testimonial-split-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .testimonial-photo-frame {
    height: 220px;
  }

  .faq-split-grid {
    grid-template-columns: 1fr;
  }

  .faq-visual-side {
    position: static;
    display: none;
  }

  .video-feature-card {
    height: 320px;
  }

  .metrics-row {
    grid-template-columns: 1fr;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .calc-card-box {
    padding: 24px 18px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .announcement-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
