/* ===== CSS RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2548;
  --accent: #e63946;
  --accent-hover: #c52d39;
  --gold: #f0a500;
  --bg-light: #f7f8fc;
  --bg-dark: #0b1120;
  --text-dark: #1a1a2e;
  --text-muted: #5a6278;
  --text-light: #ffffff;
  --card-bg: #ffffff;
  --border: #e2e6ef;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s ease;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 37, 72, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.header.scrolled { background: rgba(11, 17, 32, .99); box-shadow: var(--shadow-md); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 13px; color: #fff;
  letter-spacing: -.5px;
  box-shadow: 0 0 20px rgba(230, 57, 70, .35);
}
.logo-text { color: #fff; }
.logo-text h1 { font-size: 20px; font-weight: 800; line-height: 1.1; }
.logo-text span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }

.nav-live-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff !important;
  padding: 10px 20px !important; border-radius: 50px !important;
  font-weight: 600 !important; font-size: 13px !important;
  box-shadow: 0 0 20px rgba(230,57,70,.3);
  animation: pulse-btn 2s infinite;
}
.nav-live-btn:hover { background: var(--accent-hover) !important; }
.live-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: blink 1s infinite; }

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes pulse-btn { 0%,100% { box-shadow: 0 0 20px rgba(230,57,70,.3); } 50% { box-shadow: 0 0 30px rgba(230,57,70,.55); } }

.mobile-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 24px; cursor: pointer; padding: 8px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0b1a3a 40%, #12254f 100%);
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230,57,70,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240,165,0,.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,.15); border: 1px solid rgba(230,57,70,.3);
  color: #ff6b7a; font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-badge i { animation: blink 1s infinite; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px; color: rgba(255,255,255,.65);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff4757);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,57,70,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(230,57,70,.5); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.05); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
}
.stat { text-align: left; }
.stat-num { font-size: 32px; font-weight: 800; color: #fff; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

.hero-right {
  position: relative;
}
.hero-visual {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
}
.freq-display {
  text-align: center; padding: 40px 20px;
}
.freq-number {
  font-family: 'Playfair Display', serif;
  font-size: 96px; font-weight: 900;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.freq-label { font-size: 28px; font-weight: 700; color: var(--gold); margin-top: 4px; }
.freq-sub { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 12px; letter-spacing: 3px; text-transform: uppercase; }

.sound-wave {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 30px 0 10px;
}
.wave-bar {
  width: 4px; border-radius: 4px;
  background: linear-gradient(to top, var(--accent), var(--gold));
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: .1s; }
.wave-bar:nth-child(3) { height: 25px; animation-delay: .2s; }
.wave-bar:nth-child(4) { height: 45px; animation-delay: .3s; }
.wave-bar:nth-child(5) { height: 30px; animation-delay: .4s; }
.wave-bar:nth-child(6) { height: 50px; animation-delay: .15s; }
.wave-bar:nth-child(7) { height: 35px; animation-delay: .25s; }
.wave-bar:nth-child(8) { height: 20px; animation-delay: .35s; }
.wave-bar:nth-child(9) { height: 40px; animation-delay: .05s; }
.wave-bar:nth-child(10) { height: 28px; animation-delay: .45s; }
.wave-bar:nth-child(11) { height: 50px; animation-delay: .2s; }
.wave-bar:nth-child(12) { height: 22px; animation-delay: .3s; }

@keyframes wave {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(.4); }
}

/* ===== SECTION COMMONS ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== LIVE STREAM SECTION ===== */
.live-section { background: var(--bg-dark); }
.live-section .section-title { color: #fff; }
.live-section .section-desc { color: rgba(255,255,255,.5); }

.stream-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

.stream-player {
  background: #000; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.stream-player iframe {
  width: 100%; aspect-ratio: 16/9;
  display: block; border: none;
}
.stream-info {
  padding: 20px; display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.03);
}
.stream-info-left { display: flex; align-items: center; gap: 12px; }
.live-indicator {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.live-indicator span { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: blink 1s infinite; }
.stream-title-text { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; }

.stream-share { display: flex; gap: 8px; }
.share-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: none;
  color: rgba(255,255,255,.6); font-size: 14px;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.share-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

.stream-chat {
  background: #18181b; border-radius: var(--radius);
  overflow: hidden; height: 100%;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
}
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 10px;
}
.chat-header i { color: var(--accent); }
.chat-header span { color: #fff; font-weight: 600; font-size: 14px; }
.stream-chat iframe {
  width: 100%; flex: 1; border: none; min-height: 480px;
}

/* ===== NEWS SECTION ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.news-img {
  position: relative; overflow: hidden;
  height: 220px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.news-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 48px;
}
.news-category {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: #fff;
  padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}
.news-category.local { background: #2ecc71; }
.news-category.entertainment { background: var(--gold); color: var(--text-dark); }
.news-category.sports { background: #3498db; }

.news-body { padding: 24px; }
.news-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 12px;
}
.news-meta i { margin-right: 4px; color: var(--accent); }
.news-card h3 {
  font-size: 18px; font-weight: 700; line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 16px;
}
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  transition: var(--transition);
}
.read-more:hover { gap: 10px; }

/* ===== FEATURES / PROGRAMS ===== */
.programs-section { background: #fff; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.program-card {
  padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.program-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.program-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(230,57,70,.1), rgba(240,165,0,.1));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--accent);
  margin: 0 auto 20px;
}
.program-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.program-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.program-time {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  background: rgba(230,57,70,.08);
  padding: 4px 12px; border-radius: 4px;
}

/* ===== SCHEDULE ===== */
.schedule-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.schedule-table thead { background: var(--primary); color: #fff; }
.schedule-table th {
  padding: 16px 24px; text-align: left;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.schedule-table td {
  padding: 16px 24px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.schedule-table tbody tr:hover { background: rgba(230,57,70,.03); }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.sched-time { font-weight: 600; color: var(--primary); white-space: nowrap; }
.sched-host { color: var(--text-muted); font-size: 13px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 20px; padding: 60px 40px;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(230,57,70,.2), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(240,165,0,.15), transparent 50%);
}
.about-visual-content { position: relative; z-index: 2; }
.about-freq {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 900; line-height: 1;
  margin-bottom: 8px;
}
.about-station { font-size: 24px; font-weight: 700; color: var(--gold); }
.about-tagline { margin-top: 12px; color: rgba(255,255,255,.6); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }

.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 800;
  margin-bottom: 20px;
}
.about-content p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 24px;
}
.highlight-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
}
.highlight-item i { color: var(--accent); font-size: 16px; }

/* ===== CONTACT / CONNECT ===== */
.connect-section { background: linear-gradient(135deg, var(--primary-dark), #0b1a3a); color: #fff; }
.connect-section .section-title { color: #fff; }
.connect-section .section-desc { color: rgba(255,255,255,.5); }

.connect-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.connect-info { display: flex; flex-direction: column; gap: 24px; }
.connect-item {
  display: flex; gap: 16px; align-items: start;
}
.connect-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold);
}
.connect-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.connect-item p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.5; }

.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.connect-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.7); }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px; color: #fff;
  font-family: inherit; font-size: 14px;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: rgba(255,255,255,.08); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff;
  border: none; padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-submit:hover { background: var(--accent-hover); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.45);
  font-size: 14px; padding: 6px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: #fff; padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: 13px; transition: var(--transition); }
.footer-bottom-links a:hover { color: #fff; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: var(--accent); color: #fff;
  border-radius: 50%; border: none;
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; visibility: hidden;
  z-index: 999;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); background: var(--accent-hover); }

/* ===== NOW PLAYING BAR ===== */
.now-playing {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(11,17,32,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 0; z-index: 999;
  transform: translateY(100%);
  transition: var(--transition);
}
.now-playing.show { transform: translateY(0); }
.now-playing-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.np-left { display: flex; align-items: center; gap: 16px; }
.np-wave {
  display: flex; align-items: center; gap: 2px;
}
.np-wave span {
  width: 3px; height: 14px; background: var(--accent); border-radius: 2px;
  animation: wave .8s ease-in-out infinite;
}
.np-wave span:nth-child(2) { animation-delay: .1s; height: 20px; }
.np-wave span:nth-child(3) { animation-delay: .2s; height: 10px; }
.np-wave span:nth-child(4) { animation-delay: .15s; height: 18px; }
.np-info h4 { color: #fff; font-size: 14px; font-weight: 600; }
.np-info p { color: rgba(255,255,255,.5); font-size: 12px; }
.np-close {
  background: none; border: none; color: rgba(255,255,255,.4);
  font-size: 18px; cursor: pointer; padding: 8px;
  transition: var(--transition);
}
.np-close:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { max-width: 400px; margin: 0 auto; }
  .stream-layout { grid-template-columns: 1fr; }
  .stream-chat iframe { min-height: 380px; }
  .about-grid { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(11,17,32,.98);
    padding: 24px; gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .mobile-toggle { display: block; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 24px; }

  .section { padding: 60px 0; }
  .news-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .schedule-table { font-size: 13px; }
  .schedule-table th, .schedule-table td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .freq-number { font-size: 64px; }
  .btn { padding: 12px 24px; font-size: 14px; }
}
