/* ============================================
   IndoML 2026 — Light Blue & Orange Theme
   ============================================ */

:root {
  --primary: #0077C8;        /* Deep blue */
  --primary-light: #2196F3;  /* Bright blue */
  --primary-pale: #E3F2FD;   /* Very light blue */
  --accent: #FF6B35;         /* Vibrant orange */
  --accent-light: #FF8C5A;
  --accent-pale: #FFF3EE;
  --bg-dark: #0A1628;        /* Dark navy for hero */
  --bg-light: #F8FBFF;       /* Off-white with blue tint */
  --bg-white: #FFFFFF;
  --text-dark: #0D1B2E;
  --text-muted: #5A6E8C;
  --border: #D0E4F7;
  --gradient-hero: linear-gradient(135deg, #0A1628 0%, #0D2847 50%, #0A3060 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FF8C5A 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --shadow-sm: 0 2px 12px rgba(0,119,200,0.08);
  --shadow-md: 0 8px 32px rgba(0,119,200,0.12);
  --shadow-lg: 0 20px 60px rgba(0,119,200,0.18);
  --radius: 16px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============ NAVBAR ============ */
.navbar-custom {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar-custom.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.4rem 0;
}
.nav-logo {
  height: 42px;
  width: auto;
  transition: transform 0.3s;
}
.nav-logo:hover { transform: scale(1.03); }
.nav-edition-badge {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: super;
  letter-spacing: 0.5px;
}
.nav-link {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-pale);
}
.navbar-toggler { border: none; outline: none; box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230077C8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 80px;
}
#neuralCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,119,200,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255,107,53,0.15) 0%, transparent 50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1rem 6rem;
}
.animate-in {
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.edition-badge {
  display: inline-block;
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.5);
  color: #FF8C5A;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -2px;
}
.year-highlight {
  color: var(--accent);
  position: relative;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.hero-date-venue {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.date-badge, .venue-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.date-badge i, .venue-badge i { color: var(--accent); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.hero-wave svg { display: block; }

/* BUTTONS */
.btn-primary-custom {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.5);
  color: #fff;
}
.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px !important; font-size: 0.85rem !important; }

/* ============ SECTIONS ============ */
.section-pad { padding: 80px 0; }
.bg-light { background: var(--bg-light) !important; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.text-accent { color: var(--primary); }
.section-body { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }

/* STAT CARDS */
.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* VENUE CARD */
.venue-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.venue-placeholder {
  background: var(--gradient-hero);
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
.venue-placeholder i { font-size: 3rem; color: var(--accent); display: block; margin-bottom: 1rem; }
.venue-placeholder p { margin: 0; font-size: 1rem; }
.venue-info { padding: 1.5rem; }
.venue-info h5 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.venue-info p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* CONSORTIUM */
.consortium-section { background: var(--gradient-hero); }
.consortium-section .section-label { color: var(--accent-light); }
.consortium-section .section-title, .consortium-section .section-body { color: rgba(255,255,255,0.9); }
.consortium-section .text-accent { color: var(--accent); }
.consortium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.consortium-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.consortium-item:hover {
  background: rgba(0,119,200,0.3);
  border-color: rgba(0,119,200,0.6);
  transform: translateY(-4px);
}
.consortium-item span { color: #fff; font-weight: 600; font-size: 0.9rem; }

/* THEME CARDS */
.theme-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.theme-icon {
  width: 56px; height: 56px;
  background: var(--primary-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s;
}
.theme-card:hover .theme-icon {
  background: var(--primary);
  color: #fff;
}
.theme-card h5 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin: 0; }

/* COMMUNITY */
.community-section { background: var(--bg-white); }
.community-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  height: 100%;
}
.community-card:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.community-icon {
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}
.community-card h6 { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.2) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.page-breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 1rem; }
.page-breadcrumb a { color: var(--accent-light); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--accent); }

/* ============ SPONSORSHIP ============ */
.sponsor-tier-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  height: 100%;
  border: 2px solid transparent;
}
.sponsor-tier-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.sponsor-tier-card.platinum { border-color: #8B5CF6; }
.sponsor-tier-card.diamond  { border-color: #06B6D4; }
.sponsor-tier-card.gold     { border-color: #F59E0B; }
.sponsor-tier-card.silver   { border-color: #94A3B8; }
.tier-header { padding: 2rem; text-align: center; }
.tier-header.platinum { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.tier-header.diamond  { background: linear-gradient(135deg, #0891B2, #06B6D4); }
.tier-header.gold     { background: linear-gradient(135deg, #D97706, #F59E0B); }
.tier-header.silver   { background: linear-gradient(135deg, #475569, #94A3B8); }
.tier-name { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.tier-price { font-size: 2.2rem; font-weight: 800; color: rgba(255,255,255,0.95); margin-top: 0.5rem; }
.tier-price small { font-size: 0.9rem; font-weight: 400; opacity: 0.8; }
.tier-body { background: var(--bg-white); padding: 2rem; }
.tier-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-dark);
}
.tier-feature:last-child { border-bottom: none; }
.tier-check { color: #22C55E; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.tier-icon { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }

/* VALUE PROPS */
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  height: 100%;
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-4px); }
.value-icon {
  width: 64px; height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  margin-bottom: 1.25rem;
}
.value-card h5 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* NOTE BOX */
.note-box {
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ============ PEOPLE ============ */
.people-section .section-pad { padding: 60px 0; }
.role-group { margin-bottom: 3rem; }
.role-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-pale);
  display: flex; align-items: center; gap: 10px;
}
.role-title i { color: var(--accent); }
.person-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.person-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.person-avatar {
  width: 72px; height: 72px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem; color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}
.person-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.person-affiliation { font-size: 0.8rem; color: var(--text-muted); }

/* ============ ARCHIVES ============ */
.archive-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.archive-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.archive-year {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.archive-edition { font-size: 0.8rem; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.archive-host { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.5rem; }
.archive-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.archive-link:hover { gap: 10px; color: var(--primary-light); }

/* ============ FOOTER ============ */
.footer-section {
  background: var(--bg-dark);
  position: relative;
  margin-top: 0;
}
.footer-wave svg { display: block; }
.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; }
.footer-heading { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 2px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-hr { border-color: rgba(255,255,255,0.1); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-icon:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .section-pad { padding: 60px 0; }
  .page-hero { padding: 120px 0 60px; }
  .hero-date-venue { flex-direction: column; align-items: center; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2.5rem; }
  .consortium-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ PERSON PHOTO (updated) ============ */
.person-avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-pale);
  transition: border-color 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
}
.person-card:hover .person-avatar-wrap {
  border-color: var(--primary);
}
.person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.person-initials {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

/* ============ SOCIAL CTA on HOME ============ */
.social-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.social-cta-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-cta-btn .bi-linkedin { color: #0A66C2; }
.social-cta-btn .bi-twitter-x { color: #000; }
.social-cta-btn .bi-facebook { color: #1877F2; }

/* ============ NAVBAR DROPDOWN STYLES ============ */
.dropdown-menu-custom {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 220px;
  margin-top: 0.5rem !important;
  background: #fff;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s;
  display: flex;
  align-items: center;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: var(--primary-pale);
  color: var(--primary);
}
.dropdown-item i { color: var(--primary); }
/* Remove gap between nav-items for dropdown */
.navbar-nav .nav-item { position: relative; }

/* Registration button in navbar */
.nav-register-btn {
  background: var(--gradient-accent) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}
.nav-register-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(255,107,53,0.5) !important;
  background: var(--gradient-accent) !important;
  color: #fff !important;
}
.nav-register-btn.active {
  background: var(--gradient-accent) !important;
  color: #fff !important;
}

/* ============ COMING SOON PAGE ============ */
.soon-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.soon-icon-ring {
  width: 120px;
  height: 120px;
  background: var(--primary-pale);
  border: 3px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--primary);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,119,200,0.2); }
  50%       { box-shadow: 0 0 0 20px rgba(0,119,200,0); }
}
.soon-heading {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.soon-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.soon-pulse-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.soon-pulse-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: bounce-dot 1.4s infinite ease-in-out both;
}
.soon-pulse-bar span:nth-child(1) { animation-delay: -0.32s; }
.soon-pulse-bar span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40%           { transform: scale(1.1); opacity: 1; }
}
.btn-outline-soon {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-outline-soon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ REGISTRATION PAGE ============ */
.reg-status-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.reg-status-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--gradient-accent);
}
.reg-status-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: var(--accent);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.reg-status-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.reg-status-body {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.reg-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 780px;
  margin: 0 auto;
}
.reg-info-item {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.5;
}
.reg-info-item i { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; }
.reg-info-item strong { display: block; color: var(--text-dark); font-size: 0.82rem; }

/* ENQUIRY CARD */
.enquiry-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.enquiry-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-pale);
}
.enquiry-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}
.enquiry-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}
.enquiry-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* FORM ELEMENTS */
.form-group-custom { display: flex; flex-direction: column; }
.form-label-custom {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.required { color: var(--accent); }
.form-input-custom {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input-custom:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,119,200,0.1);
}
select.form-input-custom {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230077C8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-input-custom { resize: vertical; min-height: 120px; }

/* Custom checkbox */
.notify-checkbox-wrap { padding: 0.25rem 0; }
.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.custom-checkbox-label input[type="checkbox"] { display: none; }
.custom-checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Success / Error banners */
.form-success-banner {
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-sm);
  color: #065F46;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}
.form-success-banner i { color: #10B981; }
.form-error-banner {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-sm);
  color: #991B1B;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}
.form-error-banner i { color: #EF4444; }

@media (max-width: 576px) {
  .enquiry-card { padding: 1.5rem; }
  .enquiry-card-header { flex-direction: column; text-align: center; }
  .reg-info-grid { grid-template-columns: 1fr 1fr; }
}
