/* ============================================
   Halaal Charitable Trust - Main Stylesheet
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --primary: #0a6b3c;
  --primary-light: #0d8a4e;
  --primary-dark: #074d2a;
  --secondary: #c8a24e;
  --secondary-light: #dbb96a;
  --accent: #e67e22;
  --accent-light: #f39c12;

  --text-dark: #1a1a2e;
  --text-body: #444;
  --text-light: #777;
  --text-white: #fff;

  --bg-light: #f8f9fa;
  --bg-cream: #fdfaf3;
  --bg-dark: #074d2a;
  --bg-footer: #0a2e1a;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-arabic: 'Noto Naskh Arabic', 'Traditional Arabic', serif;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; }

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

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

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

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
}

.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  margin-top: 8px;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-label::after { margin: 8px auto 0; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-main);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(10, 107, 60, 0.3);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 107, 60, 0.4);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(200, 162, 78, 0.3);
}
.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 162, 78, 0.4);
  color: #fff;
}

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

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo img {
  height: 64px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .logo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text .logo-subtitle {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav-main a {
  padding: 8px 16px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--primary);
  background: rgba(10, 107, 60, 0.06);
}

.nav-main .nav-donate {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-main .nav-donate:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 107, 60, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #f0f7f0 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(10, 107, 60, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 162, 78, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--primary);
  position: relative;
}

.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(200, 162, 78, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hero-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

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

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-image:hover .hero-image-wrapper {
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

.hero-image .hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  z-index: 10;
}

.hero-image:hover .hero-badge {
  transform: scale(1.03) translate(4px, -4px);
  box-shadow: var(--shadow-xl);
}

.hero-image .hero-badge-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.hero-image .hero-badge-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.hero-image .hero-badge-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   DONATION WIDGET
   ============================================ */
.donation-widget {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  margin-top: 20px;
  border: 1px solid rgba(10, 107, 60, 0.1);
}

.donation-widget .widget-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
  color: var(--primary);
  font-weight: 700;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.donation-amount {
  padding: 18px 12px;
  border: 2px solid #eaeaea;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  background: #fdfdfd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text);
}

.donation-amount .currency-symbol {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.donation-amount:hover {
  border-color: rgba(10, 107, 60, 0.4);
  background: rgba(10, 107, 60, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.donation-amount.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 107, 60, 0.25);
}

.donation-amount.active .currency-symbol {
  color: rgba(255,255,255,0.8);
}

.donation-amount.other {
  grid-column: span 2;
  flex-direction: row;
  padding: 12px 20px;
  background: #f9f9f9;
}

.donation-amount.other.active {
  background: var(--primary);
}

.donation-amount.other .other-input {
  width: 100%;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-main);
  outline: none;
  color: var(--text);
  padding: 8px 0;
}

.donation-amount.other.active .other-input {
  color: #fff;
}

.donation-amount.other.active .currency-symbol {
  color: rgba(255,255,255,0.8) !important;
}

.donation-amount.other .other-input::placeholder { color: #aaa; font-weight: 500; }
.donation-amount.other.active .other-input::placeholder { color: rgba(255,255,255,0.7); }

.donation-submit {
  width: 100%;
  padding: 16px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.donation-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 107, 60, 0.3);
}

/* ============================================
   IMPACT / STATS SECTION
   ============================================ */
.impact-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.impact-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.impact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.impact-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(200, 162, 78, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.impact-card h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.impact-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* ============================================
   SERVICES / PILLARS SECTION
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  text-align: center;
}

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

.pillar-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(10, 107, 60, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.pillar-card:hover .pillar-card-icon {
  background: var(--primary);
  color: #fff;
}

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

.pillar-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   HALAL CHARITY TV SECTION (Homepage)
   ============================================ */
.tv-section {
  background: var(--bg-light);
}

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

.tv-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.tv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.tv-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e0e0e0;
}

.tv-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.tv-card:hover .tv-card-thumb img {
  transform: scale(1.05);
}

.tv-card-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.tv-card:hover .play-btn {
  background: var(--primary);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.tv-card-body {
  padding: 20px;
}

.tv-card-body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tv-card-body .tv-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tv-card-body .tv-category {
  display: inline-block;
  padding: 2px 12px;
  background: rgba(10, 107, 60, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

/* ============================================
   DONATION METHODS SECTION
   ============================================ */
.donation-methods {
  background: var(--bg-cream);
}

.donation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.donation-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
}

.donation-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.donation-card .bank-icon {
  width: 48px;
  height: 48px;
  background: rgba(10, 107, 60, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.donation-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.donation-card .bank-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.donation-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.donation-detail:last-child {
  border-bottom: none;
}

.donation-detail .label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.donation-detail .value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(10, 107, 60, 0.08);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--primary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  background: var(--primary);
  color: #fff;
}

.copy-btn.copied {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   LEAD CAPTURE FORMS
   ============================================ */
.form-section {
  background: #fff;
}

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

.form-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.04);
}

.form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-card .form-intro {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: var(--transition);
  background: #fff;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 107, 60, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 107, 60, 0.3);
}

/* ============================================
   LOCATION / MAP SECTION
   ============================================ */
.location-section {
  background: var(--bg-light);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.location-item .loc-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(10, 107, 60, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}

.location-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.location-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   BLOG / NEWS GRID
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.news-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e0e0e0;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 24px;
}

.news-card-body .news-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.news-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body p.expanded {
  display: block;
  -webkit-line-clamp: none;
}

.news-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-about .footer-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about .footer-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

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

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

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

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

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact li .fc-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--secondary);
}

.footer-contact li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

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

/* ============================================
   VIDOE LIGHTBOX MODAL
   ============================================ */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.video-modal.active {
  display: flex;
}

.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition);
}

.video-modal-close:hover {
  opacity: 1;
}
/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-image-wrapper:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 { font-size: 2.5rem; }
  .hero-image { max-width: 500px; margin: 0 auto; }

  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

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

  .menu-toggle { display: flex; }

  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 1000;
    align-items: stretch;
  }

  .nav-main.open { right: 0; }

  .nav-main a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .nav-main .nav-donate { text-align: center; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-content h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat { padding: 12px; }
  .hero-stat-number { font-size: 1.3rem; }

  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .impact-card { padding: 24px 16px; }
  .impact-card h3 { font-size: 1.8rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .tv-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .donation-cards { grid-template-columns: 1fr; }
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }

  .tv-header { flex-direction: column; align-items: flex-start; }

  .location-info { grid-template-columns: 1fr; }
  .map-container iframe { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-card { padding: 24px; }
  .donation-card { padding: 24px; }
  .donation-widget { padding: 24px; }

  .video-modal { padding: 20px; }
  .video-modal-close { top: -40px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .hero-stat-number { font-size: 1.1rem; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }
  .currency-selector { flex-wrap: wrap; }
}

/* ============================================
   SKELETON LOADERS
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
