/* =========================================================
   FKCCI IILS 2026 — Premium Design System (Ultra Enhanced)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ----- CSS Variables ----- */
:root {
  /* Primary Brand */
  --royal-blue:    #2E3192;
  --deep-red:      #C1272D;
  --heritage-gold: #D8C290;
  --charcoal:      #4F4644;
  --ivory:         #FCFBF5;
  --white:         #FFFFFF;
  --light-gold:    #FBE3B5;
  --cream:         #FBF3E3;
  --light-gray:    #F5F5F5;
  --border-gray:   #E5E5E5;
  --blue-dark:     #1e2068;
  --red-dark:      #9a1e22;

  /* Premium Vibrant Accent Palette */
  --electric-violet: #7C3AED;
  --vivid-cyan:      #06B6D4;
  --emerald:         #10B981;
  --amber-fire:      #F59E0B;
  --magenta-burst:   #EC4899;
  --indigo-night:    #1e1b4b;
  --sapphire:        #1D4ED8;
  --coral-glow:      #FF6B6B;
  --mint-fresh:      #34D399;
  --sunset-orange:   #F97316;

  /* Premium Gradient Presets */
  --grad-hero:   linear-gradient(135deg, #1e1b4b 0%, #2E3192 40%, #7C3AED 100%);
  --grad-fire:   linear-gradient(135deg, #C1272D 0%, #F97316 50%, #F59E0B 100%);
  --grad-ocean:  linear-gradient(135deg, #1D4ED8 0%, #06B6D4 50%, #10B981 100%);
  --grad-purple: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-aurora: linear-gradient(135deg, #1e1b4b 0%, #2E3192 25%, #7C3AED 50%, #06B6D4 75%, #10B981 100%);
  --grad-dark:   linear-gradient(135deg, #0f0c29 0%, #1e1b4b 50%, #2E3192 100%);

  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', sans-serif;
  --ff-display: 'Outfit', sans-serif;

  --shadow-sm:  0 2px 12px rgba(46,49,146,.10);
  --shadow-md:  0 8px 32px rgba(46,49,146,.15);
  --shadow-lg:  0 20px 60px rgba(46,49,146,.20);
  --shadow-glow:       0 0 40px rgba(124,58,237,.30);
  --shadow-violet:     0 8px 32px rgba(124,58,237,.25);
  --shadow-gold:       0 8px 32px rgba(216,194,144,.40);
  --shadow-fire:       0 8px 32px rgba(193,39,45,.30);
  --shadow-card-hover: 0 24px 72px rgba(46,49,146,.25), 0 0 30px rgba(124,58,237,.15);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --transition-slow: 0.6s cubic-bezier(.4,0,.2,1);
  --nav-h:      76px;

  --glass-bg:     rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.15);
  --glass-blur:   20px;

  --glow-violet: 0 0 30px rgba(124,58,237,.4), 0 0 60px rgba(124,58,237,.2);
  --glow-gold:   0 0 30px rgba(216,194,144,.5), 0 0 60px rgba(216,194,144,.2);
  --glow-red:    0 0 30px rgba(193,39,45,.4),   0 0 60px rgba(193,39,45,.15);
  --glow-cyan:   0 0 30px rgba(6,182,212,.4),   0 0 60px rgba(6,182,212,.15);
}

/* =========================================================
   KEYFRAME ANIMATIONS
   ========================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(124,58,237,.3); }
  50% { box-shadow: 0 0 35px rgba(124,58,237,.7), 0 0 70px rgba(124,58,237,.3); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes auroraShift {
  0%   { background-position: 0%   50%; }
  33%  { background-position: 100% 0%;  }
  66%  { background-position: 0%   100%;}
  100% { background-position: 0%   50%; }
}
@keyframes shimmerGold {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(216,194,144,.3); }
  50% { border-color: rgba(216,194,144,.8); }
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(46,49,146,.1); }
  50% { text-shadow: 0 0 20px rgba(46,49,146,.2), 0 0 40px rgba(216,194,144,.15); }
}
@keyframes bgPan {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes marqueeGlow {
  0% { left: -20%; }
  100% { left: 120%; }
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--ivory);
  background-image: url('../Asset/bgimg-cover.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}
/* Premium ivory + aurora mesh overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(252,251,245,.93) 0%,
    rgba(248,246,255,.90) 25%,
    rgba(251,243,227,.88) 55%,
    rgba(248,246,255,.91) 80%,
    rgba(252,251,245,.93) 100%
  );
  z-index: 0;
  pointer-events: none;
}
/* Animated aurora radial glow accents behind content */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(124,58,237,.055) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(6,182,212,.045) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(216,194,144,.035) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
  animation: auroraShift 22s ease-in-out infinite;
  background-size: 200% 200%;
}
body > * {
  position: relative;
  z-index: 1;
}

/* Floating particle dots — decorative background effect */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ----- Utility ----- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; position: relative; }
.section-sm{ padding: 48px 0; position: relative; }

.text-center { text-align: center; }
.text-blue   { color: var(--royal-blue); }
.text-red    { color: var(--deep-red); }
.text-gold   { color: var(--heritage-gold); }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(124,58,237,.08);
  box-shadow: 0 1px 0 rgba(124,58,237,.04);
}
/* Animated rainbow line under navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--electric-violet), var(--vivid-cyan), var(--emerald), var(--amber-fire), var(--deep-red), var(--royal-blue));
  background-size: 300% 100%;
  animation: shimmer 6s linear infinite;
}
.navbar.scrolled { 
  box-shadow: var(--shadow-md), 0 0 30px rgba(46,49,146,.06); 
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(216,194,144,.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-title {
  font-family: var(--ff-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--royal-blue);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-violet), var(--deep-red));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s ease-in-out infinite;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--deep-red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--royal-blue);
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-violet), var(--deep-red));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--electric-violet); background: rgba(124,58,237,.06); }
.nav-link.active { color: var(--deep-red); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(46,49,146,.18), 0 0 0 1px rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.1);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  font-weight: 500;
}
.dropdown-link:hover {
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(46,49,146,.06));
  color: var(--electric-violet);
  transform: translateX(4px);
}

/* More dropdown */
.has-dropdown > .nav-link::before {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--electric-violet));
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  overflow-y: auto;
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  color: var(--royal-blue);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile a:hover, .nav-mobile a.active {
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(46,49,146,.06));
  color: var(--electric-violet);
}
.nav-mobile-section {
  font-size: 11px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 16px 4px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Sheen sweep effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 140%; }

.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--electric-violet) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(124,58,237,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--electric-violet) 0%, var(--royal-blue) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124,58,237,.45);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--deep-red) 0%, var(--sunset-orange) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(193,39,45,.30);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--sunset-orange) 0%, var(--deep-red) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(193,39,45,.40);
}

.btn-outline {
  background: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--electric-violet);
  box-shadow: inset 0 0 0 0 var(--electric-violet);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-violet));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46,49,146,.30);
}

.btn-outline-light {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--electric-violet);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.btn-gold {
  background: linear-gradient(135deg, #B8860B 0%, var(--heritage-gold) 50%, #FFD700 100%);
  background-size: 200% 200%;
  color: var(--royal-blue);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(216,194,144,.40);
  animation: shimmerGold 4s ease-in-out infinite;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--royal-blue), var(--electric-violet));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(124,58,237,.40);
  animation: none;
}

.btn-lg { padding: 17px 40px; font-size: 15px; }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.heading-xl {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--royal-blue);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hero-title-main {
  font-family: var(--ff-heading);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
  animation: textGlow 5s ease-in-out infinite;
}
.hero-title-main span {
  color: var(--deep-red);
  display: inline-block;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan), var(--electric-violet));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
.heading-lg {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--royal-blue);
  line-height: 1.2;
}
.heading-md {
  font-family: var(--ff-heading);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--royal-blue);
  line-height: 1.3;
}
.heading-sm {
  font-family: var(--ff-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--royal-blue);
  line-height: 1.4;
}
.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--electric-violet);
  margin-bottom: 14px;
  position: relative;
  padding: 6px 20px;
  background: rgba(124,58,237,.07);
  border-radius: 99px;
  border: 1.5px solid rgba(124,58,237,.2);
  animation: fadeInScale 0.6s ease both;
}
.lead {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 700px;
}

/* =========================================================
   GOLD DIVIDER
   ========================================================= */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-violet) 30%, var(--vivid-cyan) 70%, transparent);
}
.gold-divider-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(124,58,237,.4);
}

.gold-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-violet), var(--vivid-cyan), var(--heritage-gold), var(--electric-violet));
  background-size: 300% auto;
  border-radius: 2px;
  margin: 16px 0;
  animation: shimmer 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(124,58,237,.25);
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* =========================================================
   CARDS
   ========================================================= */
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124,58,237,.15);
  border-bottom: 3px solid var(--electric-violet);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  min-width: 90px;
  box-shadow: 0 4px 20px rgba(124,58,237,.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: borderGlow 4s ease-in-out infinite;
}
.countdown-item:hover { 
  transform: translateY(-8px) scale(1.05); 
  box-shadow: 0 16px 40px rgba(124,58,237,.25); 
  border-bottom-color: var(--vivid-cyan); 
  animation: none;
}
.countdown-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.card {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  border: 1px solid rgba(124,58,237,.08);
  transition: box-shadow var(--transition-slow), border-color var(--transition), transform var(--transition-slow), background var(--transition);
  position: relative;
  overflow: hidden;
}
/* Sheen sweep */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.05), rgba(6,182,212,.04), transparent);
  transition: left 0.9s ease;
}
.card:hover::before { left: 150%; }
.card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(124,58,237,.2);
  transform: translateY(-10px);
  background: rgba(255,255,255,.96);
}

.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* Profile Card */
.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124,58,237,.1);
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}
.profile-card:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,.2);
  border-color: rgba(124,58,237,.3);
  transform: translateY(-6px);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(124,58,237,.08) 50%, var(--light-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.profile-photo svg { width: 60px; height: 60px; opacity: 0.4; }
.profile-photo-sm { height: 140px; }
.profile-photo-md { height: 180px; }
.profile-photo-lg { height: 220px; }

.profile-body { padding: 20px; }
.profile-name {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 4px;
}
.profile-title {
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.5;
}
.profile-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(6,182,212,.08));
  color: var(--electric-violet);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-top: 8px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(124,58,237,.2);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-home::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, rgba(6,182,212,.06) 40%, transparent 70%);
  animation: floatSlow 10s ease-in-out infinite;
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193,39,45,.07) 0%, rgba(249,115,22,.04) 40%, transparent 70%);
  animation: float 12s ease-in-out infinite reverse;
  pointer-events: none;
}

/* Geometric pattern */
.hero-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  pointer-events: none;
  opacity: 0.07;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #1e1b4b 30%, var(--royal-blue) 60%, var(--electric-violet) 100%);
  background-size: 300% 300%;
  animation: auroraShift 12s ease infinite;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8C290' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216,194,144,.12) 0%, transparent 70%);
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; animation: slideInUp 0.8s ease both; }
.page-hero .section-label { color: var(--heritage-gold); background: rgba(216,194,144,.1); border-color: rgba(216,194,144,.25); }
.page-hero .heading-lg { color: var(--white); animation: textGlow 4s ease-in-out infinite; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin-top: 16px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--heritage-gold); }
.breadcrumb-sep { font-size: 10px; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, #0f0c29 0%, #1e1b4b 30%, var(--royal-blue) 60%, var(--electric-violet) 100%);
  background-size: 300% 300%;
  animation: auroraShift 10s ease infinite;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, rgba(6,182,212,.1) 40%, transparent 70%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}
.cta-section * { position: relative; z-index: 1; }
.cta-section .heading-lg { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.75); max-width: 560px; margin: 16px auto 36px; }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline { position: relative; padding-left: 52px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--electric-violet), var(--vivid-cyan), var(--emerald), var(--heritage-gold), var(--electric-violet));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 44px;
}
.timeline-dot {
  position: absolute;
  left: -44px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(124,58,237,.3), 0 0 20px rgba(124,58,237,.3);
  transition: all var(--transition);
  animation: pulseGlow 3s ease-in-out infinite;
}
.timeline-item:hover .timeline-dot {
  background: linear-gradient(135deg, var(--deep-red), var(--sunset-orange));
  box-shadow: 0 0 0 3px rgba(193,39,45,.3), 0 0 25px rgba(193,39,45,.4);
  animation: none;
}
.timeline-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--electric-violet);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-card {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124,58,237,.1);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.timeline-card:hover {
  box-shadow: 0 8px 32px rgba(124,58,237,.2);
  border-color: rgba(124,58,237,.2);
  transform: translateX(6px);
}
.timeline-title {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 8px;
}

/* =========================================================
   STATISTICS COUNTER
   ========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 44px 24px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(124,58,237,.1);
  transition: all var(--transition-slow);
  overflow: hidden;
}
/* Gradient top accent per stat */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.stat-item:nth-child(1)::before { background: linear-gradient(90deg, var(--electric-violet), var(--vivid-cyan)); }
.stat-item:nth-child(2)::before { background: linear-gradient(90deg, var(--vivid-cyan), var(--emerald)); }
.stat-item:nth-child(3)::before { background: linear-gradient(90deg, var(--emerald), var(--amber-fire)); }
.stat-item:nth-child(4)::before { background: linear-gradient(90deg, var(--deep-red), var(--sunset-orange)); }
.stat-item:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 8px 32px rgba(124,58,237,.2);
  border-color: rgba(124,58,237,.25);
  transform: translateY(-8px);
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item:nth-child(1) .stat-number { background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item:nth-child(2) .stat-number { background: linear-gradient(135deg, var(--vivid-cyan), var(--emerald)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item:nth-child(3) .stat-number { background: linear-gradient(135deg, var(--emerald), var(--amber-fire)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-item:nth-child(4) .stat-number { background: linear-gradient(135deg, var(--deep-red), var(--sunset-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-suffix { font-size: 36px; }
.stat-label {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}
.stat-item:nth-child(1) .stat-icon { background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(6,182,212,.1)); }
.stat-item:nth-child(2) .stat-icon { background: linear-gradient(135deg, rgba(6,182,212,.15), rgba(16,185,129,.1)); }
.stat-item:nth-child(3) .stat-icon { background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(245,158,11,.1)); }
.stat-item:nth-child(4) .stat-icon { background: linear-gradient(135deg, rgba(193,39,45,.15), rgba(249,115,22,.1)); }

/* =========================================================
   SPONSOR TIERS
   ========================================================= */
.sponsor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-gray);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.sponsor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sponsor-card.platinum { border-color: #b0c4de; }
.sponsor-card.gold     { border-color: var(--heritage-gold); }
.sponsor-card.silver   { border-color: #adb5bd; }
.sponsor-card.bronze   { border-color: #cd7f32; }

.sponsor-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.sponsor-badge.platinum { background: #b0c4de; color: #2c3e50; }
.sponsor-badge.gold     { background: var(--heritage-gold); color: var(--royal-blue); }
.sponsor-badge.silver   { background: #adb5bd; color: #2c3e50; }
.sponsor-badge.bronze   { background: #cd7f32; color: var(--white); }

.sponsor-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.sponsor-title {
  font-family: var(--ff-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 8px;
}
.sponsor-list {
  list-style: none;
  text-align: left;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sponsor-list li {
  font-size: 13px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sponsor-list li::before {
  content: '✓';
  color: var(--electric-violet);
  font-weight: 700;
  flex-shrink: 0;
}
.sponsor-featured { border-color: var(--electric-violet) !important; }
.sponsor-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
   AWARDS
   ========================================================= */
.award-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124,58,237,.1);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}
.award-card:hover {
  border-color: rgba(124,58,237,.25);
  box-shadow: 0 8px 32px rgba(124,58,237,.2);
  transform: translateX(6px);
}
.award-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(124,58,237,.3);
}
.award-title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: 4px;
}
.award-desc { font-size: 13px; color: var(--charcoal); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124,58,237,.1);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: rgba(124,58,237,.3);
  box-shadow: 0 4px 24px rgba(124,58,237,.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--royal-blue);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(124,58,237,.04); }
.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--electric-violet);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 99px;
  border: 1.5px solid rgba(124,58,237,.2);
  background: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124,58,237,.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(6,182,212,.08));
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,49,146,.8), rgba(124,58,237,.7));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { color: var(--white); font-size: 32px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--electric-violet); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--royal-blue); }

/* =========================================================
   CAROUSEL (Guests)
   ========================================================= */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.carousel-slide { min-width: 100%; }
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-gray);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.carousel-dot.active {
  background: linear-gradient(90deg, var(--electric-violet), var(--vivid-cyan));
  width: 28px;
  border-radius: 4px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(124,58,237,.2);
  background: rgba(255,255,255,.9);
  color: var(--electric-violet);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.carousel-btn:hover {
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124,58,237,.3);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: linear-gradient(135deg, #0f0c29 0%, #1e1b4b 40%, #1a1d6e 70%, var(--royal-blue) 100%);
  background-size: 300% 300%;
  animation: auroraShift 20s ease infinite;
  color: var(--white);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, rgba(6,182,212,.06) 40%, transparent 70%);
  animation: floatSlow 18s ease-in-out infinite;
  pointer-events: none;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(193,39,45,.08) 0%, rgba(216,194,144,.04) 40%, transparent 70%);
  animation: floatSlow 14s ease-in-out infinite reverse;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-title {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-sub {
  font-size: 11px;
  color: var(--heritage-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
}
.footer-contact-icon { color: var(--heritage-gold); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

.footer-heading {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--heritage-gold), #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 16px;
}
.footer-links a:hover { color: var(--white); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(216,194,144,.2);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social:hover {
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
  transform: translateY(-3px);
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94), transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94), transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(.25,.46,.45,.94), transform 0.8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* =========================================================
   CHIPS / TAGS
   ========================================================= */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(124,58,237,.08);
  color: var(--electric-violet);
  border: 1px solid rgba(124,58,237,.2);
  white-space: nowrap;
  transition: all var(--transition);
}
.ecosystem-section { padding: 52px 0; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); text-align: center; }
.ecosystem-title {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--electric-violet);
  margin-bottom: 20px;
}
.ecosystem-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ecosystem-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.9);
  border: 1.5px solid rgba(124,58,237,.15);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(124,58,237,.06);
}
.ecosystem-chip:hover {
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(124,58,237,.3);
  transform: translateY(-2px);
}
.chip-blue { background: rgba(46,49,146,.08); color: var(--royal-blue); border-color: rgba(46,49,146,.15); }
.chip-red  { background: rgba(193,39,45,.08); color: var(--deep-red); border-color: rgba(193,39,45,.15); }
.chip-gold { background: rgba(216,194,144,.2); color: #7B5800; border-color: var(--heritage-gold); }
.chip-violet { background: rgba(124,58,237,.1); color: var(--electric-violet); border-color: rgba(124,58,237,.2); }
.chip-cyan { background: rgba(6,182,212,.1); color: #0891B2; border-color: rgba(6,182,212,.25); }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; }

/* =========================================================
   ICON BOXES
   ========================================================= */
.icon-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.icon-box-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(6,182,212,.07));
  border: 1px solid rgba(124,58,237,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--royal-blue);
  flex-shrink: 0;
  transition: all var(--transition-slow);
  position: relative;
}
.icon-box-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan), var(--emerald));
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover .icon-box-icon {
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  color: var(--white);
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
  border-color: transparent;
}
.card:hover .icon-box-icon::after { opacity: 1; }
.icon-box-title {
  font-family: var(--ff-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: 4px;
  transition: color var(--transition);
}
.card:hover .icon-box-title { color: var(--electric-violet); }
.icon-box-desc { font-size: 14px; color: var(--charcoal); line-height: 1.6; }

/* =========================================================
   SECTION BG VARIANTS
   ========================================================= */
.bg-ivory   { background: rgba(252,251,245,.75); }
.bg-white   { background: rgba(255,255,255,.8); }
.bg-cream   { background: rgba(251,243,227,.8); }
.bg-blue    { background: linear-gradient(135deg, var(--royal-blue), #1a1d6e); }
.bg-blue *  { color: var(--white); }
.bg-light-gold { background: rgba(251,227,181,.7); }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(124,58,237,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--electric-violet);
  box-shadow: 0 0 0 4px rgba(124,58,237,.1);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =========================================================
   INFOGRAPHIC GRID
   ========================================================= */
.infographic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 22px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124,58,237,.1);
  transition: all var(--transition);
  gap: 14px;
}
.infographic-item:hover {
  border-color: rgba(124,58,237,.3);
  box-shadow: 0 8px 32px rgba(124,58,237,.2);
  transform: translateY(-6px);
}
.infographic-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(124,58,237,.35);
}
.infographic-title {
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--royal-blue);
}
.infographic-desc { font-size: 13px; color: var(--charcoal); }

/* =========================================================
   WORLD MAP PLACEHOLDER
   ========================================================= */
.world-map-wrap {
  background: linear-gradient(135deg, rgba(124,58,237,.06) 0%, rgba(6,182,212,.04) 50%, rgba(16,185,129,.03) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  border: 1px solid rgba(124,58,237,.12);
  position: relative;
  overflow: hidden;
}
.world-map-svg { width: 100%; max-width: 800px; margin: 0 auto; display: block; opacity: 0.8; }

/* =========================================================
   SECTION DIVIDER
   ========================================================= */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--electric-violet) 20%, var(--vivid-cyan) 40%, var(--emerald) 60%, var(--amber-fire) 80%, transparent 100%);
  margin: 0;
  opacity: 0.3;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--electric-violet), var(--vivid-cyan));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(124,58,237,.4), 0 0 0 0 rgba(124,58,237,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); animation: float 3s ease-in-out infinite; }
.back-to-top:hover {
  background: linear-gradient(135deg, var(--deep-red), var(--sunset-orange));
  box-shadow: 0 10px 35px rgba(193,39,45,.45);
  animation: none;
  transform: translateY(-5px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  :root { --nav-h: 64px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 40px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
}

/* =========================================================
   INLINE GRID LAYOUTS — page-specific responsive overrides
   ========================================================= */

/* 5-column infographic grids → 2 col on tablet, 1 on mobile */
@media (max-width: 1024px) {
  [style*="grid-template-columns: repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns:repeat(5"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Sponsor 4-col tier grid */
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  /* All inline two-column grids collapse */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Schedule and registration: sidebar goes below */
  [style*="grid-template-columns: 1fr 340px"],
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns:1fr 340px"],
  [style*="grid-template-columns:1fr 380px"] {
    grid-template-columns: 1fr !important;
  }
  /* 3-col inline grids */
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Hero two-col layout */
  [style*="grid-template-columns: 1fr 1fr;gap:48px"],
  [style*="grid-template-columns:1fr 1fr;gap:48px"] {
    grid-template-columns: 1fr !important;
  }
  /* All inline 5-col → 1 col */
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns:repeat(5"] {
    grid-template-columns: 1fr !important;
  }
  /* Sponsor tiers → 1 col */
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
  /* Schedule sidebar sticky → static */
  [style*="position:sticky"], [style*="position: sticky"] {
    position: static !important;
  }
}

@media (max-width: 480px) {
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Form grid */
  [style*="grid-template-columns: 1fr 1fr;gap:16px"],
  [style*="grid-template-columns:1fr 1fr;gap:16px"] {
    grid-template-columns: 1fr !important;
  }
}

/* Awards timeline responsive */
@media (max-width: 700px) {
  .award-timeline { flex-direction: column; }
  .award-timeline-step::after { content: '↓' !important; position: static !important; transform: none !important; display: block; margin: 8px auto 0; }
}

/* Registration steps responsive */
@media (max-width: 600px) {
  .reg-steps { flex-direction: column; align-items: center; }
  .reg-step::after { content: '↓' !important; position: static !important; transform: none !important; display: block; margin: 4px auto; }
}

/* Guest carousel photo panel */
@media (max-width: 600px) {
  .guest-photo-panel { width: 100% !important; min-height: 180px !important; }
  .guest-name { font-size: 22px !important; }
}

