/* =========================================================
   AURORA THEME DESIGN SYSTEM - ICECREAMAICE.MY.ID
   ========================================================= */
:root {
  /* Brand Colors */
  --primary-polar: #0084ff;
  --primary-cyan: #00d2ff;
  --primary-cyan-soft: #e0f7ff;
  --aice-red: #e11d48;
  --aice-rose: #ff3366;
  --aice-gold: #f59e0b;
  --aice-amber-light: #fffbeb;
  --accent-emerald: #10b981;
  --accent-purple: #8b5cf6;

  /* Neutral Surface Colors */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-dark: #050e1d;
  --bg-dark-card: #0b1a30;
  --bg-glass-light: rgba(255, 255, 255, 0.92);
  --bg-glass-dark: rgba(5, 14, 29, 0.88);

  /* Typography Colors */
  --text-main: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #ffffff;
  --text-light-sub: #cbd5e1;

  /* Borders & Shadows */
  --border-light: rgba(226, 232, 240, 0.9);
  --border-glass: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.16);
  --shadow-glow-cyan: 0 8px 25px rgba(0, 210, 255, 0.35);
  --shadow-glow-rose: 0 8px 25px rgba(225, 29, 72, 0.35);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =========================================================
   TOP ANNOUNCEMENT STRIP
   ========================================================= */
.top-announcement-strip {
  background: linear-gradient(90deg, #050e1d, #0b1a30, #050e1d);
  color: #ffffff;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(0, 210, 255, 0.2);
  position: relative;
  z-index: 1002;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.strip-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
}

.flash-sale-badge {
  background: linear-gradient(135deg, var(--aice-rose), var(--aice-red));
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
  white-space: nowrap;
}

.strip-actions-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.strip-wa-link {
  color: #38ef7d;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.strip-wa-link:hover {
  color: #ffffff;
}

.strip-divider {
  color: rgba(255, 255, 255, 0.25);
}

.strip-report-link {
  color: #fbbf24;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  white-space: nowrap;
}

.strip-report-link:hover {
  color: #ffffff;
}

/* =========================================================
   EDGE-TO-EDGE MODERN HEADER (STREAMLINED 5 ITEMS)
   ========================================================= */
.site-header-navbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.site-header-navbar.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--primary-polar);
  box-shadow: var(--shadow-sm);
}

.brand-text-holder {
  display: flex;
  flex-direction: column;
}

.brand-main-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.brand-main-name span {
  color: var(--primary-polar);
}

.brand-sub-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--aice-red);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.brand-sub-badge i {
  color: var(--accent-emerald);
}

/* Nav Menu */
.header-nav-menu {
  display: flex;
  align-items: center;
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-link-btn {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link-btn:hover,
.nav-link-btn.active {
  color: var(--primary-polar);
  background: var(--primary-cyan-soft);
}

.mobile-drawer-cta-item {
  display: none;
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-header-consult {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-header-consult:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.header-hamburger {
  display: none;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--text-main);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.header-hamburger:hover {
  background: var(--primary-cyan-soft);
  color: var(--primary-polar);
}

/* =========================================================
   HERO AURORA SECTION (1.JPG)
   ========================================================= */
.hero-aurora-section {
  position: relative;
  padding: 3.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  overflow: hidden;
}

.hero-aurora-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(0, 210, 255, 0.2);
  top: -100px;
  right: -50px;
}

.glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(255, 51, 102, 0.15);
  bottom: -50px;
  left: -50px;
}

.hero-grid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 132, 255, 0.3);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-polar);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 132, 255, 0.12);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aice-red);
  box-shadow: 0 0 0 rgba(225, 29, 72, 0.4);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-polar), var(--aice-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-chips-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-chip {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.hero-chip i {
  color: var(--primary-polar);
}

.hero-cta-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-polar), #0060cc);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-glow-cyan);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 132, 255, 0.45);
  color: #ffffff;
}

.btn-hero-secondary {
  background: #ffffff;
  color: #128C7E;
  border: 2px solid #25D366;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: #25D366;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.hero-metrics-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-polar);
  line-height: 1;
}

.metric-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Hero Media Poster & Floating Badges */
.hero-media-pane {
  position: relative;
}

.hero-poster-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.hero-poster-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 132, 255, 0.25);
}

.hero-poster-frame img {
  width: 100%;
  display: block;
}

.zoom-pill-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(5, 14, 29, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}

.floating-stat-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.float-top-right {
  top: -15px;
  right: -15px;
}

.float-bottom-left {
  bottom: -20px;
  left: -15px;
  animation-delay: -2s;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.stat-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bg-gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg-emerald { background: linear-gradient(135deg, #10b981, #059669); }

.floating-stat-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.2;
}

.floating-stat-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* =========================================================
   COMMON SECTION STYLES
   ========================================================= */
.section-block {
  padding: 5.5rem 0;
  position: relative;
}

.bg-surface { background-color: var(--bg-surface); }
.bg-light { background-color: var(--bg-body); }

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.badge-sub-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-cyan-soft);
  color: var(--primary-polar);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.section-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =========================================================
   SECTION 1: MENGAPA BERMITRA (5.MENGAPA.JPG)
   ========================================================= */
.feature-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.showcase-posters-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.showcase-poster-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.showcase-poster-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-cards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.benefit-card {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  transition: var(--transition);
}

.benefit-card:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-polar);
}

.benefit-icon-sq {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-icon-sq i {
  display: inline-block;
  line-height: 1;
}

.icon-cyan { background: #e0f7ff; color: #0084ff; }
.icon-emerald { background: #d1fae5; color: #059669; }
.icon-amber { background: #fef3c7; color: #d97706; }
.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-rose { background: #ffe4e6; color: #e11d48; }

.benefit-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =========================================================
   SECTION 2: DAPAT APA SAJA / BONUS MEWAH (9.DAPAT-APA.JPG)
   ========================================================= */
.bonus-showcase-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.bonus-poster-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.bonus-poster-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bonus-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bonus-pill-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.bonus-pill-card.highlight-glow {
  background: linear-gradient(135deg, #fffbeb, #ffffff);
  border: 1.5px solid #fcd34d;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.12);
}

.bonus-pill-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bonus-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-cyan-soft);
  color: var(--primary-polar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.highlight-glow .bonus-icon {
  background: #fef3c7;
  color: #d97706;
}

.bonus-pill-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.bonus-pill-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* =========================================================
   SECTION 3: PILIHAN PAKET USAHA (7.JENIS-PAKET & 2.HARGA)
   ========================================================= */
.category-filter-nav {
  display: inline-flex;
  background: var(--bg-surface-alt);
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  gap: 0.4rem;
  margin-top: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-secondary);
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
  background: #ffffff;
  color: var(--primary-polar);
  box-shadow: var(--shadow-sm);
}

/* Highlight Banner: 7.jenis-paket.jpg */
.package-program-banner-wrap {
  max-width: 960px;
  margin: 0 auto 3.5rem;
}

.package-program-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.package-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 132, 255, 0.2);
}

.package-program-card img {
  width: 100%;
  height: auto;
  display: block;
}

.packages-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.package-aurora-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.package-aurora-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-polar);
}

.package-aurora-card.card-featured {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
  border: 2px solid #f59e0b;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.18);
  transform: scale(1.02);
}

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

.card-top-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tag-promo { background: #e0f2fe; color: #0284c7; }
.tag-popular { background: #dbeafe; color: #1d4ed8; }
.tag-bestseller { background: linear-gradient(135deg, #f59e0b, #d97706); color: #ffffff; box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4); }
.tag-hawker { background: #f3e8ff; color: #7e22ce; }
.tag-hawker-electric { background: #ffedd5; color: #c2410c; }

.package-header {
  text-align: center;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.package-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  min-height: 2.9rem;
}

.package-price-box {
  margin-top: 1rem;
  background: var(--bg-surface-alt);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
}

.price-lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.price-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary-polar);
}

.gold-glow {
  color: #d97706;
}

.package-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.spec-row i {
  color: var(--accent-emerald);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.highlight-spec {
  color: var(--text-main);
  background: #fef3c7;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
}

.highlight-spec i {
  color: #d97706;
}

.btn-order-package {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-order-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-gold-action {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-gold-action:hover {
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.6);
}

/* Single Centered Poster (2.harga.jpg) */
.single-centered-poster-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.poster-card-centered {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.poster-card-centered:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 132, 255, 0.2);
}

.poster-card-centered img {
  width: 100%;
  height: auto;
  display: block;
}

.duo-posters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.poster-card-neo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
  background: #ffffff;
}

.poster-card-neo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* =========================================================
   SECTION 4: PAKET ACARA & EVENT
   ========================================================= */
.event-cards-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.event-card-box {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.event-card-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.event-card-box.featured-event {
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.event-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--primary-polar);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.event-badge.bg-gold {
  background: #f59e0b;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.event-price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary-polar);
  margin-bottom: 1.5rem;
}

.featured-event .event-price {
  color: #d97706;
}

.event-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.event-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.event-checklist li i {
  color: var(--accent-emerald);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.btn-event-order {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.btn-event-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

/* =========================================================
   SECTION 5: KATALOG VARIAN RASA (8.JENIS-KATALOG.JPG)
   ========================================================= */
.catalog-centered-frame {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.catalog-centered-frame:hover {
  transform: scale(1.01);
  box-shadow: 0 25px 60px rgba(0, 132, 255, 0.2);
}

.catalog-centered-frame img {
  width: 100%;
}

/* =========================================================
   SECTION 6: PENGIRIMAN & EKSPEDISI (6.GRATIS-ONGKIR.JPG)
   ========================================================= */
.shipping-layout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.shipping-poster-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.shipping-poster-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.shipping-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shipping-entry-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.shipping-entry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-polar);
}

.ship-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-cyan-soft);
  color: var(--primary-polar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.shipping-entry-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.shipping-entry-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =========================================================
   SECTION 7: FORMULIR PENDAFTARAN
   ========================================================= */
.registration-main-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.registration-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reg-notice-box {
  background: #ffffff;
  border: 1.5px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.reg-notice-box h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reg-notice-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.reg-notice-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #78350f;
  line-height: 1.45;
}

.reg-notice-box li i {
  color: #059669;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.registration-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-lg);
}

.form-header-title {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.form-header-title h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-header-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.form-group-field {
  margin-bottom: 1.25rem;
}

.form-group-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.45rem;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-surface-alt);
  color: var(--text-main);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  outline: none;
  border-color: var(--primary-polar);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 132, 255, 0.15);
}

.form-control-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Upload Instruction Box */
.form-upload-instruction-card {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1.5px dashed #0284c7;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.inst-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.inst-content strong {
  display: block;
  font-size: 0.88rem;
  color: #0369a1;
  margin-bottom: 0.2rem;
}

.inst-content p {
  font-size: 0.82rem;
  color: #075985;
  line-height: 1.45;
  margin: 0;
}

.btn-submit-registration {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-submit-registration:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

/* =========================================================
   SECTION 8: FAQ ACCORDION
   ========================================================= */
.faq-accordion-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-polar);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.faq-icon {
  font-size: 0.95rem;
  color: var(--primary-polar);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer-box {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer-box {
  display: block;
}

/* =========================================================
   LUXURY DARK HORIZON FOOTER UI (SPLIT HUB DESIGN)
   ========================================================= */
.site-footer-horizon {
  background: linear-gradient(180deg, #061124 0%, #020712 100%);
  color: #ffffff;
  padding: 5rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(0, 210, 255, 0.25);
}

.footer-horizon-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

/* Left Hero Hub Card */
.footer-hero-hub-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hub-brand-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hub-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-cyan);
}

.hub-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.hub-title span {
  color: var(--primary-cyan);
}

.hub-tagline {
  font-size: 0.72rem;
  color: #38ef7d;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.hub-desc-text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

.hub-cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hub-cert-badges span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hub-cert-badges span i {
  color: var(--accent-emerald);
}

.hub-contact-cta {
  margin-top: 0.5rem;
}

.hub-wa-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.hub-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

/* Center Links Hub */
.footer-links-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.links-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary-cyan);
  border-radius: var(--radius-pill);
}

.links-title i {
  color: var(--primary-cyan);
  font-size: 0.95rem;
}

.clean-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.clean-link-list li a {
  font-size: 0.86rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.clean-link-list li a i {
  font-size: 0.7rem;
  color: var(--primary-cyan);
}

.clean-link-list li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Right Office Hub Card */
.footer-office-hub-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.office-hub-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.office-hub-title i {
  color: var(--primary-cyan);
}

.office-entry-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.office-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: #cbd5e1;
}

.office-entry i {
  color: var(--primary-cyan);
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.office-entry strong {
  display: block;
  color: #ffffff;
  font-size: 0.84rem;
  margin-bottom: 0.1rem;
}

.office-entry p {
  margin: 0;
  line-height: 1.4;
  color: #94a3b8;
}

.office-wa-highlight {
  color: #fbbf24;
  font-size: 1.05rem;
  font-weight: 800;
  display: inline-block;
}

.office-wa-highlight:hover {
  text-decoration: underline;
  color: #fef08a;
}

.office-social-and-report {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.btn-report-hub {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-report-hub:hover {
  background: var(--primary-polar);
  border-color: var(--primary-cyan);
  color: #ffffff;
}

.hub-social-icons {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.social-circle-hub {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-circle-hub:hover {
  background: var(--primary-polar);
  border-color: var(--primary-cyan);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.4);
}

/* Bottom Bar Horizon */
.footer-horizon-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #94a3b8;
}

.horizon-links-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.horizon-links-group a {
  color: #cbd5e1;
  transition: var(--transition);
}

.horizon-links-group a:hover {
  color: var(--primary-cyan);
}

/* =========================================================
   MODAL: FORM LAPORAN & SARAN
   ========================================================= */
.aurora-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 14, 29, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.aurora-modal-overlay.active .aurora-modal-card {
  transform: translateY(0);
}

.aurora-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.aurora-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.aurora-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-surface-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.aurora-modal-close:hover {
  background: var(--aice-rose);
  color: #ffffff;
}

.modal-card-header {
  margin-bottom: 1.5rem;
}

.modal-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-main);
}

.modal-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.form-label-aurora {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

/* =========================================================
   UNIVERSAL LIGHTBOX MODAL
   ========================================================= */
.lightbox-aurora-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 10, 20, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10015;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-aurora-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-aurora-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-aurora-box img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-aurora-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-aurora-close:hover {
  color: var(--aice-rose);
  transform: scale(1.15);
}

.lightbox-aurora-caption {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
}

/* =========================================================
   FLOATING WA & SLEEK LIVE TOAST CARD
   ========================================================= */
.floating-wa-launcher {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-size: 1.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa-launcher:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
  color: #ffffff;
}

/* Sleek Redesigned Glass Toast Card */
.live-toast-glass-card {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 132, 255, 0.25);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 380px;
  z-index: 998;
  transform: translateY(140px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.live-toast-glass-card.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-glow-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary-cyan), var(--primary-polar));
}

.toast-avatar-box {
  position: relative;
  flex-shrink: 0;
}

.toast-initial-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-polar), #005bb5);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 132, 255, 0.3);
}

.toast-check-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  font-size: 0.85rem;
  color: #10b981;
  background: #ffffff;
  border-radius: 50%;
}

.toast-text-area {
  display: flex;
  flex-direction: column;
}

.toast-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.15rem;
}

.toast-top-row strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
}

.toast-time-tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.toast-desc-text {
  font-size: 0.78rem;
  color: #0284c7;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================= */
@media (max-width: 1080px) {
  .hero-grid-layout,
  .feature-showcase-grid,
  .bonus-showcase-wrapper,
  .shipping-layout-grid,
  .registration-main-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .packages-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .footer-horizon-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-office-hub-card {
    grid-column: span 2;
  }

  .hero-main-title {
    font-size: 2.6rem;
  }

  /* Drawer Navigation Mobile */
  .site-header-navbar {
    padding: 0.65rem 0;
  }

  .header-nav-menu {
    position: fixed;
    top: 70px;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.35rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

  .header-nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links-list {
    flex-direction: column;
    width: 100%;
    gap: 0.35rem;
  }

  .nav-link-btn {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .mobile-drawer-cta-item {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
  }

  .btn-drawer-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  }

  .header-action-group .btn-header-consult {
    display: none !important;
  }

  .header-hamburger {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .top-announcement-strip {
    padding: 0.45rem 0.5rem;
    font-size: 0.74rem;
  }

  .top-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }

  .strip-badge-wrap {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .strip-actions-wrap {
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .brand-main-name {
    font-size: 1.1rem;
  }

  .brand-sub-badge {
    font-size: 0.65rem;
  }

  .header-hamburger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    font-size: 1.05rem;
  }

  .hero-aurora-section {
    padding: 2rem 0 3.5rem;
  }

  .hero-main-title {
    font-size: 1.95rem;
    line-height: 1.22;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-chip {
    width: 100%;
    font-size: 0.78rem;
  }

  .hero-cta-flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .floating-stat-badge {
    padding: 0.5rem 0.85rem;
    gap: 0.5rem;
  }

  .float-top-right {
    top: -10px;
    right: -5px;
  }

  .float-bottom-left {
    bottom: -15px;
    left: -5px;
  }

  .stat-icon-circle {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .section-block {
    padding: 3.5rem 0;
  }

  .section-headline {
    font-size: 1.75rem;
  }

  .section-subtext {
    font-size: 0.92rem;
  }

  .feature-cards-layout,
  .bonus-cards-grid,
  .packages-grid-layout,
  .duo-posters-grid,
  .event-cards-duo,
  .form-row-2,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .registration-form-card {
    padding: 1.5rem 1.15rem;
  }

  .footer-horizon-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-office-hub-card {
    grid-column: span 1;
  }

  .footer-links-hub {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-horizon-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .horizon-links-group {
    justify-content: center;
  }

  .floating-wa-launcher {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
  }

  .live-toast-glass-card {
    display: none;
  }
}
