/* ══════════════════════════════════════
   AALAMI PAIGHAM – Master Stylesheet
   Dark Premium News / Media Theme
   Colors: Navy #0A0E1A | Green #00C853 | Gold #FFD700
══════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --navy:       #0A0E1A;
  --navy-light: #111827;
  --navy-mid:   #141c2f;
  --navy-card:  #151e30;
  --green:      #00C853;
  --green-dim:  #00a844;
  --gold:       #FFD700;
  --gold-dim:   #e6c200;
  --white:      #FFFFFF;
  --gray:       #b0bec5;
  --gray-light: #e2e8f0;
  --red:        #FF3D3D;
  --font-main:  'Poppins', sans-serif;
  --font-arabic:'Amiri', serif;
  --radius:     14px;
  --radius-sm:  8px;
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section-pad { padding: 100px 0; }

/* ══════════════════════════════════════
   ISLAMIC GEOMETRIC PATTERN (Pure CSS)
══════════════════════════════════════ */
.geo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg,  var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
  z-index: 1;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  background: rgba(10, 14, 26, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,215,0,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(0,200,83,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}

.logo-arabic {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.logo-english {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Subscribe Button */
.btn-subscribe {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 18px rgba(0,200,83,0.35);
  flex-shrink: 0;
}

.btn-subscribe:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 32px rgba(0,200,83,0.55);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #0d1f3c 0%, var(--navy) 70%);
  padding-top: 72px;
}

/* Particle Canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Globe Rings */
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,83,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-ring linear infinite;
}

.globe-ring-1 { width: 520px; height: 520px; animation-duration: 30s; border-color: rgba(0,200,83,0.10); }
.globe-ring-2 { width: 720px; height: 720px; animation-duration: 50s; animation-direction: reverse; border-color: rgba(255,215,0,0.07); }
.globe-ring-3 { width: 950px; height: 950px; animation-duration: 70s; border-color: rgba(0,200,83,0.05); }

@keyframes spin-ring {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 860px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,200,83,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

/* Arabic Headline */
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(255,215,0,0.35), 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 8px;
  animation: fadeSlideUp 0.9s ease both;
}

/* English Subtitle */
.hero-english {
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.9s ease 0.15s both;
}

/* Tagline */
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 38px;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.tag-word { color: var(--gray-light); }
.tag-sep  { color: var(--green); font-size: 1.2em; font-weight: 300; }
.tag-dot  { color: var(--gold); }

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.9s ease 0.45s both;
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--green) 0%, #009e42 100%);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px rgba(0,200,83,0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 45px rgba(0,200,83,0.65);
  background: linear-gradient(135deg, #00e660 0%, var(--green) 100%);
}

.btn-primary.large { padding: 16px 38px; font-size: 1rem; }

/* Secondary Button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid rgba(255,215,0,0.35);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.arrow { transition: transform 0.25s ease; }
.btn-primary:hover .arrow,
.btn-secondary:hover .arrow { transform: translateX(5px); }

/* Outline Button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border: 1.5px solid var(--green);
  color: var(--green);
  font-size: 0.87rem;
  font-weight: 600;
  border-radius: 50px;
  margin-top: 20px;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(0,200,83,0.35);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 60px;
  padding: 16px 36px;
  animation: fadeSlideUp 0.9s ease 0.6s both;
  flex-wrap: wrap;
  gap: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-plus { color: var(--green); font-weight: 700; font-size: 1.1rem; line-height: 1; }

.stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--green);
  border-radius: 3px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

/* ══════════════════════════════════════
   BREAKING NEWS TICKER
══════════════════════════════════════ */
.ticker-wrapper {
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.85);
  border-top: 1px solid rgba(255,215,0,0.15);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  height: 48px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  height: 100%;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-track-outer {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  font-size: 0.84rem;
  color: var(--gray-light);
  padding: 0 20px;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-track .sep {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

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

/* ══════════════════════════════════════
   SECTION HEADERS (shared)
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 5px 18px;
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.3);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight { color: var(--gold); }

.title-underline {
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--gold));
  border-radius: 3px;
  margin: 0 auto;
}

.section-sub {
  margin-top: 14px;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about {
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text .about-lead {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Feature Cards */
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateX(6px);
  border-color: rgba(0,200,83,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   VIDEOS SECTION
══════════════════════════════════════ */
.videos {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.videos::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.video-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(0,200,83,0.25);
}

/* Thumbnail-based video cards */
.video-thumb-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  background: #0d1525;
  overflow: hidden;
}

.thumb-link {
  position: absolute;
  inset: 0;
  display: block;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.thumb-fallback {
  background: linear-gradient(135deg, #0d1f3c 0%, #0d2b15 50%, #1a1400 100%);
}

.thumb-fallback::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumb-wrapper:hover .thumb-overlay { opacity: 1; }
.video-thumb-wrapper:hover .video-thumb   { transform: scale(1.06); }

.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,0,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  padding-left: 5px; /* optical center for play icon */
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transform: scale(0.85);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-thumb-wrapper:hover .play-btn {
  transform: scale(1);
  background: #FF0000;
}

/* Legacy embed wrapper (keep for compatibility) */
.video-embed-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: #0d1525;
  overflow: hidden;
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 20px;
}

.video-tag {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(0,200,83,0.12);
  color: var(--green);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.video-info h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px;
}

.video-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-meta i { color: var(--gold); }

.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-watch:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0,200,83,0.4);
}

.view-all-wrap { text-align: center; }

/* ══════════════════════════════════════
   TOPICS / CATEGORIES SECTION
══════════════════════════════════════ */
.topics {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
  text-align: center;
}

.topic-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,83,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.topic-card:hover { transform: translateY(-8px); border-color: rgba(0,200,83,0.35); }
.topic-card:hover::before { opacity: 1; }

.topic-emoji {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
  transition: transform var(--transition);
}

.topic-card:hover .topic-emoji { transform: scale(1.15) rotate(-3deg); }

.topic-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.topic-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Glow on hover */
.topic-glow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 60px;
  background: radial-gradient(ellipse, rgba(0,200,83,0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.topic-card:hover .topic-glow { opacity: 1; }

/* ══════════════════════════════════════
   WHY WATCH US SECTION
══════════════════════════════════════ */
.why-watch {
  background: var(--navy-light);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover { transform: translateY(-6px); border-color: rgba(255,215,0,0.2); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  transition: transform var(--transition);
}

.why-card:hover .why-icon { transform: scale(1.15); }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   LIVE SCHEDULE BANNER
══════════════════════════════════════ */
.live-banner {
  background: linear-gradient(135deg, #0d1f0d 0%, #0a1a1a 40%, #0d0d20 100%);
  border-top: 1px solid rgba(0,200,83,0.2);
  border-bottom: 1px solid rgba(0,200,83,0.2);
  padding: 36px 24px;
  position: relative;
  overflow: hidden;
}

.live-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0,200,83,0.015) 0px,
    rgba(0,200,83,0.015) 1px,
    transparent 1px,
    transparent 28px
  );
}

.live-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.live-pulse {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.live-dot {
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-live 1.3s ease-in-out infinite;
}

.live-dot.small { width: 10px; height: 10px; }

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,61,61,0.5); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 8px rgba(255,61,61,0); }
}

.live-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
}

.live-message h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.live-time { color: var(--gold); }

.live-message p {
  font-size: 0.85rem;
  color: var(--gray);
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 25px rgba(255,61,61,0.35);
  transition: all var(--transition);
  flex-shrink: 0;
}

.btn-live:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 40px rgba(255,61,61,0.55);
  background: #ff5555;
}

/* ══════════════════════════════════════
   CONNECT / SOCIAL SECTION
══════════════════════════════════════ */
.connect {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.connect::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(0,200,83,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(255,215,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.social-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all var(--transition);
}

.social-card:hover { transform: translateY(-8px); }

.youtube-card:hover { border-color: rgba(255,61,61,0.4); box-shadow: 0 20px 50px rgba(255,61,61,0.1); }
.instagram-card:hover { border-color: rgba(200,100,255,0.4); box-shadow: 0 20px 50px rgba(200,100,255,0.1); }

.social-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255,61,61,0.12);
  color: #FF0000;
  border: 2px solid rgba(255,61,61,0.2);
}

.ig-icon {
  background: rgba(200,100,255,0.1);
  color: #e1306c;
  border-color: rgba(200,100,255,0.2);
}

.social-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.social-info p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.6;
}

.social-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
  margin-top: 6px;
}

.social-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}

.yt-btn {
  background: #FF0000;
  color: var(--white);
  box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.yt-btn:hover {
  background: #cc0000;
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255,0,0,0.5);
}

.ig-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 0 20px rgba(220,39,67,0.3);
}

.ig-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(220,39,67,0.5);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #070a13;
  padding: 70px 0 0;
  position: relative;
}

.footer-geo-border {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0px,
    var(--green) 12px,
    var(--gold) 12px,
    var(--gold) 24px,
    transparent 24px,
    transparent 36px
  );
  margin-bottom: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-logo .logo-arabic { font-size: 1.6rem; }
.footer-logo .logo-english { font-size: 0.65rem; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:first-child:hover { background: #FF0000; border-color: #FF0000; color: white; }
.footer-social a:last-child:hover  { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); border-color: transparent; color: white; }

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  font-size: 0.83rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition), gap var(--transition);
}

.footer-links ul li a i {
  font-size: 0.6rem;
  color: var(--green);
}

.footer-links ul li a:hover { color: var(--white); gap: 11px; }

.footer-live h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-live-card {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-sm);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-live-card p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.btn-footer-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: var(--green);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-footer-live:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0,200,83,0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  text-align: center;
}

.footer-geo-line {
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 8px,
    rgba(255,215,0,0.15) 8px, rgba(255,215,0,0.15) 16px
  );
  margin-bottom: 18px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.footer-arabic-quote {
  font-family: var(--font-arabic);
  font-size: 0.88rem;
  color: rgba(255,215,0,0.4);
  font-style: italic;
  margin-top: 6px;
}

/* ══════════════════════════════════════
   SCROLLBAR STYLING
══════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(0,200,83,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ══════════════════════════════════════
   RESPONSIVE – TABLET (max 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .videos-grid      { grid-template-columns: repeat(2, 1fr); }
  .topics-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .social-grid      { grid-template-columns: 1fr; max-width: 520px; }
}

/* ══════════════════════════════════════
   RESPONSIVE – MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0 30px;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(0,200,83,0.15);
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 20px; font-size: 1rem; }

  .btn-subscribe { display: none; }
  .hamburger     { display: flex; }

  /* Hero mobile */
  .hero-stats { gap: 4px; padding: 14px 16px; }
  .stat { padding: 0 14px; }
  .stat-num { font-size: 1.2rem; }

  .globe-ring-1 { width: 280px; height: 280px; }
  .globe-ring-2 { width: 380px; height: 380px; }
  .globe-ring-3 { width: 500px; height: 500px; }

  /* Videos */
  .videos-grid  { grid-template-columns: 1fr; }
  .topics-grid  { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }

  .live-banner-inner { flex-direction: column; text-align: center; gap: 20px; }

  .about-cards { gap: 12px; }
  .feature-card { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-arabic   { font-size: 2.8rem; }
  .hero-english  { font-size: 1.1rem; letter-spacing: 3px; }
  .hero-tagline  { font-size: 0.8rem; }
  .hero-buttons  { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-secondary { width: 100%; justify-content: center; }
  .hero-stats    { flex-direction: column; border-radius: 16px; }
  .stat-divider  { width: 80px; height: 1px; }
  .stat          { padding: 8px 0; }
}
