/* ============================================================
   DON'S POLE VAULT ACADEMY — Global Stylesheet
   Color Palette:
     Primary   : #1B5E20 (Deep Green)
     Accent    : #FFD700 (Gold)
     Background: #FFFFFF
     Text      : #222222
   Fonts: Oswald (headings), Open Sans (body)
   ============================================================ */

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

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: #222222;
  background: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
}

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

/* ── CSS Variables ── */
:root {
  --green:      #1B5E20;
  --green-mid:  #2E7D32;
  --green-light:#388E3C;
  --gold:       #FFD700;
  --gold-dark:  #FFC000;
  --white:      #ffffff;
  --text:       #222222;
  --text-light: #555555;
  --bg-light:   #F5F5F5;
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --radius:     8px;
  --transition: all 0.3s ease;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 4px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green);
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.nav-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.nav-title span {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--gold);
  color: var(--green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Page offset for fixed nav ── */
main { padding-top: 70px; }

/* ============================================================
   NEWS TICKER
   ============================================================ */
.news-ticker {
  background: var(--gold);
  color: var(--green);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--green);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0 18px;
  display: flex;
  align-items: center;
  z-index: 2;
  letter-spacing: 1px;
}
.ticker-wrapper {
  overflow: hidden;
  margin-left: 120px;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.9rem;
  font-weight: 600;
}
.ticker-content a {
  color: var(--green);
  text-decoration: underline;
}
@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #0a2e0d 0%, var(--green) 50%, #1a4a1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h1 span { color: var(--gold); }

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 80px 20px;
}
.section-alt { background: var(--bg-light); }
.section-dark {
  background: var(--green);
  color: var(--white);
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.75); }

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}
.card-body { padding: 24px; }
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}
.card-text { font-size: 0.92rem; color: var(--text-light); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   ACHIEVEMENT CARDS
   ============================================================ */
.achievement-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.achievement-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.18); }
.achievement-medal {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.achievement-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 6px;
}
.achievement-card .event { font-size: 0.92rem; color: var(--text-light); margin-bottom: 4px; }
.achievement-card .result {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.achievement-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 30px;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   VIDEO GRID
   ============================================================ */
.video-section {
  padding: 60px 20px;
  background: #0f2f12;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.video-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}
.video-card {
  background: #1a3d1e;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.2);
  transition: var(--transition);
}
.video-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.video-card .iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-card .iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card .video-info {
  padding: 14px 16px;
}
.video-card .video-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.video-card .video-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.video-note {
  text-align: center;
  margin-top: 30px;
  padding: 14px 20px;
  background: rgba(255,215,0,0.12);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.88rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   GALLERY
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 9px 22px;
  border-radius: 30px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-light);
  aspect-ratio: 4/3;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.gallery-placeholder svg { opacity: 0.5; margin-bottom: 10px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
  padding: 20px 14px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
}
.lightbox-caption {
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  font-size: 0.95rem;
}

/* ============================================================
   TIMELINE (About page)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--green));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 3px solid var(--green);
  border-radius: 50%;
}
.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 4px;
}
.timeline-text { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   SPONSORSHIP TABLE
   ============================================================ */
.sponsor-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sponsor-table th {
  background: var(--green);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  padding: 16px 20px;
  text-align: left;
}
.sponsor-table th:first-child { background: #0d3810; }
.sponsor-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.92rem;
}
.sponsor-table tr:nth-child(even) td { background: #f9fbe7; }
.sponsor-table tr:hover td { background: #e8f5e9; }
.check { color: #2E7D32; font-size: 1.1rem; }
.cross  { color: #c62828; font-size: 1.1rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid #ddd;
  border-radius: var(--radius);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ============================================================
   CTA STRIPS
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}
.cta-strip h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-strip p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   IMPACT STATS
   ============================================================ */
.stats-strip {
  background: var(--green);
  padding: 50px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-item .stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--green);
}
.map-wrapper iframe { display: block; }

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--gold);
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.contact-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0a2e0d 0%, var(--green) 100%);
  padding: 70px 20px 50px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a2e0d;
  color: rgba(255,255,255,0.8);
  padding: 50px 20px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand .tagline {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-style: italic;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.88rem;
}
.footer-contact-item .ic { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.social-icon:hover { background: var(--gold); color: var(--green); transform: translateY(-3px); }
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   OOTY / CAMP SPECIAL ELEMENTS
   ============================================================ */
.camp-highlight {
  background: linear-gradient(135deg, #1a3d1e 0%, #0a2e0d 100%);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
  border-left: 5px solid var(--gold);
}
.camp-highlight h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.camp-highlight p { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.8; }

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-text h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--green);
  margin-bottom: 4px;
}
.benefit-text p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   WHY CHOOSE US FEATURES
   ============================================================ */
.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--green);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-table { font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 20px;
    gap: 6px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { width: 100%; text-align: center; padding: 12px; font-size: 0.95rem; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .video-grid, .video-grid-2col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sponsor-table { display: block; overflow-x: auto; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .section { padding: 50px 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 26px; font-size: 0.9rem; }
  .hero h1 { font-size: 2rem; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.fw-bold { font-weight: 700; }
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 30px;
}

/* Fade-in animation on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
