/* =========================================================
   MITRAAICECREAM.MY.ID - ULTRA-MODERN VIBRANT DESIGN SYSTEM
   Theme: Fresh Ice-Cream Neo-Glass (Vibrant, Premium, High-Converting)
   ========================================================= */

:root {
  /* Primary & Accent Color Palette */
  --primary-blue: #0284c7;
  --primary-blue-dark: #0369a1;
  --primary-blue-deep: #0c4a6e;
  --primary-cyan: #06b6d4;
  --primary-cyan-light: #e0f2fe;
  
  --aice-red: #e11d48;
  --aice-red-hover: #be123c;
  --aice-gold: #f59e0b;
  --aice-gold-dark: #d97706;
  --aice-amber-light: #fef3c7;
  
  --accent-emerald: #10b981;
  --accent-emerald-light: #d1fae5;
  --accent-purple: #8b5cf6;

  /* Neutral Backgrounds & Surfaces */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-dark-footer: #091322;
  
  /* Text & Border Colors */
  --text-main: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border-light: #e2e8f0;
  --border-color: #cbd5e1;
  --border-focus: #0284c7;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Glows */
  --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-blue-glow: 0 10px 25px rgba(2, 132, 199, 0.25);
  --shadow-gold-glow: 0 10px 25px rgba(245, 158, 11, 0.3);
  --shadow-red-glow: 0 10px 25px rgba(225, 29, 72, 0.25);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
*, *::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-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* =========================================================
   TOP ANNOUNCEMENT BAR
   ========================================================= */
.top-ticker {
  background: linear-gradient(90deg, #e11d48 0%, #0284c7 50%, #f59e0b 100%);
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
  color: #ffffff;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

.ticker-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-live {
  background: #ffffff;
  color: var(--aice-red);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.badge-live .pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--aice-red);
  border-radius: 50%;
  animation: pulseDot 1.4s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 1; }
}

.ticker-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-link {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-link:hover {
  text-decoration: underline;
  color: var(--aice-amber-light);
}

/* =========================================================
   FLOATING MODERN NAVBAR
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 0.4rem 0;
}

.navbar-pill {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem 0.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: var(--transition);
}

.site-header.scrolled .navbar-pill {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: fit-content;
}

.brand-logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-title span {
  color: var(--primary-blue);
}

.brand-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--aice-red);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: var(--transition);
  display: block;
}

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

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

.nav-action-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-nav-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--primary-cyan-light);
  color: var(--primary-blue);
}

/* =========================================================
   HERO SECTION - DUAL ASYMMETRIC NEO-GLASS
   ========================================================= */
.hero-neo {
  position: relative;
  padding: 3.5rem 0 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(2, 132, 199, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(225, 29, 72, 0.08) 0%, transparent 40%),
              linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero-neo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #fed7aa;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.hero-badge-pill i {
  color: var(--aice-gold);
}

.hero-badge-pill span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
}

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

.hero-headline .gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

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

.hero-perk-chip i {
  color: var(--accent-emerald);
  font-size: 1rem;
}

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

.btn-primary-glow {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-red-glow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.4);
  color: #fff;
}

.btn-secondary-glass {
  background: #ffffff;
  color: var(--primary-blue-deep);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-secondary-glass:hover {
  background: var(--primary-cyan-light);
  border-color: var(--primary-blue);
  color: var(--primary-blue-dark);
  transform: translateY(-3px);
}

.hero-stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.stat-box-neo .num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
}

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

/* Hero Visual Card */
.hero-visual-neo {
  position: relative;
}

.hero-main-frame {
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(2, 132, 199, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-main-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
  transition: transform 0.6s ease;
}

.hero-main-frame:hover img {
  transform: scale(1.02);
}

.floating-glass-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-glass-pill.top-right {
  top: -15px;
  right: -15px;
}

.floating-glass-pill.bottom-left {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

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

.floating-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-icon-circle.emerald {
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
}

.floating-icon-circle.gold {
  background: var(--aice-amber-light);
  color: var(--aice-gold-dark);
}

.floating-text-box strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.floating-text-box span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================================
   SECTION UTILITIES & HEADERS
   ========================================================= */
.section-neo {
  padding: 5.5rem 0;
  position: relative;
}

.section-neo.alt-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-cyan-light);
  color: var(--primary-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

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

.section-lead-text {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================================
   SECTION 1: BENTO-BOX VALUE PROPOSITIONS ("KEUNGGULAN")
   ========================================================= */
.bento-features-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.bento-poster-box {
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

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

.bento-poster-box img {
  border-radius: var(--radius-lg);
  width: 100%;
}

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

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

.bento-benefit-card:hover {
  transform: translateX(6px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.bento-icon-sq {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bento-icon-sq.blue { background: #e0f2fe; color: #0284c7; }
.bento-icon-sq.red { background: #ffe4e6; color: #e11d48; }
.bento-icon-sq.gold { background: #fef3c7; color: #d97706; }
.bento-icon-sq.green { background: #d1fae5; color: #059669; }
.bento-icon-sq.purple { background: #ede9fe; color: #7c3aed; }

.bento-body h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.bento-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   INTERACTIVE PROFIT SIMULATOR (HIGH-CONVERTING TOOL)
   ========================================================= */
.profit-calculator-card {
  background: linear-gradient(135deg, #091a34 0%, #034b75 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}

.profit-calculator-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.calc-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.calc-header h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.calc-header p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-control-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.calc-select, .calc-slider {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
}

.calc-select option {
  background: #0f172a;
  color: #ffffff;
}

.calc-slider-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.calc-slider-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--aice-gold);
  min-width: 90px;
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-result-row .res-lbl {
  font-size: 0.95rem;
  color: #cbd5e1;
}

.calc-result-row .res-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.calc-result-row.highlight {
  border-bottom: none;
  padding-top: 0.5rem;
}

.calc-result-row.highlight .res-val {
  font-size: 1.9rem;
  color: #34d399;
}

/* =========================================================
   SECTION 2: ALL PACKAGES SHOWCASE WITH SEGMENTED SWITCHER
   ========================================================= */
.segmented-nav-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.segmented-switcher {
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.seg-btn {
  background: transparent;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.seg-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.packages-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.neo-pack-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.neo-pack-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.neo-pack-card.popular-choice {
  border: 2px solid var(--aice-red);
  box-shadow: var(--shadow-red-glow), var(--shadow-lg);
}

.popular-badge-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  z-index: 10;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.neo-pack-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
}

.neo-pack-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.neo-pack-img-box:hover img {
  transform: scale(1.04);
}

.neo-pack-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pack-header-row {
  margin-bottom: 1.25rem;
}

.pack-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.pack-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pack-price-tag {
  background: var(--bg-surface-alt);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pack-price-tag .lbl {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pack-price-tag .val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary-blue);
}

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

.pack-features-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
}

.pack-features-list li i {
  color: var(--accent-emerald);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.btn-pack-order {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--primary-blue);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-pack-order:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue-glow);
  color: #fff;
}

.neo-pack-card.popular-choice .btn-pack-order {
  background: linear-gradient(135deg, #e11d48, #be123c);
  box-shadow: var(--shadow-red-glow);
}

.neo-pack-card.popular-choice .btn-pack-order:hover {
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
}

/* =========================================================
   FULL-WIDTH PROMO CTA SHOWCASE (NEW10)
   ========================================================= */
.promo-callout-neo {
  margin-top: 4.5rem;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--border-light);
}

.promo-callout-img-wrap {
  position: relative;
  cursor: pointer;
  background: #000;
  width: 100%;
}

.promo-callout-img-wrap img {
  width: 100%;
  display: block;
}

.promo-callout-bar {
  background: linear-gradient(135deg, #09172e 0%, #034b75 100%);
  padding: 2.25rem 2.75rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.promo-callout-info h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.promo-callout-info p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* =========================================================
   SECTION 3: EVENT CATERING & WEDDING SECTION
   ========================================================= */
.event-equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.equipment-card-neo {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.equipment-img-neo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.equipment-img-neo img {
  width: 100%;
  transition: transform 0.5s ease;
}

.equipment-img-neo:hover img {
  transform: scale(1.03);
}

.equipment-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.spec-chip {
  background: var(--bg-surface-alt);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.spec-chip i {
  color: var(--primary-blue);
}

/* =========================================================
   SECTION 4: PRODUCT CATALOG & FLAVORS
   ========================================================= */
.catalog-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.catalog-card-neo {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
}

.catalog-card-neo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.catalog-img-wrap-neo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.catalog-img-wrap-neo img {
  width: 100%;
  transition: transform 0.5s ease;
}

.catalog-card-neo:hover .catalog-img-wrap-neo img {
  transform: scale(1.02);
}

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

.catalog-card-meta p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =========================================================
   SECTION 5: LOGISTICS & COLD CHAIN GUARANTEE
   ========================================================= */
.shipping-neo-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.shipping-visual-box {
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  cursor: pointer;
}

.shipping-visual-box img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.shipping-perks-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.shipping-perk-card:hover {
  transform: translateX(6px);
  border-color: var(--accent-emerald);
}

.shipping-icon-round {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-emerald-light);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

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

.shipping-perk-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =========================================================
   SECTION 6: TESTIMONIAL SLIDER CAROUSEL (T1 - T8)
   ========================================================= */
.testi-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testi-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 10px 4px;
}

.testi-card-neo {
  flex: 0 0 calc((100% - 3.5rem) / 3);
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card-neo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue);
}

.testi-img-box {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}

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

.testi-card-neo:hover .testi-img-box img {
  transform: scale(1.04);
}

.testi-meta-box {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.testi-meta-box strong {
  font-size: 0.95rem;
  color: var(--text-main);
  display: block;
}

.testi-meta-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-tag {
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.testi-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testi-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  color: var(--text-main);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testi-nav-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-blue-glow);
}

.testi-dots-row {
  display: flex;
  gap: 0.5rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  width: 30px;
  background: var(--primary-blue);
}

/* =========================================================
   SECTION 7: 4-STEP ONBOARDING PROCESS
   ========================================================= */
.steps-grid-neo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 4.5rem;
}

.step-card-neo {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

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

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
  display: block;
}

.step-card-neo h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-card-neo p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   SECTION 8: REGISTRATION & BOOKING FORM CARD
   ========================================================= */
.order-neo-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
}

.order-poster-frame {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  align-self: start;
}

.order-poster-frame img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.order-form-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-xl);
}

.order-form-header {
  margin-bottom: 1.75rem;
}

.order-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.order-form-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Important 3 Bullet Points Notice Box */
.important-notice-box-neo {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid var(--aice-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notice-head {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--aice-gold-dark);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.notice-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.4;
}

.notice-row i {
  color: var(--aice-gold-dark);
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

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

.form-label-neo {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-input-neo,
.form-select-neo,
.form-textarea-neo {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-input-neo:focus,
.form-select-neo:focus,
.form-textarea-neo:focus {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-textarea-neo {
  min-height: 85px;
  resize: vertical;
}

.btn-submit-order {
  width: 100%;
  padding: 1.05rem;
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-red-glow);
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(225, 29, 72, 0.4);
}

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

.faq-item-neo {
  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-neo.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

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

.faq-item-neo.active .faq-question-btn {
  color: var(--primary-blue);
}

.faq-chevron {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-item-neo.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-answer-pane {
  padding: 0 1.75rem 1.35rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

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

/* =========================================================
   FOOTER SECTION (NEW 4-COLUMN CORPORATE NEO-GLASS DESIGN)
   ========================================================= */
.site-footer-neo {
  background: linear-gradient(180deg, #071324 0%, #030a14 100%);
  color: #ffffff;
  padding: 4.5rem 0 2.5rem;
  position: relative;
  border-top: 1px solid rgba(2, 132, 199, 0.2);
}

/* Pre-CTA Callout Banner (Center-Aligned) */
.footer-pre-cta {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(225, 29, 72, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--aice-gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.footer-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  max-width: 780px;
  line-height: 1.25;
}

.footer-cta-content p {
  color: #cbd5e1;
  font-size: 0.96rem;
  max-width: 680px;
  line-height: 1.6;
}

.footer-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-footer-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

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

.btn-footer-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-footer-outline:hover {
  background: #ffffff;
  color: var(--text-main);
}

/* 4-Column Main Grid */
.footer-multi-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.3fr;
  gap: 2.75rem;
  margin-bottom: 3.5rem;
}

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

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

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

/* Col 1: Brand & Bio */
.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.footer-brand-name span {
  color: var(--primary-cyan);
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: var(--aice-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.trust-pill {
  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.55rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.trust-pill i {
  color: var(--accent-emerald);
}

.footer-social-cluster {
  display: flex;
  gap: 0.65rem;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  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: 1.05rem;
  transition: var(--transition);
}

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

/* Col 2 & 3: Link Lists */
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

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

.footer-link-list li a i {
  font-size: 0.75rem;
  color: var(--primary-cyan);
  transition: transform 0.2s ease;
}

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

.footer-link-list li a:hover i {
  color: var(--aice-gold);
}

/* Col 4: Contacts */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: #cbd5e1;
}

.footer-contact-entry i {
  color: var(--primary-cyan);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-entry strong {
  display: block;
  color: #ffffff;
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

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

.footer-phone-link {
  color: var(--aice-gold);
  font-size: 1.1rem;
  font-weight: 800;
  display: inline-block;
}

.footer-phone-link:hover {
  text-decoration: underline;
  color: #fef08a;
}

.btn-footer-report {
  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.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Bottom Bar */
.footer-bottom-bar {
  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;
}

.footer-links-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links-row a {
  color: #cbd5e1;
  transition: var(--transition);
}

.footer-links-row a:hover {
  color: var(--primary-cyan);
}

@media (max-width: 1080px) {
  .footer-multi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-pre-cta {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    text-align: center;
  }
  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .btn-footer-wa, .btn-footer-outline {
    width: 100%;
    justify-content: center;
  }
  .footer-multi-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-links-row {
    justify-content: center;
  }
}

/* =========================================================
   LIGHTBOX MODAL & REPORT MODAL
   ========================================================= */
.zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

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

.lightbox-content-box img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

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

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

/* Modal Laporan & Saran */
.report-modal-neo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.report-modal-neo.active {
  opacity: 1;
  pointer-events: auto;
}

.report-card-neo {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

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

.report-close-neo:hover {
  background: #ffe4e6;
  color: var(--aice-red);
}

/* Floating Action & Tickers */
.floating-wa-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  z-index: 990;
  transition: var(--transition);
  animation: waPulse 2s infinite;
}

.floating-wa-bubble:hover {
  transform: scale(1.1);
  color: #ffffff;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.social-proof-toast-neo {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 980;
  transform: translateY(150%);
  opacity: 0;
  transition: var(--transition);
}

.social-proof-toast-neo.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar-neo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-cyan-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.toast-text-neo strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}

.toast-text-neo p {
  font-size: 0.78rem;
  color: var(--accent-emerald);
  font-weight: 700;
  margin: 0;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS & POLISHED MOBILE VIEW
   ========================================================= */

@media (max-width: 1200px) {
  .nav-links-menu {
    gap: 0.15rem;
  }
  .nav-item-link {
    font-size: 0.78rem;
    padding: 0.3rem 0.45rem;
  }
  .btn-nav-wa {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0.5rem 0;
  }

  .navbar-pill {
    padding: 0.4rem 0.75rem 0.4rem 0.85rem;
  }

  .nav-links-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.4rem;
    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;
  }

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

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

  .mobile-drawer-cta {
    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);
  }

  /* Hide navbar WA button on mobile/tablet completely */
  .nav-action-wrap .btn-nav-wa {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border-radius: 50%;
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 1.15rem;
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }

  .mobile-menu-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-btn:hover {
    background: var(--primary-cyan-light);
    color: var(--primary-blue);
  }

  .hero-neo-grid,
  .bento-features-grid,
  .calc-grid,
  .shipping-neo-layout,
  .event-equipment-grid,
  .catalog-duo-grid,
  .order-neo-wrapper,
  .footer-neo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .hero-headline {
    font-size: 2.7rem;
  }

  .testi-card-neo {
    flex: 0 0 calc((100% - 1.75rem) / 2);
  }
}

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

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

  .ticker-left {
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }

  .ticker-right {
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .navbar-pill {
    padding: 0.35rem 0.75rem;
  }

  .brand-logo-circle {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .nav-action-wrap {
    gap: 0;
  }

  .mobile-menu-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 1.05rem;
  }

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

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

  .hero-subheadline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-perks-row {
    gap: 0.6rem;
    margin-bottom: 1.75rem;
  }

  .hero-perk-chip {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    width: 100%;
  }

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

  .btn-primary-glow,
  .btn-secondary-glass {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .floating-glass-pill {
    padding: 0.5rem 0.85rem;
    gap: 0.5rem;
  }

  .floating-glass-pill.top-right {
    top: -10px;
    right: -5px;
  }

  .floating-glass-pill.bottom-left {
    bottom: -15px;
    left: -5px;
  }

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

  .floating-text-box strong {
    font-size: 0.78rem;
  }

  .floating-text-box span {
    font-size: 0.68rem;
  }

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

  .section-main-heading {
    font-size: 1.75rem;
  }

  .section-lead-text {
    font-size: 0.92rem;
  }

  .segmented-switcher {
    width: 100%;
    justify-content: center;
  }

  .seg-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
    flex-grow: 1;
    justify-content: center;
  }

  .packages-flow-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .neo-pack-body {
    padding: 1.5rem 1.25rem;
  }

  .hero-stats-band,
  .steps-grid-neo,
  .equipment-specs-grid {
    grid-template-columns: 1fr;
  }

  .testi-card-neo {
    flex: 0 0 100%;
  }

  .order-form-container {
    padding: 1.5rem 1.15rem;
  }

  .profit-calculator-card {
    padding: 1.75rem 1.15rem;
  }

  .calc-header h3 {
    font-size: 1.5rem;
  }

  .promo-callout-bar {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    text-align: center;
  }

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

  .social-proof-toast-neo {
    display: none;
  }
}
