/* ===================================================
   PADMPANI FOUNDATION — ADVANCED PREMIUM THEME
   =================================================== */

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

:root {
  --primary: #0a3d62;
  --primary-mid: #1565a8;
  --primary-light: #1e88e5;
  --accent: #00b894;
  --accent-warm: #f39c12;
  --accent-rose: #e84393;
  --bg: #f0f4f8;
  --bg-dark: #060d1a;
  --surface: #ffffff;
  --surface-2: #f7fafd;
  --text: #0d1b2a;
  --text-muted: #5a7184;
  --text-light: #98aab7;
  --border: #dce8f0;
  --border-glow: rgba(0,184,148,0.35);

  --grad-primary: linear-gradient(135deg, #0a3d62 0%, #1565a8 50%, #0a3d62 100%);
  --grad-accent: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
  --grad-warm: linear-gradient(135deg, #f39c12 0%, #e84393 100%);
  --grad-hero: linear-gradient(160deg, rgba(6,13,26,0.85) 0%, rgba(10,61,98,0.7) 60%, rgba(0,184,148,0.3) 100%);

  --shadow-sm: 0 2px 8px rgba(10,61,98,0.08);
  --shadow-md: 0 8px 24px rgba(10,61,98,0.12);
  --shadow-lg: 0 20px 60px rgba(10,61,98,0.18);
  --shadow-glow: 0 0 40px rgba(0,184,148,0.25);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ─── UTILITY ─── */
.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 52rem;
}

.section-header {
  text-align: center;
  margin: 0 auto 4rem;
}

.section-header .section-tag { justify-content: center; }
.section-header .section-desc { margin: 0 auto; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}

.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-rounded { border-radius: 9999px; }
.btn-full { width: 100%; justify-content: center; }

.btn-accent {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,184,148,0.4);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,184,148,0.5);
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10,61,98,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,61,98,0.45);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(10,61,98,0.08), 0 4px 24px rgba(10,61,98,0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: transform 0.3s;
}

.logo-link:hover .logo-img { transform: rotate(-5deg) scale(1.05); }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.03em;
  transition: color 0.3s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.navbar.scrolled .logo-text { color: var(--text); text-shadow: none; }

.text-accent { color: var(--accent); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { width: 60%; }

.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover { color: var(--accent); background: rgba(0,184,148,0.06); }

.btn-donate-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.mobile-menu-btn:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .mobile-menu-btn { background: var(--bg); border-color: var(--border); color: var(--text); }

.mobile-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem; right: 1rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.2s ease;
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-link:hover { background: rgba(0,184,148,0.06); color: var(--accent); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .mobile-menu-btn { display: none; }
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; z-index: 2; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 3;
}

.hero-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s ease;
  transform: scale(1.06);
}

.hero-slide.active .hero-slide-img { transform: scale(1); }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.hero-text {
  max-width: 52rem;
  animation: heroEntrance 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(0,184,148,0.15);
  color: #6efbe4;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(0,184,148,0.35);
  backdrop-filter: blur(8px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #6efbe4, #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 38rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero progress bar */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--grad-accent);
  z-index: 20;
  width: 0;
  transition: width 6s linear;
}

.hero-progress.animating { width: 100%; }

.hero-dots {
  position: absolute;
  bottom: 2.5rem; left: 0; right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}

.hero-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-dot:hover { background: rgba(255,255,255,0.7); }
.hero-dot.active { width: 2.25rem; background: var(--accent); box-shadow: 0 0 12px rgba(0,184,148,0.6); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.6;
}

.hero-scroll-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 15;
  line-height: 0;
}

.hero-wave svg { display: block; width: 100%; }


/* ══════════════════════════════════════════
   TRUST STRIP (below hero)
══════════════════════════════════════════ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  box-shadow: 0 4px 20px rgba(10,61,98,0.06);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item svg { color: var(--accent); }


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.section { padding: 6rem 0; }

.section-secondary {
  background: linear-gradient(160deg, #edf4fb 0%, #f4faf7 100%);
  position: relative;
  overflow: hidden;
}

.section-secondary::before {
  content: '';
  position: absolute;
  top: -10rem; right: -10rem;
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,148,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-wrapper {
  position: relative;
  padding: 1.5rem 1.5rem 3.5rem 0;
}

.about-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,184,148,0.15), rgba(10,61,98,0.1));
  border-radius: var(--radius-xl);
  transform: rotate(-3deg);
}

.about-image-frame {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 6px #fff, 0 0 0 7px var(--border);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-frame:hover .about-img { transform: scale(1.06); }

.about-badge {
  position: absolute;
  bottom: 0.5rem; right: -1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  min-width: 11rem;
}

.about-badge-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-badge-number {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
}

.section-header-left { margin-bottom: 2rem; }

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.about-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.about-card:hover::before { opacity: 1; }

.about-card-icon {
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-primary { background: rgba(10,61,98,0.08); color: var(--primary); }
.icon-accent { background: rgba(0,184,148,0.1); color: var(--accent); }

.about-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.about-card-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }


/* ══════════════════════════════════════════
   IMPACT CARDS
══════════════════════════════════════════ */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.bg-shape-1 {
  top: -15%; left: -8%;
  width: 45%; height: 45%;
  background: rgba(10,61,98,0.06);
}

.bg-shape-2 {
  bottom: -15%; right: -8%;
  width: 40%; height: 40%;
  background: rgba(0,184,148,0.06);
}

.impact-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 640px) { .impact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

.impact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.impact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-color, var(--grad-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.impact-card:hover { 
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.impact-card:hover::after { transform: scaleX(1); }

.impact-card[data-color="blue"] { --card-color: linear-gradient(90deg, #2563eb, #60a5fa); }
.impact-card[data-color="pink"] { --card-color: linear-gradient(90deg, #db2777, #f472b6); }
.impact-card[data-color="green"] { --card-color: var(--grad-accent); }
.impact-card[data-color="orange"] { --card-color: var(--grad-warm); }

.impact-card-icon {
  width: 3.75rem; height: 3.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.impact-card:hover .impact-card-icon { transform: scale(1.1) rotate(-5deg); }

.icon-blue { background: rgba(37,99,235,0.08); color: #2563eb; }
.icon-pink { background: rgba(219,39,119,0.08); color: #db2777; }
.icon-green { background: rgba(0,184,148,0.08); color: var(--accent); }
.icon-orange { background: rgba(243,156,18,0.08); color: var(--accent-warm); }

.impact-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.impact-card-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }


/* ── STATS BANNER ── */
.stats-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2f5e 40%, #0a4b7a 70%, #053a5f 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.stats-banner::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");
}

.stats-bg-glow {
  position: absolute;
  top: -4rem; right: -4rem;
  width: 20rem; height: 20rem;
  background: radial-gradient(circle, rgba(0,184,148,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-bg-glow-2 {
  position: absolute;
  bottom: -5rem; left: 10%;
  width: 16rem; height: 16rem;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) { 
  .stats-banner { padding: 4rem 3.5rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.stat-item { text-align: center; }

.stat-number {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-number .stat-suffix {
  color: var(--accent);
  font-size: 0.75em;
}

.stat-label {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.stat-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: var(--grad-accent);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s ease 0.5s;
}

.stats-banner.visible .stat-bar-fill { width: var(--fill-width, 75%); }


/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .gallery-item-large { grid-column: span 2; }
  .gallery-item-large .gallery-img { aspect-ratio: 16/9; }
}

@media (min-width: 1024px) {
  .gallery-grid { gap: 1.5rem; }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--text);
}

.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.8s ease, filter 0.4s;
  filter: brightness(0.92);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.09);
  filter: brightness(0.75);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,61,98,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

/* Gallery zoom icon */
.gallery-zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}


/* ══════════════════════════════════════════
   NEWS COVERAGE
══════════════════════════════════════════ */
.news-section { margin-top: 5rem; }

.news-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.news-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) scale(1.01);
}

.news-img { width: 100%; height: auto; display: block; }


/* ══════════════════════════════════════════
   DIRECTORS
══════════════════════════════════════════ */
.directors-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 68rem;
  margin: 0 auto;
}

@media (min-width: 768px) { .directors-grid { grid-template-columns: 1fr 1fr; } }

.director-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  group: true;
}

.director-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.director-image-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.director-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.9s ease;
}

.director-card:hover .director-img { transform: scale(1.07); }

.director-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,0.8) 0%, rgba(10,61,98,0.35) 45%, transparent 70%);
}

.director-social {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transform: translateX(3rem);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.director-card:hover .director-social {
  transform: translateX(0);
  opacity: 1;
}

.social-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.social-btn:hover { background: var(--accent); color: #fff; transform: scale(1.1); }

.director-info {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.director-info-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 3.5rem; height: 3px;
  background: var(--grad-accent);
  border-radius: 0 0 4px 4px;
}

.director-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.director-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.director-bio { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(160deg, #060d1a 0%, #0a3d62 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: #fff;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -10rem; right: -10rem;
  width: 40rem; height: 40rem;
  background: radial-gradient(circle, rgba(0,184,148,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.25fr; align-items: start; }
}

.contact-info-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-item-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(0,184,148,0.12);
  border: 1px solid rgba(0,184,148,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-item-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  font-size: 0.925rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item-value {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: rgba(0,184,148,0.06);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.15);
}

.form-textarea { min-height: 130px; resize: vertical; }

.form-status {
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.75rem;
}

.form-status.success { background: rgba(0,184,148,0.15); color: #6efbe4; border: 1px solid rgba(0,184,148,0.3); display: block; }
.form-status.error { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); display: block; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #040b16;
  color: #7a94a8;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-accent);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.025em;
}

.footer-desc {
  color: #5e7a8e;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #7a94a8;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading::before {
  content: '';
  width: 0.875rem; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: #5e7a8e;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}

.footer-links a:hover { color: #fff; padding-left: 0.25rem; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #5e7a8e;
  line-height: 1.6;
}

.footer-icon { color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }

/* Newsletter */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-input:focus {
  border-color: var(--accent);
  background: rgba(0,184,148,0.06);
  box-shadow: 0 0 0 3px rgba(0,184,148,0.12);
}

.newsletter-status {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.newsletter-status.success { background: rgba(0,184,148,0.1); color: var(--accent); }
.newsletter-status.error { background: rgba(239,68,68,0.1); color: #f87171; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: #3d5a6e;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a { color: #3d5a6e; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }


/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4,11,22,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 3rem; height: 3rem;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }


/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 3rem; height: 3rem;
  background: var(--grad-accent);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,184,148,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(1rem);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,184,148,0.5); }


/* ══════════════════════════════════════════
   LOADING SPLASH
══════════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #060d1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s, visibility 0.5s;
}

#page-loader.hide { opacity: 0; visibility: hidden; }

.loader-logo {
  width: 5rem; height: 5rem;
  object-fit: contain;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.loader-bar {
  width: 14rem; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--grad-accent);
  border-radius: 2px;
  animation: loaderFill 1.2s ease-out forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to { width: 100%; }
}


