/* ═══════════════════════════════════════════════
   AVVENTOMEDIA — STYLES
   A Christian non-profit ministry website
   Primary: #1278ca
   ════════════════════════════════════════════════ */

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

:root {
  --primary: #1278ca;
  --primary-dark: #0e5fa3;
  --primary-light: #e8f4fd;
  --primary-glow: rgba(18, 120, 202, 0.25);
  --white: #ffffff;
  --off-white: #f8fafb;
  --gray-50: #f0f4f8;
  --gray-100: #e1e8ed;
  --gray-200: #cdd6de;
  --gray-400: #8899a6;
  --gray-600: #536471;
  --gray-800: #2c3e50;
  --dark: #1a1a2e;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ─── LAYOUT ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ─── TYPOGRAPHY ───────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin: 0 auto;
}

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn:hover::after {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   HEADER / NAVBAR
   ════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
  z-index: 1001;
}

.logo strong {
  font-weight: 800;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.header.scrolled .logo {
  color: var(--dark);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: block;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav-link {
  color: var(--gray-600);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

/* ─── NAV DROPDOWN ─────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.dropdown-chevron {
  vertical-align: middle;
  margin-left: 2px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--gray-100);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.mobile-active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.dropdown-item svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header.scrolled .hamburger-line {
  background: var(--dark);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg,
      rgba(10, 30, 60, 0.85) 0%,
      rgba(18, 120, 202, 0.75) 50%,
      rgba(10, 30, 60, 0.90) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><rect fill="%230a1e3c" width="1440" height="900"/></svg>');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Animated background particles */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 120, 202, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18, 120, 202, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="0.5" fill="rgba(255,255,255,0.08)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}

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

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════════ */
.about-section {
  background: var(--white);
}

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

.about-text p {
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 1.02rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-quote blockquote {
  position: relative;
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 36px 32px;
}

.quote-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  color: var(--primary);
}

blockquote p {
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 1rem;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   MINISTRY SECTION
   ════════════════════════════════════════════════ */
.ministry-section {
  background: var(--off-white);
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.ministry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.ministry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #4fc3f7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.ministry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.ministry-card:hover::before {
  transform: scaleX(1);
}

.ministry-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  margin: 0 auto 24px;
  color: var(--primary);
  transition: all var(--transition);
}

.ministry-card:hover .ministry-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.ministry-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.ministry-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}

.card-link:hover {
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

/* Ministry Hover Overlay */
.ministry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.ministry-card:hover .ministry-overlay {
  transform: translateY(0);
}

.overlay-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.overlay-link:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ═══════════════════════════════════════════════
   WATCH SECTION
   ════════════════════════════════════════════════ */
.watch-section {
  background: var(--white);
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.watch-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.watch-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.watch-card-header h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
}

/* LIVE indicator */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 50px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Video wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

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

/* Radio player */
.radio-player {
  padding: 32px 24px;
}

.radio-visual {
  text-align: center;
  margin-bottom: 28px;
}

.radio-art {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  animation: radio-glow 3s ease-in-out infinite;
}

@keyframes radio-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(18, 120, 202, 0.3); }
  50% { box-shadow: 0 0 40px rgba(18, 120, 202, 0.6); }
}

.radio-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.radio-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.radio-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.radio-play-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--primary-glow);
}

.radio-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  color: rgba(255, 255, 255, 0.5);
}

.radio-volume input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
}

.radio-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.radio-volume input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--primary-glow);
}

.radio-volume input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

/* ═══════════════════════════════════════════════
   DONATE SECTION
   ════════════════════════════════════════════════ */
.donate-section {
  background: var(--off-white);
  padding: 80px 0;
}

.donate-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0e5fa3 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.donate-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.donate-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.donate-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 40px;
}

.donate-icon {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

.donate-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.donate-inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.donate-section .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.donate-section .btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════ */
.contact-section {
  background: var(--white);
}

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

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #ef4444;
  margin-top: 4px;
  min-height: 18px;
}

.form-success {
  text-align: center;
  color: #22c55e;
  font-weight: 600;
  padding: 12px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

/* Contact info */
.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ═══════════════════════════════════════════════
   BRAND STRIP
   ════════════════════════════════════════════════ */
.brand-strip {
  background: var(--primary);
  padding: 28px 0;
}

.brand-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white);
}

.brand-strip p {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-top: 8px;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 16px var(--primary-glow);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-motto {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem !important;
}

.footer-tiny {
  font-size: 0.78rem !important;
  opacity: 0.4;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll[data-animation="fade-in"] {
  transform: translateY(0);
}

.animate-on-scroll[data-animation="slide-up"] {
  transform: translateY(40px);
}

.animate-on-scroll[data-animation="slide-left"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-animation="slide-right"] {
  transform: translateX(40px);
}

.animate-on-scroll[data-animation="zoom-in"] {
  transform: scale(0.92);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

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

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

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

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

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    transition: right var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 0 32px;
  }

  .nav-link {
    color: var(--gray-800);
    font-size: 1.05rem;
    padding: 14px 20px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
  }

  /* Inline mobile dropdowns (accordeon style, centered) */
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 10px 0 0 0;
    display: none;
    width: 100%;
  }

  .nav-dropdown.mobile-active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-item {
    justify-content: center;
    padding: 10px;
    background: var(--gray-50);
    margin-bottom: 4px;
    border-radius: var(--radius-sm);
  }

  /* Overlay when menu is open */
  .nav::before {
    content: '';
    position: fixed;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
  }

  .nav.open::before {
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile hamburger always dark when menu open */
  .hamburger.active .hamburger-line {
    background: var(--dark);
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .ministry-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .donate-inner {
    padding: 48px 24px;
  }

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

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-wave svg {
    height: 40px;
  }

  .ministry-card {
    padding: 32px 24px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .donate-inner {
    padding: 40px 20px;
  }
}

/* ─── PRINT ────────────────────────────────────── */
@media print {
  .header,
  .hero-wave,
  .brand-strip,
  .hamburger {
    display: none;
  }

  .hero {
    min-height: auto;
    background: none;
    color: var(--dark);
  }

  .hero-title,
  .hero-sub {
    color: var(--dark);
  }

  .section {
    padding: 32px 0;
  }

  body {
    font-size: 12pt;
  }
}

/* ═══════════════════════════════════════════════
   GLOBAL STICKY RADIO BANNER
   ════════════════════════════════════════════════ */
.sticky-radio-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.sticky-radio-banner.visible {
  transform: translateY(0);
}

.sticky-radio-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-radio-art {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  animation: sticky-glow 3s ease-in-out infinite;
}

@keyframes sticky-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(18,120,202,0.3); }
  50% { box-shadow: 0 0 20px rgba(18,120,202,0.6); }
}

.sticky-radio-info {
  flex: 1;
  min-width: 0;
}

.sticky-radio-title {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-radio-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-radio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.sticky-play-btn:hover {
  background: #4fc3f7;
  transform: scale(1.1);
}

.sticky-close-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.sticky-close-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.sticky-volume {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
}

.sticky-volume input[type="range"] {
  width: 70px;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  outline: none;
}

.sticky-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.sticky-volume input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  cursor: pointer;
}

@media (max-width: 600px) {
  .sticky-radio-inner {
    padding: 8px 16px;
    gap: 10px;
  }

  .sticky-volume {
    display: none;
  }

  .sticky-radio-title {
    font-size: 0.8rem;
  }
}

/* ─── MEGA APP DROPDOWN ─── */
.nav-app-dropdown .dropdown-menu {
  width: 360px;
  transform: translateY(8px);
  left: auto;
  right: -20px;
  padding: 24px;
}

.nav-app-dropdown:hover .dropdown-menu,
.nav-app-dropdown.mobile-active .dropdown-menu {
  transform: translateY(0);
}

@media (max-width: 992px) {
  .nav-app-dropdown .dropdown-menu {
    width: 100%;
    right: 0;
    padding: 15px;
  }
  
  .nav-app-dropdown:hover .dropdown-menu,
  .nav-app-dropdown.mobile-active .dropdown-menu {
    transform: translateY(0);
  }
}

.mega-app-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 20px;
}

.mega-qr-code {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  padding: 4px;
}

.mega-app-header h4 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 800;
}

.mega-app-header p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.mega-app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.mega-app-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.mega-app-features svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.mega-app-buttons {
  display: flex;
  gap: 12px;
}

.mega-app-btn {
  flex: 1;
  padding: 10px;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--dark) !important;
  border-radius: 8px;
  transition: all var(--transition);
}

.mega-app-btn:hover {
  background: var(--dark);
  color: var(--white) !important;
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-nav-download {
  margin-left: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(18,120,202,0.3);
}

.btn-nav-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,120,202,0.4);
}

.nav-dropdown.nav-app-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Override the translateX(-50%) from parent to fix mega menu positioning */
}

/* ─── FOOTER LINK SUBTLE ─── */
.footer-link-subtle {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link-subtle:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-social .social-icon svg {
  transition: transform var(--transition);
}

.footer-social .social-icon:hover svg {
  transform: scale(1.1);
}

/* Image Logo Handling */
.logo-img-white, .logo-img-black {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: opacity var(--transition);
}

.logo-img-black {
  display: none;
}

/* When header is scrolled (white background) */
.header.scrolled .logo-img-white {
  display: none;
}

.header.scrolled .logo-img-black {
  display: block;
}

/* Exception for legal pages where header is already white/gray */
.page-legal .header .logo-img-white { display: none; }
.page-legal .header .logo-img-black { display: block; }

/* In case of sticky radio */
.sticky-radio-banner .logo-img-white { display: block; width: 24px; height: 24px;}
.sticky-radio-banner .logo-img-black { display: none; }

/* ─── GENERIC APP MODAL (Mobile Override) ─── */
.app-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 60, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.app-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.app-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-modal-overlay.active .app-modal-content {
  transform: translateY(0) scale(1);
}

.app-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}

.app-modal-close:hover {
  color: var(--dark);
}

/* Hide original dropdown structure on mobile when modal takes over */
@media (max-width: 992px) {
  .nav-app-dropdown .dropdown-menu {
    display: none !important;
  }
}
