/* ============================================
   THE BRIGHT SIDE CHANNEL - Main Stylesheet
   ============================================ */

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

:root {
  --bs-gold: #F59E0B;
  --bs-gold-dark: #D97706;
  --bs-gold-light: #FBBF24;
  --bs-blue: #0EA5E9;
  --bs-green: #10B981;
  --bs-dark: #0F172A;
  --bs-dark-surface: #1E293B;
  --bs-dark-card: #1a2332;
  --bs-light: #F8FAFC;
  --bs-white: #FFFFFF;
  --bs-muted: #94A3B8;
  --bs-warm: #FFFBEB;
  --bs-radius: 16px;
  --bs-radius-sm: 8px;
  --bs-radius-lg: 24px;
  --bs-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --bs-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --bs-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --bs-shadow-glow: 0 0 40px rgba(245, 158, 11, 0.15);
  --bs-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bs-font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--bs-font-body);
  line-height: 1.7;
  color: var(--bs-dark);
  background: var(--bs-white);
  overflow-x: hidden;
}

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

a {
  color: var(--bs-gold);
  text-decoration: none;
  transition: var(--bs-transition);
}

a:hover {
  color: var(--bs-gold-dark);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.section--warm {
  background: var(--bs-warm);
}

.section--light {
  background: var(--bs-light);
}

.text-center { text-align: center; }
.text-gold { color: var(--bs-gold); }
.text-muted { color: var(--bs-muted); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--bs-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--bs-font-heading);
}

.section--dark .badge {
  background: rgba(245, 158, 11, 0.15);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--bs-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bs-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--bs-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--bs-muted);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.8;
}

.section--dark .section-subtitle {
  color: #CBD5E1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--bs-gold), var(--bs-gold-light), var(--bs-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--bs-font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--bs-transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--bs-gold);
  color: var(--bs-dark);
}

.btn--primary:hover {
  background: var(--bs-gold-dark);
  color: var(--bs-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--bs-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bs-gold);
  color: var(--bs-gold);
}

.btn--dark {
  background: var(--bs-dark);
  color: var(--bs-white);
}

.btn--dark:hover {
  background: var(--bs-dark-surface);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ---------- Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--bs-transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.site-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--bs-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--bs-transition);
}

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

.site-logo .logo-text {
  font-family: var(--bs-font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bs-white);
  line-height: 1.2;
}

.site-logo .logo-text span {
  color: var(--bs-gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--bs-font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--bs-transition);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--bs-white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bs-white);
  border-radius: 2px;
  transition: var(--bs-transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0F172A 0%, #1a2744 40%, #0F172A 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-badge {
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--bs-white);
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.hero-description {
  font-size: 1.2rem;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
  font-family: var(--bs-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bs-gold);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--bs-muted);
  margin-top: 4px;
}

/* Hero visual / mockup side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screen {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--bs-dark-surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(245, 158, 11, 0.1);
}

.hero-screen-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
}

.hero-screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EF4444;
}

.hero-screen-dot:nth-child(2) { background: #F59E0B; }
.hero-screen-dot:nth-child(3) { background: #10B981; }

.hero-screen-content {
  padding: 28px;
}

.hero-news-card {
  background: var(--bs-dark-card);
  border-radius: var(--bs-radius);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--bs-transition);
}

.hero-news-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(4px);
}

.news-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.news-card-category--green { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.news-card-category--blue { background: rgba(14, 165, 233, 0.15); color: #38BDF8; }
.news-card-category--gold { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }

.news-card-title {
  font-family: var(--bs-font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bs-white);
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card-meta {
  font-size: 0.75rem;
  color: var(--bs-muted);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #EF4444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---------- Features / Pillars Section ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pillar-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bs-dark-surface);
  border-radius: var(--bs-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--bs-transition);
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bs-gold), var(--bs-gold-light));
  opacity: 0;
  transition: var(--bs-transition);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.15);
  box-shadow: var(--bs-shadow-glow);
}

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

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--bs-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.pillar-icon--gold { background: rgba(245, 158, 11, 0.15); }
.pillar-icon--blue { background: rgba(14, 165, 233, 0.15); }
.pillar-icon--green { background: rgba(16, 185, 129, 0.15); }

.pillar-card h3 {
  margin-bottom: 12px;
}

.pillar-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- About / Mission Section ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h2 {
  margin-bottom: 20px;
}

.mission-text .section-subtitle {
  margin: 0 0 24px;
  text-align: left;
  max-width: none;
}

.mission-text p {
  color: #64748B;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.mission-stat {
  padding: 24px;
  background: var(--bs-light);
  border-radius: var(--bs-radius);
  text-align: center;
  transition: var(--bs-transition);
}

.mission-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--bs-shadow);
}

.mission-stat-number {
  font-family: var(--bs-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bs-gold);
}

.mission-stat-label {
  font-size: 0.85rem;
  color: var(--bs-muted);
  margin-top: 4px;
}

.mission-visual {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  border-radius: var(--bs-radius-lg);
  overflow: hidden;
  box-shadow: var(--bs-shadow-lg);
}

.mission-image-wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mission-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bs-gold), var(--bs-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--bs-radius-lg);
}

.mission-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bs-white);
  padding: 20px 28px;
  border-radius: var(--bs-radius);
  box-shadow: var(--bs-shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-float-card .float-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.float-text strong {
  display: block;
  font-family: var(--bs-font-heading);
  font-size: 1.1rem;
}

.float-text span {
  font-size: 0.8rem;
  color: var(--bs-muted);
}

/* ---------- Schedule Section ---------- */
.schedule-wrapper {
  max-width: 800px;
  margin: 60px auto 0;
}

.schedule-day {
  margin-bottom: 8px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bs-dark-surface);
  border-radius: var(--bs-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--bs-transition);
}

.schedule-item:hover {
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(4px);
}

.schedule-time {
  font-family: var(--bs-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bs-gold);
  min-width: 100px;
}

.schedule-show {
  flex: 1;
}

.schedule-show-name {
  font-family: var(--bs-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bs-white);
}

.schedule-show-desc {
  font-size: 0.85rem;
  color: var(--bs-muted);
  margin-top: 2px;
}

.schedule-live-badge {
  padding: 4px 12px;
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Ticker / News Marquee ---------- */
.news-ticker {
  background: var(--bs-gold);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--bs-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bs-dark);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--bs-dark);
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bs-dark) 0%, #1a2744 100%);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--bs-white);
  margin-bottom: 16px;
}

.cta-content p {
  color: #CBD5E1;
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bs-dark);
  color: var(--bs-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding: 80px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-text {
  font-family: var(--bs-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bs-white);
  margin-bottom: 16px;
}

.footer-brand .logo-text span {
  color: var(--bs-gold);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-dark-surface);
  border-radius: 50%;
  color: var(--bs-muted);
  font-size: 1rem;
  transition: var(--bs-transition);
}

.footer-social a:hover {
  background: var(--bs-gold);
  color: var(--bs-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--bs-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--bs-white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--bs-muted);
  font-size: 0.9rem;
  transition: var(--bs-transition);
}

.footer-col ul a:hover {
  color: var(--bs-gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--bs-muted);
}

.footer-bottom-links a:hover {
  color: var(--bs-gold);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--bs-dark) 0%, #1a2744 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header h1 {
  color: var(--bs-white);
  position: relative;
}

.page-header .breadcrumb {
  color: var(--bs-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  position: relative;
}

.page-header .breadcrumb a {
  color: var(--bs-gold);
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bs-light);
  border-radius: var(--bs-radius);
  margin-bottom: 16px;
  transition: var(--bs-transition);
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--bs-shadow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-card p {
  color: var(--bs-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bs-white);
  padding: 40px;
  border-radius: var(--bs-radius-lg);
  box-shadow: var(--bs-shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--bs-font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--bs-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: var(--bs-radius-sm);
  font-family: var(--bs-font-body);
  font-size: 0.95rem;
  color: var(--bs-dark);
  transition: var(--bs-transition);
  background: var(--bs-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--bs-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------- Scroll animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
  }

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

  .main-nav a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mission-float-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
