/* ═════════════════════════════════════════════════════════════
   TIKETKONSER — RETRO x PLAYFUL UI 🎨
   Pestapora x WONDR by BNI — Y2K Gen Z Festival Vibes
   Font: Sharine, Bigek (Y2K Chunky), Shrooms Garden (Retro)
   ═════════════════════════════════════════════════════════════ */

/* ─── FONT IMPORTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&display=swap');

/* CATATAN: Beli font di FontFabric atau pastikan terinstall:
   - Sharine (display font: heading, hero)
   - Bigek (chunky pop Y2K: call-to-action, badges)
   - Shrooms Garden (retro display: accent text)
   
   Path untuk lokal: /public/fonts/
   @font-face {
     font-family: 'Sharine';
     src: url('/fonts/Sharine.woff2') format('woff2');
     font-weight: 700;
   }
*/

:root {
  /* ─── NEW COLOR PALETTE ─── */
  --tosca: #71DAD3;
  --ungu: #9B7EDB;
  --lime: #DFEF59;
  --pink: #FDA9FF;
  --orange: #FF8736;
  --kuning: #FFC533;
  --white: #FFFFFF;
  
  /* ─── LEGACY COLORS (untuk kompatibilitas) ─── */
  --primary: #FF8736;           /* Orange */
  --secondary: #9B7EDB;         /* Ungu */
  --accent: #FDA9FF;            /* Pink */
  --bg-primary: #FFFFFF;        /* White */
  --bg-secondary: #DFEF59;      /* Lime light */
  --text-primary: #1A1410;      /* Hitam warm */
  --text-secondary: #6B5D52;    /* Brown medium */
  --text-light: #999088;        /* Brown light */
  
  /* ─── SPACING & SIZING ─── */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* ─── SHADOWS (playful) ─── */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --shadow-retro: 8px 8px 0px rgba(0,0,0,0.15);
  
  /* ─── TRANSITIONS ─── */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* ─── FONTS ─── */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sharine', 'Bigek', var(--font-main);
  --font-accent: 'Shrooms Garden', 'Bigek', var(--font-main);
}

/* ═══════════════════════════════════════════════════════════
   RESET & GLOBAL
   ═══════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR — RETRO HEADER
   ═══════════════════════════════════════════════════════════ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ungu);
  border-bottom: 4px dashed var(--orange);
  padding: 14px 0;
  box-shadow: var(--shadow-retro);
  animation: navBounce 0.5s ease-out;
}

@keyframes navBounce {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -1px;
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.navbar-brand:hover {
  transform: skew(-2deg) scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.navbar-badge {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 900;
  color: var(--text-primary);
  background: var(--lime);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: var(--shadow-retro);
  border: 2px solid var(--text-primary);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ═══════════════════════════════════════════════════════════
   RUNNING TEXT — MARQUEE RETRO
   ═══════════════════════════════════════════════════════════ */

.running-text-bar {
  background: linear-gradient(90deg, var(--tosca), var(--pink));
  color: white;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 3px solid var(--text-primary);
  border-bottom: 3px solid var(--text-primary);
  font-weight: 900;
  font-family: var(--font-accent);
}

.running-text-inner {
  display: inline-block;
  animation: marqueeRetro 20s linear infinite;
  white-space: nowrap;
  padding: 0 40px;
}

.running-text-inner span {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 60px;
}

@keyframes marqueeRetro {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — BOLD & PLAYFUL
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  min-height: 550px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ungu) 0%, #6B5EBD 50%, var(--tosca) 100%);
  border-bottom: 6px solid var(--orange);
}

/* Retro dots pattern */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  z-index: 0;
  pointer-events: none;
}

/* Playful skew shapes */
.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--primary);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.1;
  animation: shapeFloat 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kuning);
  color: var(--text-primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  border: 3px solid var(--text-primary);
  box-shadow: var(--shadow-retro);
  font-family: var(--font-accent);
  animation: eyebrowBounce 1s ease-in-out infinite;
}

@keyframes eyebrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  border: 2px solid var(--text-primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 6px 6px 0px rgba(0,0,0,0.3);
  word-break: break-word;
}

.hero-title span {
  color: var(--lime);
  display: block;
  text-shadow: 6px 6px 0px rgba(155,126,219,0.4);
  animation: titleFlip 0.6s ease-out;
}

@keyframes titleFlip {
  0% { opacity: 0; transform: rotateX(-20deg); }
  100% { opacity: 1; transform: rotateX(0); }
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 24px auto 32px;
  line-height: 1.8;
  font-weight: 500;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition-bounce);
}

.hero-meta-item:hover {
  background: var(--primary);
  border-color: var(--text-primary);
  transform: translateY(-3px) rotate(-2deg);
}

/* ═══════════════════════════════════════════════════════════
   COUNTDOWN — RETRO STYLED
   ═══════════════════════════════════════════════════════════ */

.countdown-wrap {
  margin-top: 20px;
  text-align: center;
}

.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-family: var(--font-accent);
}

.countdown-label::before,
.countdown-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--pink);
}

.countdown-boxes {
  display: inline-flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.countdown-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--kuning);
  border: 4px solid var(--text-primary);
  border-radius: var(--radius-md);
  font-size: 40px;
  font-weight: 900;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  font-family: var(--font-main);
  box-shadow: var(--shadow-retro);
  transition: var(--transition-bounce);
}

.countdown-num:hover {
  transform: rotate(-2deg) scale(1.1);
}

.countdown-num.orange {
  background: var(--orange);
  color: white;
}

.countdown-unit {
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-accent);
}

.countdown-sep {
  font-size: 32px;
  font-weight: 900;
  color: var(--pink);
  margin-top: 24px;
  animation: sepPulse 0.8s infinite;
}

@keyframes sepPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS — RETRO STYLE
   ═══════════════════════════════════════════════════════════ */

.section-header {
  text-align: center;
  margin-bottom: 48px;
  animation: headerSlideIn 0.6s ease-out;
}

@keyframes headerSlideIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  background: var(--lime);
  color: var(--text-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  border: 2px solid var(--text-primary);
  font-family: var(--font-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-radius: 2px;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--tosca) 0%, var(--pink) 100%);
  border-radius: var(--radius-full);
  margin: 20px auto 0;
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════
   LINEUP SECTION
   ═══════════════════════════════════════════════════════════ */

.lineup-section {
  padding: 80px 0;
  background: #F5F9FF;
  position: relative;
  overflow: hidden;
  border-top: 6px dashed var(--tosca);
  border-bottom: 6px dashed var(--tosca);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.lineup-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 4px solid var(--text-primary);
  position: relative;
  transform: rotate(-1deg);
}

.lineup-card:nth-child(even) {
  transform: rotate(1deg);
}

.lineup-card:hover {
  transform: rotate(0deg) scale(1.08) translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border-color: var(--orange);
}

.lineup-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
  filter: saturate(0.95);
}

.lineup-card:hover .lineup-photo {
  transform: scale(1.1);
  filter: saturate(1.2);
}

.lineup-photo-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--tosca), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.lineup-info {
  padding: 16px;
  background: white;
}

.lineup-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.lineup-genre {
  font-size: 11px;
  color: white;
  font-weight: 900;
  background: var(--orange);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  font-family: var(--font-accent);
  border: 2px solid var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════════════════════════ */

.form-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--text-primary);
  position: relative;
  overflow: hidden;
  transform: rotate(-1deg);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-bottom: 3px dashed var(--text-primary);
}

.form-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.form-section-title {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px dashed var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-spacer {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid var(--text-primary);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-primary);
  background: white;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(255,135,54,0.1);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: var(--text-light);
}

/* ───────────────────────────────────────── */
/* SEATING GRID */
/* ───────────────────────────────────────── */

.seating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.seating-option {
  position: relative;
  cursor: pointer;
}

.seating-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.seating-card {
  border: 3px solid var(--text-primary);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition-bounce);
  background: white;
  cursor: pointer;
  transform: rotate(-0.5deg);
}

.seating-card:hover {
  border-color: var(--orange);
  transform: rotate(0.5deg) scale(1.05);
  box-shadow: var(--shadow-md);
}

.seating-option input:checked + .seating-card {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255,135,54,0.3);
}

.seating-option input:checked + .seating-card .seating-name,
.seating-option input:checked + .seating-card .seating-price,
.seating-option input:checked + .seating-card .seating-slot {
  color: white;
}

.seating-name {
  font-weight: 900;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.seating-price {
  font-size: 13px;
  color: var(--orange);
  font-weight: 900;
}

.seating-slot {
  margin-top: 4px;
  font-size: 10px;
  color: var(--text-light);
  font-weight: 700;
}

.seating-card-full {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--bg-secondary);
  border-color: var(--text-light);
}

.seating-card-full:hover {
  transform: rotate(-0.5deg);
  border-color: var(--text-light);
}

/* ───────────────────────────────────────── */
/* PAYMENT OPTIONS */
/* ───────────────────────────────────────── */

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.payment-option {
  cursor: pointer;
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-card {
  border: 3px solid var(--text-primary);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-bounce);
  background: white;
  cursor: pointer;
  transform: rotate(-1deg);
}

.payment-card:hover {
  border-color: var(--orange);
  transform: rotate(1deg) scale(1.05);
  box-shadow: var(--shadow-md);
}

.payment-option input:checked + .payment-card {
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(0deg) scale(1.08);
  box-shadow: var(--shadow-retro);
}

.payment-icon {
  width: 48px;
  height: 48px;
  background: var(--kuning);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  border: 2px solid var(--text-primary);
  transition: var(--transition);
}

.payment-option input:checked + .payment-card .payment-icon {
  background: white;
  color: var(--orange);
}

.payment-label {
  font-size: 13px;
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.payment-option input:checked + .payment-card .payment-label {
  color: white;
}

.payment-desc {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 2px;
}

/* ───────────────────────────────────────── */
/* TOTAL DISPLAY */
/* ───────────────────────────────────────── */

.total-display {
  background: linear-gradient(135deg, var(--ungu), rgba(155,126,219,0.95));
  border-radius: var(--radius-lg);
  border: 4px solid var(--kuning);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-retro);
}

.total-display::before {
  content: '🎵';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.08;
}

.total-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.total-amount {
  font-size: 32px;
  font-weight: 900;
  color: var(--kuning);
  font-family: var(--font-main);
  text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

/* ───────────────────────────────────────── */
/* UPLOAD AREA */
/* ───────────────────────────────────────── */

.upload-area {
  border: 4px dashed var(--text-primary);
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: white;
  position: relative;
  overflow: hidden;
  transform: rotate(-1deg);
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--orange);
  background: var(--kuning);
  transform: rotate(1deg) scale(1.02);
  box-shadow: var(--shadow-md);
}

.upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.upload-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.upload-subtitle {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

.upload-preview {
  margin-top: 16px;
  display: none;
}

.upload-preview img {
  max-height: 180px;
  border-radius: var(--radius-md);
  margin: 0 auto;
  object-fit: cover;
  border: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
}

.upload-file-name {
  font-size: 13px;
  color: var(--lime);
  font-weight: 900;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ───────────────────────────────────────── */
/* SUBMIT BUTTON */
/* ───────────────────────────────────────── */

.submit-btn {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: white;
  border: 4px solid var(--text-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-retro);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.05em;
  font-family: var(--font-accent);
  text-transform: uppercase;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  transform: rotate(-2deg) scale(1.08) translateY(-4px);
  box-shadow: 12px 12px 0px rgba(0,0,0,0.2);
}

.submit-btn:active {
  transform: rotate(0deg) scale(0.98) translateY(0px);
  box-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════
   SPONSOR SECTION
   ═══════════════════════════════════════════════════════════ */

.sponsor-section {
  padding: 70px 0;
  background: white;
  border-top: 6px dashed var(--orange);
  border-bottom: 6px dashed var(--orange);
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.sponsor-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  transition: var(--transition-bounce);
  border: 3px solid var(--text-primary);
  transform: rotate(-1deg);
}

.sponsor-card:hover {
  background: white;
  border-color: var(--orange);
  transform: rotate(1deg) translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sponsor-logo {
  height: 52px;
  object-fit: contain;
  filter: grayscale(0.8) opacity(0.8);
  transition: var(--transition);
}

.sponsor-card:hover .sponsor-logo {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════
   SUCCESS PAGE
   ═══════════════════════════════════════════════════════════ */

.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.success-icon {
  font-size: 120px;
  margin-bottom: 24px;
  animation: successBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successBounce {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  background: var(--ungu);
  color: white;
  padding: 50px 0 32px;
  margin-top: 80px;
  border-top: 6px solid var(--orange);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.05;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--kuning);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  line-height: 1.8;
  max-width: 300px;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-bounce);
  border: 2px solid white;
  font-size: 20px;
  transform: rotate(-2deg);
}

.social-btn:hover {
  background: var(--kuning);
  color: var(--text-primary);
  transform: rotate(2deg) scale(1.2) translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: var(--transition-bounce);
  animation: waBounce 2s infinite;
  border: 3px solid white;
  font-size: 28px;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.2) translateY(-8px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.7);
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(32px, 7vw, 48px);
  }

  .form-card {
    padding: 28px 20px;
    border: 3px solid var(--text-primary);
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .seating-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .total-display {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 24px;
  }

  .countdown-num {
    width: 70px;
    height: 70px;
    font-size: 32px;
    border-radius: 12px;
  }

  .countdown-sep {
    font-size: 26px;
    margin-top: 16px;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer-right {
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .section-title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .navbar-brand {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-meta {
    gap: 8px;
  }

  .hero-meta-item {
    font-size: 12px;
    padding: 6px 12px;
  }

  .countdown-boxes {
    gap: 8px;
  }

  .countdown-num {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .section-title {
    font-size: clamp(24px, 5vw, 32px);
  }

  .form-card {
    padding: 20px 16px;
  }

  .seating-grid {
    grid-template-columns: 1fr;
  }

  .wa-float {
    width: 56px;
    height: 56px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }

  .navbar-brand {
    font-size: 18px;
  }

  .submit-btn {
    padding: 16px;
    font-size: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-accent);
  font-size: 13px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  color: white;
  border: 2px solid var(--text-primary);
  box-shadow: var(--shadow-retro);
}

.btn-primary:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 8px 8px 0px rgba(0,0,0,0.15);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.py-4 { padding: 32px 0; }