@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;1,6..12,400&family=Playfair+Display:wght@400;600;700;800&display=swap');

/* ============= CSS VARIABLES ============= */
:root {
  --background: 0 0% 100%;
  --foreground: 225 97% 22%;
  --card: 220 30% 97%;
  --card-foreground: 225 97% 22%;
  --popover: 0 0% 100%;
  --popover-foreground: 225 97% 22%;
  --primary: 225 97% 22%;
  --primary-foreground: 0 0% 100%;
  --secondary: 207 96% 42%;
  --secondary-foreground: 0 0% 100%;
  --muted: 220 30% 95%;
  --muted-foreground: 225 30% 45%;
  --accent: 164 78% 37%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 20% 90%;
  --input: 220 20% 90%;
  --ring: 207 96% 42%;
  --radius: 0.75rem;
  --way-navy: 225 97% 22%;
  --way-blue: 207 96% 42%;
  --way-teal: 164 78% 37%;
  --way-purple: 281 83% 62%;
  --way-coral: 7 70% 65%;
  --gradient-hero: linear-gradient(135deg, hsl(225 97% 22%) 0%, hsl(207 96% 42%) 50%, hsl(164 78% 37%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(207 96% 42%), hsl(281 83% 62%));
  --gradient-cta: linear-gradient(135deg, hsl(164 78% 37%), hsl(207 96% 42%));
  --shadow-card: 0 4px 24px -4px hsl(225 97% 22% / 0.08);
  --shadow-elevated: 0 12px 40px -8px hsl(225 97% 22% / 0.15);
  --shadow-glow: 0 0 30px hsl(207 96% 42% / 0.2);
}

/* ============= RESET & BASE ============= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', system-ui, sans-serif; background: hsl(var(--background)); color: hsl(var(--foreground)); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ============= UTILITY CLASSES ============= */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.w-full { width: 100%; }
.w-max { width: max-content; }
.min-h-screen { min-height: 100vh; }
.h-16 { height: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-8 { padding-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.shrink-0 { flex-shrink: 0; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border { border: 1px solid hsl(var(--border)); }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }

/* ============= COLORS ============= */
.bg-background { background: hsl(var(--background)); }
.bg-card { background: hsl(var(--card)); }
.bg-muted { background: hsl(var(--muted)); }
.bg-muted-30 { background: hsl(var(--muted) / 0.3); }
.bg-muted-40 { background: hsl(var(--muted) / 0.4); }
.bg-muted-50 { background: hsl(var(--muted) / 0.5); }
.bg-muted-60 { background: hsl(var(--muted) / 0.6); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-pf-80 { color: hsl(var(--primary-foreground) / 0.8); }
.text-pf-70 { color: hsl(var(--primary-foreground) / 0.7); }
.text-pf-60 { color: hsl(var(--primary-foreground) / 0.6); }
.text-pf-40 { color: hsl(var(--primary-foreground) / 0.4); }
.text-pf-30 { color: hsl(var(--primary-foreground) / 0.3); }
.text-way-navy { color: hsl(var(--way-navy)); }
.text-way-blue { color: hsl(var(--way-blue)); }
.text-way-teal { color: hsl(var(--way-teal)); }
.text-way-purple { color: hsl(var(--way-purple)); }
.text-way-coral { color: hsl(var(--way-coral)); }
.text-destructive { color: hsl(var(--destructive)); }
.text-white { color: #fff; }
.text-amber-600 { color: #d97706; }
.text-emerald-600 { color: #059669; }
.text-rose-500 { color: #f43f5e; }

/* ============= TYPOGRAPHY ============= */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.font-sans { font-family: 'Nunito Sans', system-ui, sans-serif; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-02em { letter-spacing: 0.2em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-line { white-space: pre-line; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============= GRADIENTS & BRANDED ============= */
.gradient-hero { background: var(--gradient-hero); }
.gradient-accent { background: var(--gradient-accent); }
.gradient-cta { background: var(--gradient-cta); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.text-gradient { background: linear-gradient(135deg, hsl(180 70% 65%), hsl(210 90% 75%), hsl(270 80% 78%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============= BORDER RADIUS ============= */
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-tl-xl { border-top-left-radius: 1rem; }
.rounded-tr-xl { border-top-right-radius: 1rem; }

/* ============= TRANSITIONS ============= */
.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.hover-scale:hover { transform: scale(1.05); }
.hover-scale-sm:hover { transform: scale(1.02); }
.group:hover .group-hover-scale { transform: scale(1.1); }
.group:hover .group-hover-scale-sm { transform: scale(1.05); }

/* ============= NAVBAR ============= */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: hsl(var(--primary) / 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid hsl(var(--secondary) / 0.2); }
.navbar .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; padding: 0 1rem; max-width: 1400px; margin: 0 auto; }
.navbar .logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: hsl(var(--primary-foreground)); cursor: pointer; }
.navbar .logo img { width: 2rem; height: 2rem; object-fit: contain; }
.navbar .logo .teal { color: hsl(var(--way-teal)); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links .nav-link { padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary-foreground) / 0.8); border-radius: 0.375rem; transition: color 0.2s; }
.nav-links .nav-link:hover { color: hsl(var(--way-teal)); }
.nav-cta { padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; color: hsl(var(--primary-foreground)); transition: transform 0.2s; }
.nav-cta:hover { transform: scale(1.05); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; margin-top: 0.25rem; width: 12rem; border-radius: var(--radius); background: hsl(var(--primary)); border: 1px solid hsl(var(--secondary) / 0.2); box-shadow: var(--shadow-elevated); overflow: hidden; display: none; z-index: 60; }
.nav-dropdown-menu.show { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 600; color: hsl(var(--primary-foreground) / 0.8); transition: all 0.2s; }
.nav-dropdown-menu a:hover { color: hsl(var(--way-teal)); background: hsl(var(--secondary) / 0.1); }
.chevron-icon { transition: transform 0.2s; display: inline-block; }
.chevron-icon.open { transform: rotate(180deg); }
.mobile-toggle { display: none; color: hsl(var(--primary-foreground)); padding: 0.25rem; }
.mobile-menu { display: none; background: hsl(var(--primary) / 0.98); backdrop-filter: blur(12px); }
.mobile-menu.show { display: block; }
.mobile-menu .nav-link { display: block; width: 100%; text-align: left; padding: 0.75rem 1rem; color: hsl(var(--primary-foreground) / 0.8); font-weight: 600; border-radius: var(--radius); transition: color 0.2s; }
.mobile-menu .nav-link:hover { color: hsl(var(--way-teal)); }
.mobile-menu .mobile-sub { padding-left: 2rem; }
.mobile-menu .mobile-sub a { display: block; padding: 0.625rem 1rem; color: hsl(var(--primary-foreground) / 0.7); font-weight: 500; font-size: 0.875rem; transition: color 0.2s; }
.mobile-menu .mobile-sub a:hover { color: hsl(var(--way-teal)); }
.lang-switcher { position: relative; display: flex; align-items: center; margin-right: 0.5rem; }
.lang-trigger { display: flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.625rem; border-radius: 9999px; border: 1px solid hsl(var(--way-teal)); color: hsl(var(--primary-foreground)); font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: all 0.2s; background: transparent; }
.lang-trigger:hover { background: hsl(var(--way-teal) / 0.15); }
.lang-trigger .globe-icon { width: 16px; height: 16px; color: hsl(var(--way-teal)); }
.lang-trigger .current-lang { color: hsl(var(--primary-foreground)); }
.lang-dropdown { position: absolute; top: calc(100% + 0.5rem); right: 0; min-width: 10rem; background: hsl(var(--background)); border-radius: var(--radius); border: 1px solid hsl(var(--border)); box-shadow: var(--shadow-elevated); overflow: hidden; display: none; z-index: 100; }
.lang-dropdown.show { display: block; }
.lang-option { display: flex; align-items: center; gap: 0.625rem; padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 600; color: hsl(var(--foreground)); cursor: pointer; transition: all 0.15s; width: 100%; text-align: left; border: none; background: none; }
.lang-option:hover { background: hsl(var(--muted)); }
.lang-option.active { background: hsl(var(--way-teal) / 0.08); color: hsl(var(--way-teal)); }
.lang-option .lang-code { font-size: 0.7rem; font-weight: 800; color: hsl(var(--way-blue)); min-width: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.lang-option.active .lang-code { color: hsl(var(--way-teal)); }
.lang-option .lang-name { font-weight: 500; }

/* ============= HERO ============= */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; opacity: 0.85; }
.hero-content { position: relative; z-index: 10; padding: 8rem 1rem; text-align: center; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.hero-btn { padding: 0.875rem 2rem; border-radius: 9999px; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.025em; transition: transform 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.hero-btn:hover { transform: scale(1.05); }

/* Hero Split Layout */
.hero-split .hero-split-content {
  position: relative; z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  width: 100%;
}
.hero-split .hero-info { text-align: left; }
.hero-split .hero-info h1 { margin-bottom: 1rem; }

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.5rem;
  padding: 2rem;
  animation: heroFormFloat 0.8s ease-out both;
  animation-delay: 0.4s;
}
.hero-form-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hero-form-subtitle {
  color: hsl(164 78% 55%);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-reg-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.hero-field { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-field-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.hero-field-input {
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.25s ease;
}
.hero-field-input:focus {
  border-color: hsl(164 78% 37%);
  box-shadow: 0 0 0 3px hsl(164 78% 37% / 0.12);
  background: rgba(255,255,255,0.1);
}
.hero-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}
.hero-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px hsl(164 78% 37% / 0.4);
}
.hero-form-card .form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1rem 0;
}
.hero-form-card .form-error {
  color: hsl(0 84% 60%);
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-split .hero-split-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero-split .hero-info { text-align: center; }
  .hero-split .hero-btns { justify-content: center !important; }
  .hero-form-card { padding: 1.5rem; }
  .hero-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-split .hero-split-content { padding-top: 5rem; padding-bottom: 2rem; }
  .hero-split .hero-info h1 { font-size: 1.5rem !important; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btn { text-align: center; padding: 0.75rem 1.5rem; }
  .hero-form-card { padding: 1.25rem; border-radius: 1rem; }
  .hero-form-title { font-size: 1.1rem; }
}
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-indicator .mouse { width: 1.5rem; height: 2.5rem; border: 2px solid hsl(var(--primary-foreground) / 0.3); border-radius: 9999px; display: flex; align-items: flex-start; justify-content: center; padding-top: 0.375rem; }
.scroll-indicator .dot { width: 0.375rem; height: 0.75rem; background: hsl(var(--way-teal)); border-radius: 9999px; }

/* ============= PAGE HERO (sub pages) ============= */
.page-hero { position: relative; padding-top: 8rem; padding-bottom: 5rem; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 10; }

/* ============= KEY DATES ============= */
.key-dates { padding: 4rem 0; background: hsl(var(--muted)); }
.date-card { background: hsl(var(--background)); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-card); text-align: center; transition: box-shadow 0.3s; }
.date-card:hover { box-shadow: var(--shadow-elevated); }
.date-icon { width: 3rem; height: 3rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: transform 0.2s; }
.date-card:hover .date-icon { transform: scale(1.1); }

/* ============= SECTION HEADERS ============= */
.section-tag { color: hsl(var(--way-teal)); font-weight: 700; font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-size: 1.875rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 1rem; }
.section-desc { color: hsl(var(--muted-foreground)); max-width: 36rem; margin: 0 auto; }

/* ============= CARDS ============= */
.card { background: hsl(var(--card)); border-radius: 1rem; box-shadow: var(--shadow-card); border: 1px solid hsl(var(--border)); overflow: hidden; transition: box-shadow 0.3s; }
.card:hover { box-shadow: var(--shadow-elevated); }
.card-icon { width: 2.75rem; height: 2.75rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform 0.2s; }
.card:hover .card-icon { transform: scale(1.1); }

/* ============= TRACKS ============= */
.track-card { position: relative; background: hsl(var(--background)); border-radius: 1rem; box-shadow: var(--shadow-card); overflow: hidden; cursor: pointer; transition: box-shadow 0.3s; }
.track-card:hover { box-shadow: var(--shadow-elevated); }
.track-bar { position: absolute; top: 0; left: 0; width: 100%; height: 4px; }
.track-icon { width: 3rem; height: 3rem; border-radius: 1rem; background: hsl(var(--muted)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: transform 0.2s; }
.track-card:hover .track-icon { transform: scale(1.1); }
.track-detail { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.track-detail.open { max-height: 500px; }
.track-detail-inner { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid hsl(var(--border)); }

/* ============= SPEAKER CAROUSEL ============= */
.speaker-card { flex-shrink: 0; width: 16rem; background: hsl(var(--card)); border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid hsl(var(--border)); transition: box-shadow 0.3s; }
.speaker-card:hover { box-shadow: var(--shadow-elevated); }
.speaker-photo { height: 14rem; overflow: hidden; background: hsl(var(--muted)); }
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.speaker-card:hover .speaker-photo img { transform: scale(1.05); }
.speaker-info { padding: 1.25rem; }
@keyframes speaker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.speaker-carousel { animation: speaker-scroll 30s linear infinite; }
.speaker-carousel:hover { animation-play-state: paused; }

/* ============= CONTACT ============= */
.map-frame { border-radius: 1rem; overflow: hidden; border: 1px solid hsl(var(--border)); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.contact-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ============= SPONSORS ============= */
.sponsor-img { height: 2.5rem; filter: grayscale(100%); opacity: 0.5; transition: all 0.3s; cursor: pointer; }
.sponsor-img:hover { filter: grayscale(0); opacity: 1; }

/* ============= FOOTER ============= */
.footer { padding: 4rem 0; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: hsl(var(--way-teal)); }

/* ============= FORMS ============= */
.form-input { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--background)); color: hsl(var(--foreground)); font-size: 0.875rem; transition: all 0.2s; outline: none; }
.form-input::placeholder { color: hsl(var(--muted-foreground)); }
.form-input:focus { box-shadow: 0 0 0 2px hsl(var(--way-teal) / 0.5); }
.form-input.textarea { resize: vertical; }
.form-select { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius); border: 1px solid hsl(var(--border)); background: hsl(var(--background)); color: hsl(var(--foreground)); font-size: 0.875rem; transition: all 0.2s; outline: none; }
.form-select:focus { box-shadow: 0 0 0 2px hsl(var(--way-teal) / 0.5); }
.form-label { display: block; font-size: 0.875rem; font-weight: 700; color: hsl(var(--foreground)); margin-bottom: 0.375rem; }
.form-btn { width: 100%; padding: 0.875rem; border-radius: 9999px; font-weight: 700; font-size: 0.875rem; color: hsl(var(--primary-foreground)); display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.2s; }
.form-btn:hover { transform: scale(1.02); }
.form-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { text-align: center; padding: 1rem 0; display: none; }
.form-success.show { display: block; }
.success-icon { width: 4rem; height: 4rem; border-radius: 9999px; background: hsl(var(--way-teal) / 0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-error { color: hsl(var(--destructive)); font-size: 0.875rem; display: none; }
.form-error.show { display: block; }

/* ============= TABS ============= */
.tabs-list { display: flex; flex-wrap: wrap; gap: 0.25rem; background: hsl(var(--muted) / 0.5); padding: 0.5rem; border-radius: 1rem; margin-bottom: 2rem; }
.tab-btn { flex: 1; min-width: 120px; padding: 0.625rem 0.75rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 700; color: hsl(var(--muted-foreground)); transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.375rem; }
.tab-btn.active { color: hsl(var(--primary-foreground)); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============= PROGRAM ============= */
.day-tab { padding: 0.75rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 700; white-space: nowrap; transition: all 0.2s; color: hsl(var(--muted-foreground)); }
.day-tab:hover { background: hsl(var(--muted)); }
.day-tab.active { color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-glow); }
.session-card { border-left: 4px solid; border-radius: 1rem; overflow: hidden; transition: box-shadow 0.3s; }
.session-card:hover { box-shadow: var(--shadow-card); }
.session-card.expandable { cursor: pointer; }
.session-detail { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.session-detail.open { max-height: 1000px; }
.session-speaker-avatar { width: 2rem; height: 2rem; border-radius: 9999px; object-fit: cover; border: 2px solid hsl(var(--background)); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.session-speaker-placeholder { width: 2rem; height: 2rem; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: hsl(var(--primary-foreground)); border: 2px solid hsl(var(--background)); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

/* Session type colors */
.session-keynote { border-color: hsl(var(--way-blue)); background: hsl(var(--way-blue) / 0.05); }
.session-panel { border-color: hsl(var(--way-teal)); background: hsl(var(--way-teal) / 0.05); }
.session-plenary { border-color: hsl(var(--way-purple)); background: hsl(var(--way-purple) / 0.05); }
.session-research { border-color: #f59e0b; background: rgba(245,158,11,0.05); }
.session-applied { border-color: #10b981; background: rgba(16,185,129,0.05); }
.session-break { border-color: hsl(var(--muted-foreground) / 0.3); background: hsl(var(--muted)); }
.session-ceremony { border-color: hsl(var(--way-navy)); background: hsl(var(--way-navy) / 0.05); }
.session-reflection { border-color: #fb7185; background: rgba(251,113,133,0.05); }

/* Session badges */
.badge { font-size: 0.75rem; font-weight: 700; padding: 0.125rem 0.625rem; border-radius: 9999px; }
.badge-keynote { background: hsl(var(--way-blue) / 0.15); color: hsl(var(--way-blue)); }
.badge-panel { background: hsl(var(--way-teal) / 0.15); color: hsl(var(--way-teal)); }
.badge-plenary { background: hsl(var(--way-purple) / 0.15); color: hsl(var(--way-purple)); }
.badge-research { background: rgba(245,158,11,0.15); color: #d97706; }
.badge-applied { background: rgba(16,185,129,0.15); color: #059669; }
.badge-break { background: hsl(var(--muted-foreground) / 0.1); color: hsl(var(--muted-foreground)); }
.badge-ceremony { background: hsl(var(--way-navy) / 0.15); color: hsl(var(--way-navy)); }
.badge-reflection { background: rgba(251,113,133,0.15); color: #f43f5e; }

/* ============= SPEAKER PROFILE (speakers page) ============= */
.speaker-profile { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.speaker-profile-photo { width: 100%; border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-elevated); border: 1px solid hsl(var(--border)); position: relative; aspect-ratio: 3/4; }
.speaker-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.speaker-profile-photo .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, hsl(var(--primary) / 0.8), transparent); padding: 1rem; }

/* ============= TABLE ============= */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { padding: 1rem; text-align: left; font-weight: 600; }
.comparison-table td { padding: 1rem; border-bottom: 1px solid hsl(var(--border)); }

/* ============= ANIMATIONS ============= */
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============= GRID LAYOUTS ============= */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; align-items: center; gap: 0.5rem; }
  .lg-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .lg-grid-4, .lg-grid-3, .lg-grid-2, .grid-2, .grid-3, .grid-4, .lg-grid-5 { grid-template-columns: 1fr; }
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-flex-row { flex-direction: column; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .hero-content { padding: 6rem 1rem; }
  .speaker-profile { flex-direction: column; }
  .container { padding: 0 1rem; }
}

@media (min-width: 640px) {
  .sm-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .sm-inline { display: inline; }
}

@media (min-width: 769px) {
  .md-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .md-flex-row { flex-direction: row; }
  .md-w-40 { width: 10rem; }
  .md-text-5xl { font-size: 3rem; }
  .md-text-6xl { font-size: 3.75rem; }
  .speaker-profile { flex-direction: row; }
  .speaker-profile.reverse { flex-direction: row-reverse; }
  .speaker-profile-photo { width: 33.333%; }
  .speaker-profile-info { width: 66.666%; }
}

@media (min-width: 1025px) {
  .lg-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-5 { grid-template-columns: repeat(5, 1fr); }
  .lg-flex { display: flex; }
  .hero h1 { font-size: 3.75rem; }
  .md-text-5xl { font-size: 3rem; }
}

/* ============= SVG ICONS INLINE ============= */
.icon { display: inline-block; vertical-align: middle; }
.icon svg { display: inline-block; }

/* ============= MISC ============= */
.grayscale { filter: grayscale(100%); }
.opacity-4 { opacity: 0.04; }
.aspect-video { aspect-ratio: 16/9; }
.object-cover { object-fit: cover; }
.object-top { object-position: top; }
.object-contain { object-fit: contain; }
.inset-0 { inset: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.sticky { position: sticky; }
.overflow-x-auto { overflow-x: auto; }
.border-l-4 { border-left-width: 4px; }

/* Track gradient bars */
.bar-navy-blue { background: linear-gradient(to right, hsl(var(--way-navy)), hsl(var(--way-blue))); }
.bar-blue-teal { background: linear-gradient(to right, hsl(var(--way-blue)), hsl(var(--way-teal))); }
.bar-teal-blue { background: linear-gradient(to right, hsl(var(--way-teal)), hsl(var(--way-blue))); }
.bar-purple-blue { background: linear-gradient(to right, hsl(var(--way-purple)), hsl(var(--way-blue))); }
.bar-blue-purple { background: linear-gradient(to right, hsl(var(--way-blue)), hsl(var(--way-purple))); }
.bar-navy-purple { background: linear-gradient(to right, hsl(var(--way-navy)), hsl(var(--way-purple))); }
.bar-coral-purple { background: linear-gradient(to right, hsl(var(--way-coral)), hsl(var(--way-purple))); }
.bar-teal-navy { background: linear-gradient(to right, hsl(var(--way-teal)), hsl(var(--way-navy))); }

/* Specific button gradient styles */
.btn-indigo-purple { background: linear-gradient(to right, #3730a3, #7e22ce); }
.btn-teal-cyan { background: linear-gradient(to right, #0f766e, #0891b2); }
.btn-slate-blue { background: linear-gradient(to right, #334155, #1e40af); }

/* File upload label styling */
.file-label { cursor: pointer; display: flex; align-items: center; gap: 0.5rem; }

/* ============= VIDEO SHOWCASE ============= */
.video-showcase {
  position: relative;
  background: linear-gradient(180deg, hsl(220 30% 96%) 0%, hsl(220 30% 97%) 100%);
  padding: 3.5rem 0;
  overflow: hidden;
}
.video-showcase::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, hsl(var(--background)) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.video-showcase::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(0deg, hsl(220 30% 97%) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.video-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 4px 30px hsl(207 96% 42% / 0.12),
    0 1px 0 hsl(164 78% 37% / 0.3),
    0 25px 50px rgba(0,0,0,0.08);
  aspect-ratio: 16/9;
  background: hsl(var(--primary));
  border: 1px solid hsl(220 20% 90%);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-sound-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-sound-toggle:hover {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.1);
}
.video-sound-toggle svg {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .video-showcase { padding: 2rem 0; }
  .video-wrapper { border-radius: 0.75rem; }
  .video-sound-toggle { top: 0.6rem; right: 0.6rem; width: 36px; height: 36px; }
}

/* ============= HERO REGISTRATION FORM ============= */
.hero-form-wrapper {
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  animation: heroFormFloat 0.8s ease-out both;
  animation-delay: 0.6s;
}
@keyframes heroFormFloat {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-form-label {
  color: hsl(164 78% 55%);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-align: center;
}
.hero-form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.hero-input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}
.hero-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.hero-input:focus {
  border-color: hsl(164 78% 37%);
  box-shadow: 0 0 0 3px hsl(164 78% 37% / 0.15);
  background: rgba(255,255,255,0.1);
}
.hero-form-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 0.625rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.hero-form-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsl(164 78% 37% / 0.4);
}
.hero-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: hsl(164 78% 55%);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0;
}
@media (max-width: 640px) {
  .hero-form-wrapper { padding: 1rem; margin-top: 1.5rem; }
  .hero-form { flex-direction: column; }
  .hero-form-btn { justify-content: center; }
}

/* ============= DOPING HAFIZA SECTION ============= */
.doping-section {
  position: relative;
  background: linear-gradient(135deg, hsl(225 97% 14%) 0%, hsl(225 60% 10%) 50%, hsl(207 50% 12%) 100%);
  padding: 5rem 0;
  overflow: hidden;
}
.doping-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.doping-top {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.doping-logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.doping-tagline {
  color: hsl(164 78% 55%);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.doping-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.65;
}
.doping-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.doping-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.doping-stat-num {
  color: hsl(164 78% 50%);
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
}
.doping-stat-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.doping-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
.doping-feats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.doping-feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.825rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.doping-feat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}
.doping-feat svg { flex-shrink: 0; }
.doping-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.doping-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px hsl(164 78% 37% / 0.35);
}
@media (max-width: 640px) {
  .doping-section { padding: 3rem 0; }
  .doping-card { padding: 1.5rem; }
  .doping-top { flex-direction: column; text-align: center; gap: 1rem; }
  .doping-logo { width: 120px; }
  .doping-stats-row { gap: 1.5rem; }
  .doping-feats-grid { grid-template-columns: 1fr; }
}
