:root {
  --navy: #0b2545;
  --navy-mid: #134074;
  --navy-light: #1a5276;
  --yellow: #f5c518;
  --yellow-dark: #d4a800;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --light-gray: #e8edf5;
  --mid-gray: #8b9ab0;
  --text: #1a2535;
  --text-soft: #4a5568;
  --border: #d6dfe9;
  --success: #22c55e;
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 37, 69, 0.14);
  --shadow-lg: 0 20px 60px rgba(11, 37, 69, 0.18);
}

.landing-page-body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ═══════════════════════════════════════
   BANNER
═══════════════════════════════════════ */
BANNER ═══════════════════════════════════════ */ .landing-page-body .header-banner-section {
  width: 100%;
  margin: 30px auto 0;
}

.landing-page-body .banner-container {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.landing-page-body .banner-wrapper {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.landing-page-body .event-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.landing-page-body .banner-info-bar {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-page-body .info-left h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}

.landing-page-body .info-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-soft);
}

.landing-page-body .info-meta strong {
  color: var(--navy);
}

.landing-page-body .banner-info-bar .nav-cta {
  background: var(--text);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.landing-page-body .banner-info-bar .nav-cta:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
}

.hero-court-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(var(--yellow) 1px, transparent 1px),
    linear-gradient(90deg, var(--yellow) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(245, 197, 24, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(19, 64, 116, 0.6) 0%, transparent 60%);
}

.hero-diagonal {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(245, 197, 24, 0.04) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.pb-ball {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe066, var(--yellow), var(--yellow-dark));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(245, 197, 24, 0.3);
}

.pb-ball::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-conic-gradient(transparent 0deg 20deg, rgba(0, 0, 0, 0.08) 20deg 21deg);
}

.ball-lg {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 15%;
  animation: floatBall 7s ease-in-out infinite;
}

.ball-md {
  width: 44px;
  height: 44px;
  top: 65%;
  right: 28%;
  animation: floatBall 5s 1s ease-in-out infinite;
}

.ball-sm {
  width: 24px;
  height: 24px;
  top: 35%;
  left: 60%;
  animation: floatBall 6s 2s ease-in-out infinite;
}

@keyframes floatBall {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-22px) rotate(180deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.4);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6)
  }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .accent {
  color: var(--yellow);
  display: block;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.stat-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-event-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative;
  overflow: hidden;
}

.hero-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.event-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.event-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.ev-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.ev-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ev-val {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 20px 0;
}

.fee-highlight {
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fee-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.fee-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
}

.fee-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.card-register-btn {
  width: 100%;
  margin-top: 20px;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.card-register-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
}

.spots-bar {
  margin-top: 14px;
}

.spots-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.spots-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  height: 4px;
}

.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  border-radius: 100px;
  width: 65%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════
   INFO STRIP
═══════════════════════════════════════ */
.info-strip {
  background: var(--yellow);
  padding: 0 48px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  overflow: hidden;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(11, 37, 69, 0.15);
  flex-shrink: 0;
}

.info-item:last-child {
  border-right: none;
}

.info-item svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   ABOUT / DETAIL SECTION
═══════════════════════════════════════ */
.section {
  padding: 80px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-heading span {
  color: var(--yellow-dark);
}

.section-text {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 680px;
}

.tabs-nav {
  display: flex;
  gap: 4px;
  background: var(--light-gray);
  padding: 6px;
  border-radius: 12px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--mid-gray);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--yellow);
}

.tab-btn:not(.active):hover {
  background: var(--border);
  color: var(--navy);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.detail-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}

.dc-lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 600;
  margin-bottom: 6px;
}

.dc-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.cat-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.cat-price {
  background: var(--navy);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
}

.policy-block {
  background: var(--off-white);
  border-left: 4px solid var(--yellow);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.policy-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.policy-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   BOTTOM REGISTER CTA
═══════════════════════════════════════ */
.bottom-cta {
  background: var(--navy);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245, 197, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bottom-cta-inner {
  position: relative;
  z-index: 1;
}

.bottom-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.bottom-cta h2 span {
  color: var(--yellow);
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  margin-bottom: 36px;
}

.bottom-cta .btn-primary {
  margin: 0 auto;
  font-size: 18px;
  padding: 20px 52px;
}

/* ═══════════════════════════════════════
   MODAL OVERLAY
═══════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
  z-index: 9999;
}

.modal-overlay.open .modal {
  display: block !important;
}

.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalIn {
  from {
    transform: scale(0.92) translateY(20px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-header {
  background: var(--navy);
  padding: 28px 36px 24px;
  border-radius: 24px 24px 0 0;
  position: relative;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  padding: 36px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.form-input,
.form-select {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: var(--mid-gray);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  color: var(--text);
}

.cat-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-chip {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-soft);
  font-family: 'Nunito', sans-serif;
  transition: all 0.15s;
}

.cat-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.cat-chip.active {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}

.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.fee-summary {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fee-summary-label {
  font-size: 14px;
  color: var(--text-soft);
}

.fee-summary-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
}

.fee-note {
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 2px;
}

.modal-pay-btn {
  width: 100%;
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.modal-pay-btn:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.3);
}

.modal-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--mid-gray);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  color: var(--mid-gray);
  font-size: 13px;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--border);
}

.upi-block {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.upi-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.upi-id-row {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.upi-id-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.copy-upi-btn {
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.copy-upi-btn:hover {
  background: var(--navy-mid);
}

.upi-qr {
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upi-qr-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   SUCCESS MODAL
═══════════════════════════════════════ */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.success-overlay.open {
  display: flex;
}

.success-card {
  background: var(--white);
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  padding: 52px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.4);
}

.success-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.reg-id-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.reg-id-box strong {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}

.success-close {
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 40px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.success-close:hover {
  background: var(--navy-mid);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .hero-event-card {
    display: none;
  }

  .section {
    padding: 60px 24px;
  }

  .info-strip {
    padding: 0 24px;
  }

  .bottom-cta {
    padding: 60px 24px;
  }
}

@media(max-width:600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 24px 20px;
  }

  .modal-header {
    padding: 24px 20px 20px;
  }

  .upi-block {
    grid-template-columns: 1fr;
  }

  .upi-qr {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }
}