/* ================================================================
   New Frontiers TV — Main Stylesheet
   Design: Clean White / Light, matches the official mockup
   ================================================================ */

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

:root {
  --primary:      #1a56db;
  --primary-dark: #1344b0;
  --secondary:    #0b1120;
  --accent-red:   #ef4444;
  --bg:           #ffffff;
  --bg-alt:       #f0f4ff;
  --bg-card:      #ffffff;
  --text:         #111827;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   .25s ease;
  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
       border-radius: var(--radius-sm); font-size: .95rem; font-weight: 600;
       transition: var(--transition); white-space: nowrap; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,.35); }

.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-red { background: var(--accent-red); color: #fff; }
.btn-red:hover { background: #dc2626; }

.btn-sm { padding: 7px 14px; font-size: .82rem; }

/* ── Site Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; gap: 24px;
  height: 70px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 44px; width: auto; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 6px 14px; border-radius: 6px; font-size: .9rem; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--bg-alt); }
.nav-link.active { font-weight: 700; }

.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.social-icons { display: flex; align-items: center; gap: 10px; }
.social-icons a { display: flex; color: var(--text-muted); transition: var(--transition); }
.social-icons a:hover { color: var(--primary); }
.social-icons svg { width: 18px; height: 18px; }

.btn-download {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: #fff; padding: 9px 18px;
  border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600;
  transition: var(--transition);
}
.btn-download svg { width: 16px; height: 16px; }
.btn-download:hover { background: var(--primary-dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 6px; transition: var(--transition); padding: 6px;
}
.hamburger:hover { background: var(--bg-alt); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 999; opacity: 0; transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; }

/* ── Hero Section ─────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edfb 60%, #dde5fb 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; min-height: 500px; padding: 64px 20px;
  max-width: 1200px; margin: 0 auto;
}
.hero-text .pre-tag {
  display: inline-block; background: rgba(26,86,219,.12); color: var(--primary);
  padding: 4px 12px; border-radius: 20px; font-size: .8rem; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15;
  color: var(--secondary); margin-bottom: 8px;
}
.hero-text h1 span { color: var(--primary); }
.hero-text p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 32px; max-width: 420px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-features { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
}
.hero-feat svg { width: 18px; height: 18px; color: var(--primary); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  position: relative; width: 100%; max-width: 580px;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.hero-live-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent-red); color: #fff;
  padding: 4px 10px; border-radius: 4px; font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; gap: 4px; animation: blink-red 1.5s ease-in-out infinite;
}
.hero-live-badge::before { content: ''; display: block; width: 7px; height: 7px; background: #fff; border-radius: 50%; }
@keyframes blink-red { 0%,100%{opacity:1} 50%{opacity:.6} }

/* Carousel dots */
.carousel-dots { display: flex; justify-content: center; gap: 8px; padding: 20px 0 0; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary); transform: scale(1.2); }

/* ── On Air / Now Playing ─────────────────────────────────────── */
.on-air-section { background: #fff; }
.on-air-grid { display: grid; grid-template-columns: 1fr 340px 1fr; gap: 24px; align-items: start; }

.on-air-label {
  display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.1rem;
  margin-bottom: 20px; color: var(--text);
}
.on-air-label svg { width: 20px; height: 20px; color: var(--primary); }

.program-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.program-thumb {
  position: relative; width: 100%; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, var(--secondary), #1a2d5a);
}
.program-thumb img { width: 100%; height: 100%; object-fit: cover; }
.program-thumb .no-thumb {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; font-size: 3rem; font-weight: 900; color: rgba(255,255,255,.15);
}
.program-thumb .live-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent-red); color: #fff;
  padding: 3px 10px; border-radius: 4px; font-size: .72rem; font-weight: 700;
  animation: blink-red 1.5s ease-in-out infinite;
}
.program-thumb .time-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,.6); color: #fff;
  padding: 3px 10px; border-radius: 4px; font-size: .72rem;
}
.program-body { padding: 16px; }
.program-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.program-desc  { font-size: .85rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.program-meta  { font-size: .78rem; color: var(--text-muted); }

.progress-bar-wrap { margin: 12px 0 8px; }
.progress-bar { height: 4px; background: var(--border); border-radius: 99px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--primary); border-radius: 99px; transition: width .5s ease; }
.time-left { font-size: .75rem; color: var(--primary); font-weight: 600; }

/* Up Next column */
.up-next-label { font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; color: var(--text); }
.up-next-list { display: flex; flex-direction: column; gap: 12px; }
.up-next-card {
  display: flex; gap: 12px; align-items: center;
  background: var(--bg-alt); border-radius: var(--radius-sm); padding: 10px;
  transition: var(--transition);
}
.up-next-card:hover { box-shadow: var(--shadow); }
.up-next-thumb {
  width: 80px; height: 60px; border-radius: 8px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, #1a2d5a, #2563eb);
  display: flex; align-items: center; justify-content: center;
}
.up-next-thumb img { width: 100%; height: 100%; object-fit: cover; }
.up-next-info { flex: 1; min-width: 0; }
.up-next-time { font-size: .72rem; color: var(--text-muted); margin-bottom: 2px; }
.up-next-title { font-size: .88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.up-next-cat { font-size: .72rem; color: var(--text-muted); }

/* Advertise callout */
.ad-callout {
  background: linear-gradient(135deg, #f0f4ff, #e0e8ff);
  border: 1px solid #c7d7fa; border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.ad-callout .callout-icon { font-size: 2rem; margin-bottom: 8px; }
.ad-callout h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.ad-callout p  { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.ad-callout-visual { position: relative; margin-top: 16px; border-radius: 8px; overflow: hidden; }
.ad-callout-visual img { width: 100%; border-radius: 8px; }
.ad-brand-placeholder {
  width: 100%; height: 90px; background: #dde5fb;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: var(--primary); font-weight: 700; font-size: .9rem;
  border: 2px dashed #9eb5f5;
}

/* ── Stats Bar ─────────────────────────────────────────────────── */
.stats-bar { background: #fff; border-top: 1px solid var(--border); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex; align-items: center; gap: 16px; padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 48px; height: 48px; background: var(--bg-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; color: var(--primary); }
.stat-num { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }
.stat-sub { font-size: .72rem; color: var(--text-muted); }

/* ── Watch-Live Page ─────────────────────────────────────────── */
.watch-hero {
  background: linear-gradient(135deg, #0b1120 0%, #1a2d5a 100%);
  min-height: 420px; display: flex; align-items: center;
  text-align: center; color: #fff;
}
.watch-hero .container { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.live-pulse {
  width: 80px; height: 80px; background: var(--accent-red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative; animation: pulse-ring 2s ease infinite;
}
.live-pulse svg { width: 36px; height: 36px; color: #fff; }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  70%  { box-shadow: 0 0 0 24px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.watch-hero h1 { font-size: 2.2rem; font-weight: 800; }
.watch-hero p  { color: rgba(255,255,255,.7); max-width: 480px; }
.app-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px; padding: 10px 20px; color: #fff; font-size: .9rem;
  transition: var(--transition);
}
.app-badge:hover { background: rgba(255,255,255,.2); }
.app-badge svg { width: 28px; height: 28px; }

.now-playing-bar {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 20px 28px; width: 100%; max-width: 560px;
  display: flex; align-items: center; gap: 16px;
}
.now-playing-dot { width: 12px; height: 12px; background: var(--accent-red); border-radius: 50%; animation: blink-red 1.5s infinite; flex-shrink: 0; }
.now-playing-info { text-align: left; }
.now-playing-info .label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; }
.now-playing-info .title { font-weight: 700; font-size: 1rem; }
.now-playing-info .time  { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── TV Schedule Page ─────────────────────────────────────────── */
.schedule-tabs { display: flex; gap: 6px; overflow-x: auto; padding: 4px 0 16px; }
.tab-btn {
  flex-shrink: 0; padding: 9px 20px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--border); background: #fff; transition: var(--transition);
  cursor: pointer;
}
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-btn:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

.schedule-day { display: none; }
.schedule-day.active { display: block; }
.schedule-timeline { display: flex; flex-direction: column; gap: 12px; }
.timeline-row {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 0; align-items: stretch;
}
.timeline-time {
  font-size: .82rem; font-weight: 600; color: var(--text-muted);
  padding: 16px 16px 16px 0; text-align: right; border-right: 2px solid var(--border);
  position: relative;
}
.timeline-time::after {
  content: ''; position: absolute; right: -6px; top: 20px;
  width: 10px; height: 10px; background: var(--border); border-radius: 50%;
}
.timeline-row.live-now .timeline-time::after { background: var(--accent-red); }
.timeline-item {
  background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-left: 20px; padding: 14px 16px;
  border-left: 3px solid transparent; transition: var(--transition);
}
.timeline-row.live-now .timeline-item { border-left-color: var(--accent-red); background: #fff3f3; }
.timeline-item:hover { box-shadow: var(--shadow); }
.timeline-item .prog-title { font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.timeline-item .prog-cat   { font-size: .75rem; color: var(--text-muted); }
.timeline-item .prog-host  { font-size: .78rem; color: var(--primary); font-weight: 600; margin-top: 4px; }
.live-pill {
  display: inline-block; background: var(--accent-red); color: #fff;
  font-size: .65rem; font-weight: 700; padding: 2px 7px; border-radius: 4px;
  margin-left: 8px; vertical-align: middle;
}

/* ── Advertise Page ──────────────────────────────────────────── */
.advertise-hero {
  background: linear-gradient(135deg, var(--bg-alt), #dde5fb);
  padding: 80px 0 48px; text-align: center;
}
.advertise-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 12px; }
.advertise-hero p { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; }

.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.pkg-card {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; transition: var(--transition); position: relative;
}
.pkg-card.featured { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(26,86,219,.1); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 3px 14px; border-radius: 20px;
}
.pkg-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pkg-price { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.pkg-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pkg-duration { font-size: .8rem; color: var(--text-muted); margin-bottom: 16px; }
.pkg-features { text-align: left; margin-bottom: 20px; }
.pkg-features li { font-size: .85rem; padding: 4px 0; display: flex; gap: 8px; align-items: center; }
.pkg-features li::before { content: '✓'; color: var(--primary); font-weight: 700; }

.advert-form-section { background: var(--bg-alt); }
.advert-form-card {
  background: #fff; border-radius: var(--radius); padding: 40px;
  box-shadow: var(--shadow); max-width: 720px; margin: 0 auto;
}
.advert-form-card h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.advert-form-card .sub { color: var(--text-muted); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: inherit; transition: var(--transition); background: #fff;
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.drop-zone {
  border: 2px dashed #9eb5f5; border-radius: var(--radius-sm);
  padding: 32px; text-align: center; cursor: pointer;
  background: var(--bg-alt); transition: var(--transition);
}
.drop-zone:hover, .drop-zone.dragover { border-color: var(--primary); background: #eef1fd; }
.drop-zone .dz-icon { font-size: 2rem; margin-bottom: 8px; }
.drop-zone p { font-size: .85rem; color: var(--text-muted); }
.drop-zone strong { color: var(--primary); }
.amount-select-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.amount-option { display: none; }
.amount-label {
  display: block; padding: 10px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  text-align: center; cursor: pointer; font-weight: 600; font-size: .9rem;
  transition: var(--transition);
}
.amount-option:checked + .amount-label { border-color: var(--primary); background: var(--bg-alt); color: var(--primary); }

/* ── Site Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--secondary); color: rgba(255,255,255,.8); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px 20px;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); color: #fff; }
.footer-socials svg { width: 15px; height: 15px; }

.footer-col h4 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-col ul li svg { width: 14px; height: 14px; flex-shrink: 0; }

.store-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 8px 16px; color: #fff; font-size: .82rem;
  margin-top: 10px; transition: var(--transition);
}
.store-badge svg { width: 20px; height: 20px; }
.store-badge:hover { background: var(--primary); border-color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 20px;
}
.footer-bottom p { text-align: center; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ── Flash Messages ───────────────────────────────────────────── */
.flash { padding: 14px 20px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; margin-bottom: 18px; }
.flash-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.flash-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ── Page Hero generic ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #dde5fb 100%);
  padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.page-hero p  { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ── About / Contact ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; }
.about-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.about-text p  { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
  background: var(--bg-alt); border-radius: var(--radius); padding: 32px;
}
.contact-info-card h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: #fff; }
.contact-item-body .c-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); }
.contact-item-body .c-val   { font-weight: 600; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .on-air-grid { grid-template-columns: 1fr 1fr; }
  .on-air-grid > *:last-child { grid-column: 1/-1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; margin-left: auto; }
  .header-right .social-icons { display: none; }

  .main-nav {
    position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 20px; z-index: 1001; transform: translateX(-100%);
    transition: transform var(--transition); overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-overlay { display: block; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
  .hero-cta { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-visual { display: none; }

  .on-air-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .amount-select-wrap { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn-download span { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .amount-select-wrap { grid-template-columns: 1fr; }
  .advert-form-card { padding: 20px; }
}
