@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Unified Blue/Green Theme */
  --primary-dark: #0b3d91; 
  --primary-color: #0d47a1;
  --primary-light: #2980b9;
  --secondary-color: #d35400;
  --secondary-hover: #e67e22;
  --accent-color: #27ae60;
  --bg-light: #f8fcff;
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #ffffff;
  --font-main: 'Inter', sans-serif;
  
  /* Pillar Colors */
  --blue-pillar: #3498db;
  --green-pillar: #2ecc71;
  --orange-pillar: #e67e22;
  --purple-pillar: #9b59b6;
  --red-pillar: #e74c3c;
}

/* Header Utility Classes */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-header-main {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.section-subtitle-leaf {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-subtitle-leaf i {
  color: var(--accent-color);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--primary-dark);
}

/* Sticky Register CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-weight: 700;
  font-size: 0.95rem;
  display: none;
}

.btn-sticky {
  background: var(--secondary-color);
  color: white;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sticky:hover {
  background: var(--secondary-hover);
}

@media (min-width: 600px) {
  .sticky-cta-text { display: inline; }
}

/* Top Partnership Bar */
.top-bar {
  background: var(--bg-white);
  border-bottom: 2px solid var(--primary-light);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.partner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  flex: 1;
  min-width: 250px;
  justify-content: center;
}

.partner-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.partner-text {
  display: flex;
  flex-direction: column;
}

.center-partner {
  border-left: 1px solid #e1e5e8;
  border-right: 1px solid #e1e5e8;
  padding: 0 1rem;
}

.partner-role {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.partner-name {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin: 0.2rem 0;
}

.partner a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.partner a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero-section {

  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  padding: 8rem 0 6rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 50%);
  animation: pulse 15s infinite linear;
  z-index: 1;
}

@keyframes pulse {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(2%, 2%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.org-name {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a4b0be;
  margin-bottom: 0.2rem;
}

.org-sub {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.org-details {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.org-details p {
  margin-bottom: 0.3rem;
}

.org-details i {
  color: var(--secondary-color);
  margin-right: 0.3rem;
}

.main-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}

.main-title .year {
  color: var(--secondary-color);
  -webkit-text-fill-color: var(--secondary-color);
  font-size: 5rem;
}

.tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: #c8d6e5;
  margin-bottom: 3rem;
}

.badges-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.badge-item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(5px);
}

.badge-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.badge-item span {
  font-weight: 700;
  letter-spacing: 1px;
}

/* League Overview Section */
.league-overview-section {
  background: var(--bg-white);
}

.league-columns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.league-col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-card {
  flex: 1;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-percent {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.arch-box {
  background: #333;
  color: white;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.arch-box i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.arch-box h4 {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: 1px;
}

.stat-desc {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.time-box {
  background: var(--bg-light);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.time-box h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 800;
}

/* Vision & Mission Section */
.vision-mission-section {

  background: var(--bg-white);
}

.section-intro h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 3rem;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vm-card {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  border-bottom: 4px solid var(--primary-light);
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
/* Vision, Impact & Contribution Section */
.trophy-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trophy-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 250px;
}

.impact-box {
  display: flex;
  align-items: center;
  background: #eaf4fc;
  border: 1px solid #d0e1f9;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  cursor: default;
}

.impact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

.impact-box i {
  font-size: 2rem;
  color: #0d47a1;
  margin-right: 1.5rem;
  width: 40px;
  text-align: center;
}

.impact-box span {
  font-weight: 700;
  color: #0d47a1;
  font-size: 0.95rem;
  line-height: 1.3;
}

.trophy-center {
  flex: 1;
  min-width: 280px;
  text-align: center;
  position: relative;
}

.trophy-base {
  height: 40px;
  background: radial-gradient(ellipse at center, #64b5f6 0%, #1976d2 100%);
  border-radius: 50%;
  margin-top: -20px;
  z-index: -1;
  position: relative;
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.trophy-right {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.trophy-right h2 {
  color: #0d47a1;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.4;
  margin: 0;
}

/* Pillars Section */
.pillars-section {
  background: var(--bg-light);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 50%;
  color: white;
}

.blue-pillar .pillar-icon { background: var(--blue-pillar); }
.green-pillar .pillar-icon { background: var(--green-pillar); }
.orange-pillar .pillar-icon { background: var(--orange-pillar); }
.purple-pillar .pillar-icon { background: var(--purple-pillar); }
.red-pillar .pillar-icon { background: var(--red-pillar); }

.pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pathway Section */
.pathway-section {
  background: var(--bg-white);
}

/* Entry Fee Banner */
.entry-fee-banner {
  display: flex;
  color: white;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.fee-left {
  background: linear-gradient(135deg, #0a2647 0%, #144272 100%);
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.fee-left h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e0e0e0;
}

.fee-amount {
  color: #f1c40f;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fee-left p {
  font-weight: 700;
  letter-spacing: 1px;
}

.fee-right {
  background: linear-gradient(135deg, #0f5c5c 0%, #17847e 100%);
  border-left: 2px solid rgba(255,255,255,0.2);
  flex: 2;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}

.fee-features {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.fee-feature {
  text-align: center;
}

.fee-feature i {
  color: #f1c40f;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.fee-feature span {
  font-weight: 600;
  font-size: 0.9rem;
}

.fee-tagline {
  background: white;
  color: #0056b3;
  text-align: center;
  padding: 0.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-block;
  align-self: center;
}

.fee-tagline i {
  color: #0056b3;
  margin: 0 0.5rem;
}

.hats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.hat-card {
  background: white;
  padding: 2rem 1rem;
  border-radius: 100px;
  text-align: center;
  border: 1px solid #e1e5e8;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.hat-card:hover {
  transform: translateY(-5px);
}

.hat-card h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: var(--primary-dark);
}

.hat-card ul li {
  margin-bottom: 0.5rem;
}

/* Scoring Section */
.scoring-section {
  background: var(--bg-light);
}

.score-vision-grid {
  margin-top: 2rem;
}

.v2047-step {
  background: white;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.v2047-step i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.score-table-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  overflow-x: auto;
}

.score-table {
  width: 100%;
  border-collapse: collapse;
}

.score-table th, .score-table td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid #e1e5e8;
  vertical-align: middle;
}

.score-table th {
  background: var(--primary-light);
  color: white;
  font-size: 1.1rem;
}

.score-table th:first-child { border-top-left-radius: 8px; }
.score-table th:last-child { border-top-right-radius: 8px; text-align: center; }

.score-table td i {
  color: var(--primary-light);
  width: 25px;
  text-align: center;
  margin-right: 0.5rem;
  line-height: 1;
}

.score-table .weightage {
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.total-row td {
  font-weight: 800;
  font-size: 1.2rem;
  background: #f8fafb;
}

/* Audience Section (Schools vs Colleges) */
.audience-section {
  background: var(--bg-white);
  padding: 4rem 0 2rem;
}

.audience-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.audience-card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #e1e5e8;
}

.audience-header {
  padding: 1rem;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

.school-card .audience-header { background: var(--primary-dark); }
.college-card .audience-header { background: #0056b3; }

.audience-icon {
  font-size: 3rem;
  margin: 1.5rem 0 1rem;
}

.school-card .audience-icon { color: var(--primary-dark); }
.college-card .audience-icon { color: #0056b3; }

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.level-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 800;
  color: white;
  margin: 1rem 0;
}

.school-card .level-tag { background: var(--primary-light); }
.college-card .level-tag { background: #007bff; }

.audience-card p {
  padding: 0 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ZHA Board Pathway */
.board-pathway-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.board-timeline-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.board-title-pill {
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.board-title-pill h2 {
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
  font-size: 2rem;
}

.board-title-pill p {
  font-weight: 700;
  color: #555;
  margin: 0;
}

.board-timeline {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.timeline-line {
  position: absolute;
  top: 8px; /* vertically centers the 4px line through the 20px dot: (20-4)/2 = 8 */
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(to right, #ccc, #ccc 10px, transparent 10px, transparent 20px);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: #ccc;
  box-shadow: 0 0 0 4px white;
  flex-shrink: 0;
}

.step-content {
  background: white;
  padding: 1.25rem 1rem;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0b3d91 0%, #2980b9 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Participation Section */
.recognition-sequence {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.recognition-step {
  text-align: center;
}

.recognition-step img {
  width: 70px;
  margin-bottom: 0.5rem;
}

.recognition-step span {
  display: block;
  font-weight: 700;
  color: #0d47a1;
  font-size: 0.95rem;
}

.recognition-arrow {
  color: #0d47a1;
  font-size: 1.5rem;
}

.rank-banner {
  background: #0d47a1;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.levels-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.level-pill {
  display: flex;
  align-items: center;
  background: #e3f2fd;
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.level-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.level-img {
  width: 80px;
  text-align: center;
  margin-right: 1.5rem;
}

.level-content {
  flex: 1;
}

.level-content h4 {
  color: #0d47a1;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.level-content h5 {
  color: #000;
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.level-content p {
  color: #0d47a1;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0;
}

.level-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-circle {
  width: 40px;
  height: 40px;
  background: #27ae60;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.participation-bullets {
  list-style: none;
  padding: 0;
  color: #e67e22;
  font-weight: 600;
  font-size: 0.95rem;
}

.participation-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.participation-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e67e22;
  font-size: 1.5rem;
  line-height: 1;
}

.grand-finale-box {
  display: flex;
  background: #e67e22;
  color: white;
  border-radius: 20px;
  padding: 2rem;
  align-items: center;
  gap: 2rem;
}

.finale-icon {
  width: 120px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finale-content h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.finale-content p {
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-pill {
  background: white;
  border: 1px solid #d0e1f9;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  width: 100%;
  height: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

.feature-pill i {
  width: 30px;
  font-size: 1.2rem;
  margin-right: 0.5rem;
  text-align: center;
}

/* Leadership Section */
.leadership-section {
  background: var(--bg-light);
  padding: 4rem 0;
}

.leadership-grid {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.leader-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1.75rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-light);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.leader-img {
  width: 110px;
  height: 110px;
  background: #e1e5e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin-right: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-img i {
  color: #a0aab2;
}

.leader-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

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

/* Registration Form */
.registration-section {
  background: var(--bg-white);
  padding: 6rem 0;
}

.center-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-container {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e1e5e8;
  background-color: #f8fafb;
  border-radius: 12px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-control::placeholder { color: #a0aab2; font-weight: 400; }
.form-control:focus {
  outline: none;
  background-color: white;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.15);
}

/* Payment Section */
.payment-section {
  background: rgba(39, 174, 96, 0.05);
  border: 1px dashed var(--accent-color);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
}

.payment-title {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

#qrcode {
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.qr-instruction {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.qr-instruction strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.input-hint {
  display: block;
  font-size: 0.75rem;
  color: #a0aab2;
  margin-top: 0.4rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
  color: var(--text-light);
  box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-hover) 0%, #d35400 100%);
  box-shadow: 0 15px 30px rgba(243, 156, 18, 0.4);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(11, 78, 40, 0.2);
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  box-shadow: 0 15px 30px rgba(11, 78, 40, 0.3);
  transform: translateY(-2px);
}

/* Alerts */
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.alert-success { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background-color: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.5rem;
  color: #a0aab2;
  cursor: pointer;
}

/* Responsiveness */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero-container { padding: 0 1.25rem; }

  section { padding: 3rem 0 !important; }
  .hero-section { padding: 5rem 0 3rem !important; }

  .section-kicker { font-size: 0.7rem; letter-spacing: 1.5px; }
  .section-header-main { font-size: 1.6rem; }
  .section-title { font-size: 1.8rem; }

  .main-title { font-size: 2.5rem; }
  .main-title .year { font-size: 3rem; }
  .tagline { font-size: 1.15rem; margin-bottom: 2rem; }
  .badges-row { flex-direction: column; align-items: center; }
  .form-container { padding: 2rem 1.5rem; }

  .board-title-pill { padding: 1.2rem 1.5rem; }
  .board-title-pill h2 { font-size: 1.5rem; }

  .trophy-layout { gap: 2rem; }
  .trophy-right h2 { font-size: 1.6rem; }

  .score-table-wrapper { padding: 1.25rem; }

  .platform-features { grid-template-columns: repeat(2, 1fr) !important; }

  .board-timeline { flex-direction: column !important; }
  .timeline-line { top: 0 !important; bottom: 0 !important; left: 8px !important; right: auto !important; width: 4px !important; height: auto !important; background: repeating-linear-gradient(to bottom, #ccc, #ccc 10px, transparent 10px, transparent 20px) !important; }
  .timeline-step { flex-direction: row !important; align-items: center !important; text-align: left !important; }
  .timeline-dot { margin-bottom: 0 !important; margin-right: 1.5rem !important; }
}

@media (max-width: 480px) {
  .platform-features { grid-template-columns: 1fr !important; }
  .score-table th, .score-table td { padding: 0.75rem; font-size: 0.85rem; }
}
