/* ============================================================
   KPPIKG 2026 — Design System & Styles
   ============================================================ */

/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Brand */
  --navy: #26435E;
  --gold: #C09F5F;
  --cream: #E6DDD1;

  /* Earth Tones */
  --olive: #756D45;
  --bronze: #BE823D;
  --terracotta: #A45F35;

  /* Neutrals */
  --charcoal: #333333;
  --white: #FFFFFF;
  --off-white: #F5F0EA;
  --dark-navy: #1A2F42;

  /* Functional */
  --shadow-sm: 0 2px 8px rgba(38, 67, 94, 0.08);
  --shadow-md: 0 8px 30px rgba(38, 67, 94, 0.12);
  --shadow-lg: 0 20px 50px rgba(38, 67, 94, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

/* --- Utility --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 680px;
  margin: 0 auto 50px;
  opacity: 0.8;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--bronze));
  border: none;
  margin: 16px auto 24px;
  border-radius: 2px;
}

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar-brand img {
  height: 36px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.navbar.scrolled .navbar-brand img {
  opacity: 1;
  transform: translateY(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.navbar.scrolled .nav-links li a {
  color: var(--charcoal);
}

.nav-links li a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(192, 159, 95, 0.35);
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--bronze) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 159, 95, 0.45) !important;
}

/* Login link */
.nav-login {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 8px 22px !important;
  border: 2px solid var(--gold) !important;
  border-radius: 50px !important;
  color: var(--gold) !important;
  transition: all var(--transition) !important;
}

.nav-login:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.navbar.scrolled .nav-login {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* Dropdown */
.nav-dropdown-toggle {
  position: relative;
}

/* Invisible hover bridge — fills the gap between trigger and dropdown */
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-trigger i {
  font-size: 0.6em;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  z-index: 1001;
  border: 1px solid rgba(38, 67, 94, 0.08);
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

.nav-dropdown-toggle:hover>.nav-dropdown {
  display: block;
}

.nav-dropdown-toggle:hover .nav-dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-dropdown li {
  padding: 0;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal) !important;
  white-space: nowrap;
  transition: all var(--transition);
}

.nav-dropdown li a:hover {
  background: var(--off-white);
  color: var(--gold) !important;
  padding-left: 26px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
  background: var(--navy);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #F5F0EA 0%, #EDE4D6 30%, #E6DDD1 60%, #DDD2C2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192, 159, 95, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(190, 131, 61, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(192, 159, 95, 0.08) 0%, transparent 70%);
  z-index: 1;
}

/* Decorative geometric lines */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(192, 159, 95, 0.25);
  border-radius: 50%;
  z-index: 1;
  animation: heroOrb 20s linear infinite;
}

@keyframes heroOrb {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(192, 159, 95, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(192, 159, 95, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.hero h1 .hero-logo {
  display: block;
  max-width: 520px;
  width: 90%;
  height: auto;
  margin: 0 auto;

}

.hero h1 .year {
  display: block;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 8px;
  color: var(--gold);
  margin-top: 8px;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-style: italic;
  opacity: 0.85;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-meta-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-collab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(192, 159, 95, 0.3);
  padding: 20px 36px 24px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  margin-bottom: 40px;
}

.hero-collab-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

.agdc-collab-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all var(--transition);
}

.agdc-collab-block:hover {
  transform: translateY(-2px);
}

.agdc-collab-block:hover .hero-agdc-logo {
  filter: brightness(1.1);
}

.agdc-collab-block:hover .hero-agdc-name {
  color: var(--bronze);
}

.hero-agdc-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: filter var(--transition);
}

.hero-agdc-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

/* --- Countdown --- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(192, 159, 95, 0.25);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  min-width: 85px;
  text-align: center;
  transition: all var(--transition);
}

.countdown-box:hover {
  background: rgba(192, 159, 95, 0.12);
  border-color: rgba(192, 159, 95, 0.3);
  transform: translateY(-3px);
}

.countdown-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(38, 67, 94, 0.3);
  transition: all var(--transition);
}

.hero-cta:hover {
  background: var(--dark-navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(38, 67, 94, 0.4);
  color: var(--white);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.about-text p {
  margin-bottom: 20px;
  opacity: 0.85;
  line-height: 1.9;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, var(--navy), var(--dark-navy));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192, 159, 95, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.about-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.about-card li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   TEASER VIDEO
   ============================================================ */
.teaser-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy), var(--dark-navy));
  position: relative;
  overflow: hidden;
}

.teaser-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192, 159, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.teaser-section .section-label {
  color: var(--gold);
}

.teaser-section .section-title {
  color: var(--white);
}

.teaser-video-wrapper {
  max-width: 1100px;
  margin: 40px auto 0;
  text-align: center;
}

.teaser-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(192, 159, 95, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.teaser-video-container:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(192, 159, 95, 0.35),
    0 0 40px rgba(192, 159, 95, 0.1);
}

.teaser-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   PROGRAM HIGHLIGHTS
   ============================================================ */
.program-section {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-card-header {
  padding: 36px 30px 28px;
  position: relative;
}

.program-card:nth-child(1) .program-card-header {
  background: linear-gradient(135deg, var(--olive), #8A8255);
}

.program-card:nth-child(2) .program-card-header {
  background: linear-gradient(135deg, var(--bronze), #D49A52);
}

.program-card:nth-child(3) .program-card-header {
  background: linear-gradient(135deg, var(--terracotta), #C07548);
}

.program-card-header .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.program-card-header h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 6px;
  font-weight: 700;
}

.program-card-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.program-card-body {
  padding: 28px 30px 36px;
  flex-grow: 1;
}

.program-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.program-card-body li i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---- Event Information Grid ---- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--bronze));
  opacity: 0;
  transition: opacity var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 159, 95, 0.2);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.event-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.7;
  flex-grow: 1;
}

.event-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: all var(--transition);
}

.event-card:hover .event-card-link {
  color: var(--bronze);
  gap: 10px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}

.pricing-deadline {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.75;
}

.pricing-deadline i {
  color: var(--gold);
  margin-right: 6px;
}

.pricing-deadline strong {
  color: var(--navy);
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--bronze));
  opacity: 0;
  transition: opacity var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192, 159, 95, 0.2);
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.price-card.featured::before {
  opacity: 1;
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.group-badge {
  background: linear-gradient(135deg, var(--navy), var(--dark-navy));
}

.group-savings-badge {
  background: rgba(192, 159, 95, 0.1);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--gold);
}

.price-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.price-amount .currency {
  font-size: 0.85rem;
  font-weight: 600;
  vertical-align: top;
  color: var(--gold);
}

.price-note {
  font-size: 0.78rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  text-align: left;
  width: 100%;
}

.price-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.82rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 6px;
}

.price-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

.price-card .btn-price {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--navy);
  margin-top: auto;
}

.price-card .btn-price:hover {
  background: transparent;
  color: var(--navy);
}

.price-card.featured .btn-price {
  background: var(--gold);
  border-color: var(--gold);
}

.price-card.featured .btn-price:hover {
  background: transparent;
  color: var(--gold);
}

/* Disabled / Coming Soon card */
.price-card.disabled {
  background: #F0ECE6;
  border-color: #D8D2C8;
  opacity: 0.75;
  pointer-events: none;
  position: relative;
}

.price-card.disabled::before {
  opacity: 0;
}

.price-card.disabled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg,
      transparent,
      transparent 10px,
      rgba(38, 67, 94, 0.03) 10px,
      rgba(38, 67, 94, 0.03) 20px);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.price-card.disabled h3,
.price-card.disabled .price-amount {
  color: #999;
}

.price-card.disabled .price-amount .currency {
  color: #bbb;
}

.disabled-badge {
  background: linear-gradient(135deg, #999, #aaa) !important;
}

.btn-disabled {
  background: #ccc !important;
  border-color: #ccc !important;
  color: #888 !important;
  cursor: not-allowed;
}

/* ============================================================
   SPONSORS / CALL FOR PARTNERS SECTION
   ============================================================ */
.sponsors-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sponsors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(192, 159, 95, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 100%, rgba(192, 159, 95, 0.08) 0%, transparent 50%);
}

.sponsors-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.sponsors-content .section-title {
  color: var(--white);
}

.sponsors-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.sponsor-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.sponsor-logo-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(192, 159, 95, 0.3);
}

.sponsor-logo-item svg {
  width: 100%;
  max-width: 160px;
  height: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(38, 67, 94, 0.12);
  margin-bottom: 30px;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.footer-brand .logo-sub {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  color: var(--charcoal);
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--navy);
  opacity: 0.75;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  opacity: 1;
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 67, 94, 0.08);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--navy);
  opacity: 0.6;
}

.footer-bottom a {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .about-grid {
    gap: 40px;
  }

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    gap: 4px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: var(--charcoal) !important;
    padding: 12px 16px;
    display: block;
    border-radius: var(--radius-sm);
  }

  .nav-links li a:hover {
    background: var(--off-white);
    color: var(--gold) !important;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .nav-login {
    text-align: center;
    margin-top: 4px;
  }

  /* Mobile dropdowns */
  .nav-dropdown-toggle {
    position: static;
  }

  .nav-dropdown-toggle:hover>.nav-dropdown {
    display: none;
  }

  .nav-dropdown-toggle.open>.nav-dropdown {
    display: block;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    margin: 4px 0 4px 16px;
    padding: 6px 0;
    min-width: auto;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown li a {
    font-size: 0.82rem;
    padding: 8px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h1 .year {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-box {
    min-width: 70px;
    padding: 14px 8px;
  }

  .countdown-number {
    font-size: 1.6rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* Program */
  .event-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Pricing */
  .pricing-grid, .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Sponsors */
  .sponsor-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Section titles */
  .section-title {
    font-size: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero h1 .year {
    font-size: 1.1rem;
    letter-spacing: 4px;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .countdown-box {
    min-width: 60px;
    padding: 10px 6px;
  }

  .countdown-number {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .pricing-grid, .pricing-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}