/* ==========================================================================
   JK FOOTBALL ACADEMY - STANDALONE LANDING PAGE STYLES
   Exact Design System & Aesthetic Matching Main Application:
   - Font Family: Barlow (Weights: 400, 500, 600, 700, 800, 900)
   - Primary Deep Navy: #000d26 / #001335 / #00091d
   - Brand Crest Gold: #FFD700, #D4AF37, #E2B23B, #F59E0B
   - Action Emerald: #10B981, #059669, #047857
   - Glassmorphism & Micro-animations
   ========================================================================== */

:root {
  --bg-navy-dark: #000d26;
  --bg-navy-main: #001335;
  --bg-navy-base: #00091d;
  --bg-card: rgba(0, 19, 53, 0.82);
  --bg-card-hover: rgba(0, 25, 70, 0.92);
  --bg-input: rgba(0, 13, 38, 0.88);

  --gold-primary: #D4AF37;
  --gold-bright: #FFD700;
  --gold-dark: #B8860B;
  --gold-gradient: linear-gradient(135deg, #FFE066 0%, #FFD700 35%, #D4AF37 70%, #B38600 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-glow-soft: rgba(255, 215, 0, 0.18);

  --emerald-primary: #10B981;
  --emerald-hover: #059669;
  --emerald-gradient: linear-gradient(135deg, #34D399 0%, #10B981 50%, #059669 100%);
  --emerald-glow: rgba(16, 185, 129, 0.4);

  --text-white: #FFFFFF;
  --text-light: #F8FAFC;
  --text-slate-200: #E2E8F0;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-gold: rgba(212, 175, 55, 0.32);
  --border-gold-bright: rgba(255, 215, 0, 0.6);
  --border-emerald: rgba(16, 185, 129, 0.35);

  --radius-xs: 0px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --radius-2xl: 0px;

  --font-family: 'Inter', 'Barlow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE SETUP
   ========================================================================== */

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

::selection {
  background: var(--gold-bright);
  color: #001335;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-family);
  background: var(--bg-navy-base);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.form-title,
.brand-main-row,
.info-card h3,
.feature-text h4,
.step-text h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.brand-badge,
.pill-tag,
.stat-number,
.step-number,
.btn-primary,
.btn-secondary,
.btn-signin,
.trust-title,
.lang-btn,
.partner-label {
  font-family: var(--font-display);
}

button, input, select, textarea {
  font-family: var(--font-family);
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

/* ==========================================================================
   BACKGROUND GRADIENT & FLOODLIGHT GLOWS
   ========================================================================== */

.video-overlay-tint {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 0%, #001948 0%, #000c26 45%, #000615 100%);
  pointer-events: none;
}

/* Ambient Stadium Floodlight Glow Orbs */
.stadium-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(140px);
  animation: pulseGlow 14s ease-in-out infinite alternate;
}

.glow-gold {
  top: -8%;
  right: -6%;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
}

.glow-emerald {
  bottom: -12%;
  left: -8%;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
  animation-delay: 4s;
}

.glow-blue {
  top: 40%;
  left: 30%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.07) 0%, rgba(0, 102, 255, 0) 70%);
  animation-delay: 8s;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.08) translate(14px, -14px);
    opacity: 0.95;
  }
  100% {
    transform: scale(0.94) translate(-10px, 10px);
    opacity: 0.65;
  }
}

/* ==========================================================================
   NAVIGATION BAR (MATCHING APP HEADER)
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 13, 38, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.25));
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.brand-title-gold {
  color: var(--gold-bright);
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
}

.brand-title-white {
  color: var(--text-white);
  font-weight: 900;
}

.brand-tagline {
  font-size: 0.72rem;
  color: #E2B23B;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 1px;
}

.brand-badge {
  background: var(--gold-gradient);
  color: #001335;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px var(--gold-glow);
}

/* Secondary Button (Sign In Link) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.24);
  border-color: var(--gold-bright);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn-secondary svg,
.btn-secondary i {
  width: 16px;
  height: 16px;
}

.btn-text-desktop {
  display: inline;
}

.btn-text-mobile {
  display: none;
}

/* Nav Actions Container */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Toggle Pill: EN | BM */
.lang-toggle-container {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 19, 53, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 9999px;
  padding: 3px 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(0, 0, 0, 0.5);
  user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-toggle-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  line-height: 1;
}

.lang-toggle-btn:hover {
  color: #FFFFFF;
}

.lang-toggle-btn.active {
  background: var(--gold-gradient);
  color: #001335;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.35);
  font-weight: 900;
}

.lang-toggle-divider {
  color: rgba(212, 175, 55, 0.35);
  font-size: 0.75rem;
  margin: 0 1px;
  user-select: none;
  font-weight: 400;
}

/* ==========================================================================
   HERO SECTION (2-COLUMN SPLIT)
   ========================================================================== */

.hero-section {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

/* Left Column - Copywriting */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.15);
}

.badge-tag svg,
.badge-tag i {
  width: 14px;
  height: 14px;
  color: var(--gold-bright);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.gold-gradient-text,
.hero-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-description {
  font-size: 1.02rem;
  color: var(--text-slate-200);
  line-height: 1.65;
  font-weight: 500;
}

.hero-description strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Feature Bullet Cards */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-bright);
  transform: translateX(4px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.16);
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-icon svg,
.feature-icon i {
  width: 22px;
  height: 22px;
}

.feature-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 3px;
}

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

/* Trust Badges & Partner Sequence Matching App */
.trust-bar {
  margin-top: 10px;
  padding: 20px 22px;
  background: rgba(0, 13, 38, 0.78);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.trust-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.trust-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  flex: 1;
}

.trust-title {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}

/* Exact Sequence: 1. FIFA Talent, 2. Selangor, 3. Suparimau */
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 8px 0 14px;
}

.partner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-wrapper:hover {
  transform: scale(1.12);
}

.partner-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  transition: filter 0.3s ease;
}

.partner-wrapper:hover .partner-logo-img {
  filter: drop-shadow(0 4px 14px rgba(255, 215, 0, 0.3)) brightness(1.15);
}

.partner-logo-fifa {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)) !important;
  opacity: 0.95;
}

.partner-wrapper:hover .partner-logo-fifa {
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(255, 215, 0, 0.4)) !important;
  opacity: 1;
}

.partner-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 13, 38, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 3px 9px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  z-index: 20;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner-wrapper:hover .partner-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Stats Micro-Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1.1;
  font-family: var(--font-family);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 2px;
}

/* ==========================================================================
   RIGHT COLUMN - REGISTRATION FORM CARD
   ========================================================================== */

.register-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px var(--gold-glow-soft);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky;
  top: 86px;
}

.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-badge svg,
.form-badge i {
  width: 13px;
  height: 13px;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.form-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-slate-200);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.form-label span.req {
  color: #F87171;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper svg,
.input-wrapper i {
  position: absolute;
  left: 12px;
  color: var(--text-subtle);
  width: 17px;
  height: 17px;
  pointer-events: none;
  transition: var(--transition);
}

.input-wrapper:focus-within svg,
.input-wrapper:focus-within i {
  color: var(--gold-bright);
}

.form-input,
.form-select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 11px 14px 11px 38px;
  color: var(--text-white);
  font-family: var(--font-family);
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}

.form-input::placeholder {
  color: var(--text-subtle);
  font-weight: 500;
}

.uppercase-input {
  text-transform: uppercase;
}

.uppercase-input::placeholder {
  text-transform: none;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px var(--gold-glow-soft);
  background: rgba(0, 13, 38, 0.96);
}

.form-select option {
  background-color: var(--bg-navy-main);
  color: var(--text-white);
  padding: 6px;
}

/* Child Info Section Divider */
.child-details-divider {
  border-top: 1px solid var(--border-gold);
  margin: 10px 0 12px;
  padding-top: 12px;
}

.child-details-header {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.child-details-header svg,
.child-details-header i {
  width: 16px;
  height: 16px;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-group input[type="checkbox"] {
  accent-color: var(--gold-bright);
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: underline;
}

/* Primary Submit Button */
.btn-primary {
  width: 100%;
  background: var(--emerald-gradient);
  color: var(--text-white);
  border: none;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px var(--emerald-glow);
  transition: var(--transition);
  margin-top: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-primary svg,
.btn-primary i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--emerald-glow);
  filter: brightness(1.1);
}

.btn-primary:hover svg,
.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Alert Boxes */
.form-alert {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.form-alert svg,
.form-alert i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.alert-error {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #FCA5A5;
}

.alert-success {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #6EE7B7;
}

/* Switch Auth Link */
.form-footer-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-footer-note a {
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
}

.form-footer-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   ACADEMY ADVANTAGES / WHY JOIN SECTION
   ========================================================================== */

.app-purpose-section {
  max-width: 1240px;
  margin: 28px auto 16px;
  padding: 32px 28px;
  background: rgba(0, 19, 53, 0.75);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.section-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px 44px;
  position: relative;
  z-index: 2;
}

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

.section-subtitle {
  color: var(--gold-bright);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

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

.info-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.info-card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-6px);
  box-shadow: 0 12px 36px var(--gold-glow);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 215, 0, 0.14);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.info-card-icon svg,
.info-card-icon i {
  width: 26px;
  height: 26px;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  position: relative;
  z-index: 2;
  border-top: 1.5px solid var(--border-gold);
  background: rgba(0, 8, 22, 0.96);
  padding: 36px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-slate-200);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-credit {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.footer-credit a {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   POPUP MODAL STYLES (TERMS & CONDITIONS)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 8, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-navy-main);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-2xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px var(--gold-glow);
  transform: scale(0.95) translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.modal-backdrop.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 10, 30, 0.65);
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
}

.modal-title-group h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-body::-webkit-scrollbar {
  display: none;
}

.terms-section h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.terms-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  background: rgba(0, 10, 30, 0.65);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZATION)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-section {
    padding: 24px 16px 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-purpose-section {
    margin: 20px 16px 14px;
    padding: 24px 18px;
  }

  .section-wrapper {
    padding: 20px 16px 32px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .hero-copy {
    text-align: center;
    align-items: center;
  }

  .badge-tag {
    align-self: center;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .register-card {
    position: static;
    top: auto;
    text-align: left;
  }

  .feature-item {
    text-align: left;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-container {
    padding: 0 14px;
  }

  .brand-logo {
    gap: 8px;
  }

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

  .brand-main-row {
    font-size: 0.92rem;
  }

  .brand-tagline {
    font-size: 0.65rem;
  }

  .brand-badge {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-toggle-container {
    padding: 2px 4px;
  }

  .lang-toggle-btn {
    padding: 3px 7px;
    font-size: 0.72rem;
  }

  .lang-toggle-divider {
    font-size: 0.7rem;
  }

  .btn-text-desktop {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  .btn-secondary {
    padding: 7px 11px;
    font-size: 0.78rem;
    white-space: nowrap;
    border-radius: 10px;
    gap: 5px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

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

  .register-card {
    padding: 24px 18px;
  }

  .partners-logos {
    gap: 12px;
  }

  .partner-logo-img {
    height: 38px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-card {
    padding: 10px 4px;
  }

  .stat-number {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }
}