/* =============================================
   PlanetRead Homepage - Premium Light Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #0070f3;
  --primary-dark: #0052b3;
  --primary-light: #60a5ff;
  --primary-ultra-light: #e5f1ff;
  --accent: #111827;
  --accent-light: #e5f1ff;
  --accent-dark: #020617;

  --bg-white: #ffffff;
  --bg-light: #f5f7fb;
  --bg-lighter: #e5edf7;
  --bg-section-alt: #f3f6fb;
  --bg-card: #ffffff;
  --bg-card-hover: #f3f7ff;
  --bg-hero: linear-gradient(135deg, #f5f9ff 0%, #ffffff 55%, #f5f9ff 100%);
  --bg-glass: rgba(255, 255, 255, 0.7);

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-heading: #020617;

  --border-light: #e2e8f0;
  --border-subtle: rgba(15, 23, 42, 0.06);

  --gradient-hero: linear-gradient(135deg, #f5f9ff 0%, #ffffff 55%, #f5f9ff 100%);
  --gradient-accent: linear-gradient(135deg, #0070f3, #0f172a);
  --gradient-warm: linear-gradient(135deg, #0070f3, #00b4ff);
  --gradient-blue-subtle: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(26, 115, 232, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.06);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 90px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.section-divider {
  width: 50px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 4px;
  margin: 14px auto 20px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--text-heading);
  padding: 6px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.top-bar-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: var(--transition);
}

.top-bar-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.top-bar-links a.text-link {
  width: auto;
  border-radius: 18px;
  padding: 0 14px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-links a.text-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.top-bar-links a.donate-link {
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 0 18px;
  width: auto;
  border-radius: 18px;
}

.top-bar-links a.donate-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 111, 60, 0.4);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-nav);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
  max-width: 160px;
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  display: block;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.1px;
}

.nav-menu>li>a:hover,
.nav-menu>li.active>a {
  color: var(--primary);
  background: var(--primary-ultra-light);
}

.nav-menu>li>a.nav-cta {
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  margin-left: 8px;
  box-shadow: 0 4px 14px rgba(0, 112, 243, 0.35);
}

.nav-menu>li>a.nav-cta:hover,
.nav-menu>li.active>a.nav-cta {
  background: var(--primary-dark);
  color: #ffffff;
}

/* Dropdown */
.nav-menu li .dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: -8px;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 100;
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown li a:hover {
  background: var(--primary-ultra-light);
  color: var(--primary);
  padding-left: 18px;
}

.bird-logo-nav {
  margin-left: 10px;
}

.bird-logo-nav img {
  height: 34px;
  opacity: 0.85;
  transition: var(--transition);
}

.bird-logo-nav img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* =============================================
   HERO / VIDEO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-intro {
  padding-top: 40px;
  padding-bottom: 10px;
}

.hero-intro-text {
  max-width: 640px;
}

.hero-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-intro h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 82, 179, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-heading);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.hero-slider::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-slider::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.slide {
  display: none;
  animation: fadeSlide 0.6s ease forwards;
}

.slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 60px 0;
  min-height: 420px;
}

.slide-video {
  flex: 1.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-light);
}

.slide-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.slide-info {
  flex: 1;
}

.slide-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text-heading);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.slide-info h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gradient-warm);
  border-radius: 4px;
  margin-top: 14px;
}

.slide-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Triple video slide */
.slide-triple {
  display: none;
  padding: 50px 0;
}

.slide-triple.active {
  display: block;
  animation: fadeSlide 0.6s ease forwards;
}

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.triple-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.triple-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.triple-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.triple-card p {
  padding: 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 20px 0 46px;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--text-secondary);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(26, 115, 232, 0.35);
}

/* =============================================
   NEWS TICKER / MESSAGE BOARD
   ============================================= */
.message-board {
  background: var(--text-heading);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  animation: ticker 45s linear infinite;
  padding: 14px 0;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 380px;
  padding: 6px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1.1);
}

.ticker-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

.ticker-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.ticker-item a:hover span {
  color: #fff;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--bg-white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.about-content {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.about-video {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-light);
}

.about-video::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.about-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.about-text {
  flex: 1.2;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

.about-text p b {
  color: var(--primary);
  font-weight: 600;
}

/* =============================================
   VIDEOS SECTION
   ============================================= */
.videos-section {
  background: var(--bg-section-alt);
  position: relative;
}

.videos-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.video-card .thumb {
  position: relative;
  overflow: hidden;
}

.video-card .thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .thumb img {
  transform: scale(1.06);
}

.video-card .thumb .play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 115, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.video-card:hover .thumb .play-overlay {
  opacity: 1;
}

.play-overlay svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.25));
  background: var(--primary);
  border-radius: 50%;
  padding: 12px;
}

.video-card .card-body {
  padding: 16px 18px;
}

.video-card .card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}

.see-all {
  display: flex;
  justify-content: flex-end;
  margin-top: 36px;
}

.see-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  padding: 10px 28px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.see-all a:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.25);
  transform: translateY(-2px);
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.partners-section {
  background: var(--bg-white);
  position: relative;
}

.partners-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  box-shadow: var(--shadow-sm);
}

.partner-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card-hover);
}

.partner-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: grayscale(40%) opacity(0.85);
  transition: var(--transition);
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.partner-card .partner-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* =============================================
   STATS BANNER (new enhancement)
   ============================================= */
.stats-banner {
  background: var(--gradient-accent);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.stats-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-heading);
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.84rem;
}

.footer-apps {
  display: flex;
  gap: 12px;
}

.footer-apps a {
  padding: 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-apps a:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(26, 115, 232, 0.1);
}

/* =============================================
   VIDEO MODAL
   ============================================= */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-modal iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(26, 115, 232, 0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26, 115, 232, 0.45);
  background: var(--primary-dark);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger animation for grid children */
.videos-grid .video-card:nth-child(2) {
  transition-delay: 0.08s;
}

.videos-grid .video-card:nth-child(3) {
  transition-delay: 0.16s;
}

.videos-grid .video-card:nth-child(4) {
  transition-delay: 0.24s;
}

.videos-grid .video-card:nth-child(5) {
  transition-delay: 0.32s;
}

.videos-grid .video-card:nth-child(6) {
  transition-delay: 0.40s;
}

.videos-grid .video-card:nth-child(7) {
  transition-delay: 0.48s;
}

.videos-grid .video-card:nth-child(8) {
  transition-delay: 0.56s;
}

.partners-grid .partner-card:nth-child(2) {
  transition-delay: 0.04s;
}

.partners-grid .partner-card:nth-child(3) {
  transition-delay: 0.08s;
}

.partners-grid .partner-card:nth-child(4) {
  transition-delay: 0.12s;
}

.partners-grid .partner-card:nth-child(5) {
  transition-delay: 0.16s;
}

.partners-grid .partner-card:nth-child(6) {
  transition-delay: 0.20s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 16px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-menu li.dropdown-open .dropdown {
    display: block;
  }

  .bird-logo-nav {
    display: none;
  }

  .slide-content {
    flex-direction: column;
    padding: 30px 0;
    min-height: auto;
  }

  .slide-info h2 {
    font-size: 1.7rem;
  }

  .triple-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .top-bar {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }
}

/* =============================================
   DONATE PAGE — HERO
   ============================================= */
.donate-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.donate-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 115, 232, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(108, 92, 231, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(255, 111, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.donate-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.donate-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 22px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donate-hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 36px;
}

.donate-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 42px;
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255, 111, 60, 0.3);
}

.donate-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255, 111, 60, 0.4);
  color: #fff;
}

/* =============================================
   DONATE PAGE — IMPACT ROW
   ============================================= */
.donate-impact {
  background: var(--bg-white);
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}

.donate-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.donate-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.donate-impact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.donate-impact-icon i {
  font-size: 22px;
  color: var(--primary);
}

.donate-impact-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-heading);
}

.donate-impact-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* =============================================
   DONATE PAGE — TIER CARDS
   ============================================= */
.donation-tiers {
  background: var(--bg-section-alt);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.tier-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.tier-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.12);
}

.tier-card.featured:hover {
  box-shadow: 0 14px 48px rgba(26, 115, 232, 0.18);
}

.tier-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 22px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.tier-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.1;
}

.tier-usd {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 4px;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.tier-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li i {
  color: var(--primary);
  font-size: 13px;
  margin-top: 4px;
  flex-shrink: 0;
}

.tier-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
}

.tier-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
  transform: translateY(-2px);
}

.tier-card.featured .tier-btn {
  background: var(--gradient-warm);
}

.tier-card.featured .tier-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 111, 60, 0.35);
}

.custom-amount-note {
  text-align: center;
  margin-top: 36px;
  padding: 18px 28px;
  background: var(--primary-ultra-light);
  border: 1px solid rgba(26, 115, 232, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.custom-amount-note i {
  color: var(--primary);
  margin-right: 6px;
}

.custom-amount-note a {
  font-weight: 600;
}

/* =============================================
   DONATE PAGE — WHY DONATE
   ============================================= */
.why-donate {
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-icon i {
  font-size: 26px;
  color: #fff;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* =============================================
   DONATE PAGE — METHODS
   ============================================= */
.donate-methods {
  background: var(--bg-section-alt);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.method-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.method-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.method-icon i {
  font-size: 24px;
  color: var(--primary);
}

.method-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.method-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bank-details {
  width: 100%;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 20px;
  text-align: left;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-row strong {
  color: var(--text-heading);
  font-weight: 600;
}

.method-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  margin-top: auto;
}

.method-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
  transform: translateY(-2px);
}

.method-btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.method-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* =============================================
   DONATE PAGE — TAX INFO
   ============================================= */
.tax-info {
  background: var(--bg-white);
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
}

.tax-info-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 36px;
  background: var(--primary-ultra-light);
  border: 1px solid rgba(26, 115, 232, 0.12);
  border-radius: var(--radius-lg);
}

.tax-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tax-icon i {
  font-size: 22px;
  color: #fff;
}

.tax-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.tax-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.tax-content a {
  font-weight: 600;
}

/* =============================================
   DONATE PAGE — PAYPAL FORM
   ============================================= */
.paypal-donate-section {
  background: var(--bg-white);
}

.paypal-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
}

.form-step {
  margin-bottom: 28px;
}

.form-step-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paypal-form-card select,
.paypal-form-card input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-heading);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.paypal-form-card select:focus,
.paypal-form-card input[type="text"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.paypal-form-card select {
  cursor: pointer;
  appearance: auto;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.amount-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  transition: var(--transition);
  min-width: 70px;
  text-align: center;
}

.amount-btn:hover {
  border-color: var(--primary-light);
  background: var(--primary-ultra-light);
  color: var(--primary);
}

.amount-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}

.or-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 12px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.paypal-submit-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.paypal-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--gradient-warm);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255, 111, 60, 0.3);
}

.paypal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 111, 60, 0.4);
}

.paypal-secure-note {
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.paypal-secure-note i {
  color: #43a047;
  margin-right: 4px;
}

/* =============================================
   DONATE PAGE — RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donate-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .donate-hero-content h1 {
    font-size: 2.4rem;
  }

  .tiers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .methods-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .tax-info-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .donate-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .paypal-form-card {
    padding: 28px 22px;
  }

  .paypal-submit-area {
    flex-direction: column;
    text-align: center;
  }

  .amount-buttons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .donate-hero {
    padding: 70px 0 50px;
  }

  .donate-hero-content h1 {
    font-size: 2rem;
  }

  .donate-impact-item h3 {
    font-size: 1.7rem;
  }
}

/* =============================================
   TEAM PAGE STYLES
   ============================================= */
.team-section {
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  gap: 32px;
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary-light);
}

.team-img {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  flex: 1;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-heading);
}

.team-info h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  margin-top: 6px;
}

.team-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: justify;
}

.team-info p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }

  .team-img {
    width: 180px;
    height: 180px;
    margin-bottom: 16px;
  }

  .team-info p {
    text-align: center;
  }

  .team-info h3::after {
    margin: 6px auto 0;
  }
}