/* ==========================================================================
   Hands of Mercy Gaza - Design System & Stylesheet
   ========================================================================== */

/* 1. CSS CUSTOM PROPERTIES & TOKENS */
:root {
  --primary-gold: #D4A843;
  --primary-gold-light: #F3DC9B;
  --primary-gold-dark: #B88E2D;
  --gold-gradient: linear-gradient(135deg, #D4A843 0%, #F5E2A8 50%, #B88E2D 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212,168,67,0.15) 0%, rgba(245,226,168,0.05) 100%);
  --gfm-green: #02a95c;
  --gfm-green-dark: #028f4e;
  --gfm-gradient: linear-gradient(135deg, #02a95c 0%, #00c968 100%);
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --bg: #FAF8F5;
  --surface: #FFFFFF;
  --text-primary: #1A1A24;
  --text-secondary: #52525E;
  --text-light: #FFFFFF;
  --dark-bg: #131424;
  --dark-surface: #1B1D33;
  --dark-card: #222540;
  --border: #EAE6DF;
  --border-dark: rgba(212,168,67,0.22);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 14px 45px rgba(0,0,0,0.16);
  --shadow-gold: 0 8px 30px rgba(212,168,67,0.35);
  --shadow-green: 0 8px 30px rgba(2,169,92,0.35);
  --shadow-wa: 0 8px 30px rgba(37,211,102,0.35);
  --font-ar: 'Tajawal', sans-serif;
  --font-en: 'Inter', sans-serif;
  --radius-card: 16px;
  --radius-btn: 10px;
  --radius-pill: 50px;
}

/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: direction 0.3s ease;
}

[dir="rtl"] body {
  font-family: var(--font-ar);
}

[dir="ltr"] body {
  font-family: var(--font-en);
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section {
  padding: 90px 0;
}

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

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-title span {
  color: var(--primary-gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-wa);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-wa 2.5s infinite;
}

[dir="ltr"] .floating-whatsapp {
  left: auto;
  right: 24px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37,211,102,0.5);
  color: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 70px;
  left: 0;
  background: rgba(19,20,36,0.92);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

[dir="ltr"] .whatsapp-tooltip {
  left: auto;
  right: 0;
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* 2. HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.98);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-area {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}

.logo-area img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.logo-area h1 {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-gold-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-inline-start: auto;
}

.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-whatsapp-btn:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.lang-toggle {
  position: relative;
  background: rgba(0,0,0,0.07);
  height: 36px;
  padding: 2px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0 14px;
  height: 32px;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: color 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.lang-btn.active {
  color: var(--dark-bg);
}

.lang-slider {
  position: absolute;
  top: 2px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--gold-gradient);
  box-shadow: 0 2px 8px rgba(212,168,67,0.35);
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.35rem;
  color: var(--text-primary);
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  background: var(--surface);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-nav ul {
  list-style: none;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 46px;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(212,168,67,0.1);
  color: var(--primary-gold);
}

.mobile-nav-footer {
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
}

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

/* 3. HERO SECTION (SPLIT WITH TOP FIRST-VIEW VIDEO) */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #131424;
  background-image: radial-gradient(circle at 10% 20%, rgba(212,168,67,0.12) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(2,169,92,0.08) 0%, transparent 40%),
                    linear-gradient(180deg, #131424 0%, #1A1D33 100%);
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 130px;
  padding-bottom: 70px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-text-side {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--primary-gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 22px;
  background: rgba(212,168,67,0.12);
  align-self: flex-start;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  color: var(--text-light);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
}

.gofundme-btn {
  background: var(--gfm-gradient);
  color: #fff;
  box-shadow: var(--shadow-green);
  animation: pulse-green 2s infinite;
}

.gofundme-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(2,169,92,0.5);
  color: #fff;
}

.cta-secondary {
  background: var(--gold-gradient);
  color: #131424;
  box-shadow: var(--shadow-gold);
}

.cta-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(212,168,67,0.45);
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stats .stat {
  text-align: start;
  color: var(--text-light);
}

[dir="rtl"] .hero-stats .stat {
  text-align: right;
}

.hero-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stats .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* HERO VIDEO (FIRST THING VISITOR SEES) */
.hero-video-side {
  width: 100%;
}

.hero-video-wrapper {
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(212,168,67,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold);
  position: relative;
}

.video-top-tag {
  background: rgba(19,20,36,0.95);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ff334b;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(255,51,75,0.6);
  animation: pulse-red 1.5s infinite;
}

.hero-main-video {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 480px;
  object-fit: cover;
  background: #000;
  display: block;
}

.hero-video-caption {
  padding: 18px 20px;
  background: var(--dark-surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-video-caption h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-video-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.video-sub-link {
  color: var(--primary-gold-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.2s;
}

.video-sub-link:hover {
  color: #fff;
  text-decoration: underline;
}

.video-sub-link.fb-link {
  color: #5AA7FF;
}

/* 4. CAMPAIGN RELIEF PACKAGES */
.packages-section {
  background: var(--bg);
}

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

.package-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,168,67,0.4);
}

.package-img-box {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1A1A2E;
}

.package-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img-box img {
  transform: scale(1.06);
}

.package-price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(19,20,36,0.92);
  color: #fff;
  padding: 6px 14px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,168,67,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

[dir="ltr"] .package-price-badge {
  right: auto;
  left: 14px;
}

.package-price-badge.featured-badge {
  border-color: #25D366;
  background: rgba(2, 169, 92, 0.95);
}

.package-price-badge .price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-gold-light);
  line-height: 1.1;
}

.package-price-badge.featured-badge .price-val {
  color: #fff;
}

.package-price-badge .price-label {
  font-size: 0.72rem;
  opacity: 0.85;
}

.package-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.package-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
}

.package-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
}

.package-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.package-btn.gfm-btn {
  background: var(--gfm-gradient);
  color: #fff;
  flex: 2;
  box-shadow: 0 4px 15px rgba(2,169,92,0.25);
}

.package-btn.gfm-btn:hover {
  background: var(--gfm-green-dark);
  transform: translateY(-2px);
}

.package-btn.binance-sub-btn {
  background: rgba(212,168,67,0.12);
  color: var(--primary-gold-dark);
  border: 1px solid rgba(212,168,67,0.3);
  flex: 1;
}

.package-btn.binance-sub-btn:hover {
  background: var(--gold-gradient);
  color: #131424;
  border-color: transparent;
  transform: translateY(-2px);
}

/* 5. DONATION SECTION (GOFUNDME & BINANCE ONLY) */
.donation-section {
  background: var(--dark-bg);
  color: white;
}

.single-col-donation {
  max-width: 780px;
  margin: 0 auto;
}

.donation-card {
  background: var(--dark-surface);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.donation-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary-gold);
}

.payment-method {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-card);
  padding: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.payment-method.featured-payment {
  border: 2px solid rgba(2,169,92,0.4);
  background: rgba(2,169,92,0.06);
}

.payment-method-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.payment-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.payment-method-icon.gfm-icon {
  background: var(--gfm-gradient);
  color: #fff;
}

.payment-method-icon.binance-icon {
  background: var(--gold-gradient);
  color: var(--dark-bg);
}

.payment-method-name {
  font-weight: 800;
  font-size: 1.15rem;
  display: block;
}

.payment-method-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.payment-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-btn);
  padding: 14px 18px;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-field-info {
  display: flex;
  flex-direction: column;
}

.payment-field-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.payment-field-value {
  font-size: 0.95rem;
  font-weight: 700;
  direction: ltr;
  font-family: monospace, sans-serif;
  color: #fff;
}

.payment-field-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.open-link-btn {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.open-link-btn.gfm-direct-btn {
  background: var(--gfm-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(2,169,92,0.3);
}

.open-link-btn.gfm-direct-btn:hover {
  background: var(--gfm-green-dark);
  transform: translateY(-2px);
}

.open-link-btn:hover {
  background: var(--gold-gradient);
  color: var(--dark-bg);
  border-color: transparent;
  transform: translateY(-2px);
}

.copy-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.copy-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.copy-btn.copied {
  background: #25D366;
  color: #fff;
  border-color: transparent;
}

.donation-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(37, 211, 102, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: rgba(255,255,255,0.9);
}

.donation-note-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #fff;
}

.donation-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  background: #25D366;
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.donation-wa-link:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* 6. REAL GALLERY & DOCUMENTATION */
.gallery-section {
  background: var(--bg);
}

.featured-media-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 40px;
  align-items: center;
}

.featured-media-img {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.featured-media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(19, 20, 36, 0.88);
  color: var(--primary-gold);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(212, 168, 67, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

[dir="ltr"] .media-badge {
  right: auto;
  left: 16px;
}

.featured-media-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-media-content h3 {
  font-size: 1.35rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 800;
  border-right: 4px solid var(--primary-gold);
  padding-right: 14px;
}

[dir="ltr"] .featured-media-content h3 {
  border-right: none;
  border-left: 4px solid var(--primary-gold);
  padding-right: 0;
  padding-left: 14px;
}

.featured-media-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.quote-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fb-media-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gfm-gradient);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.fb-media-btn:hover {
  background: var(--gfm-green-dark);
  transform: translateY(-2px);
}

.fb-media-btn.fb-sub-btn {
  background: #1877F2;
}

.fb-media-btn.fb-sub-btn:hover {
  background: #145DBF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.media-footer-cta {
  text-align: center;
}

.main-fb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1877F2;
  color: #fff;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
  transition: all 0.25s ease;
}

.main-fb-cta:hover {
  background: #145DBF;
  transform: translateY(-2px);
  color: #fff;
}

/* 7. FAQ */
.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  border: none;
  width: 100%;
  text-align: start;
  color: var(--text-primary);
  font-family: inherit;
}

.faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary-gold);
  font-size: 1.2rem;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* 8. FOOTER */
.footer {
  background: var(--dark-bg);
  padding: 70px 0 30px;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-links h3, .footer-connect h3 {
  color: var(--primary-gold);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.25s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-contact-items {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-link.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  color: #25D366;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid rgba(37,211,102,0.3);
  align-self: flex-start;
  transition: all 0.25s ease;
}

.footer-contact-link.wa-pill:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-2px);
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* 9. ANIMATIONS */
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(2,169,92,0.5); }
  50% { box-shadow: 0 0 0 16px rgba(2,169,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(2,169,92,0); }
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255,51,75,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(255,51,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,51,75,0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* 10. RESPONSIVE BREAKPOINTS */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .hero-text-side {
    display: contents;
  }
  .hero-badge {
    order: 1;
    margin-bottom: 16px;
    align-self: flex-start;
  }
  .hero-title {
    order: 2;
    font-size: 1.85rem;
    margin-bottom: 20px;
    line-height: 1.38;
  }
  .hero-video-side {
    order: 3;
    margin: 8px 0 24px;
    width: 100%;
  }
  .hero-main-video {
    aspect-ratio: 16/9;
    max-height: 380px;
  }
  .hero-subtitle {
    order: 4;
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.7;
  }
  .hero-cta-group {
    order: 5;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-stats {
    order: 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .featured-media-card {
    grid-template-columns: 1fr;
  }
  .featured-media-img {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .header-whatsapp-btn {
    display: none;
  }
  .header-inner {
    padding: 10px 16px;
    gap: 12px;
  }
  .logo-area {
    gap: 10px;
    max-width: calc(100% - 140px);
    flex: 0 1 auto;
    min-width: 0;
  }
  .logo-area img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .logo-area h1 {
    font-size: 0.98rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
  }
  .header-actions {
    gap: 8px;
    flex-shrink: 0;
    margin-inline-start: auto;
  }
  .lang-toggle {
    height: 32px;
    padding: 2px;
  }
  .lang-btn {
    height: 28px;
    padding: 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
  }
  .lang-slider {
    height: 28px;
    top: 2px;
  }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  .header.menu-open .mobile-nav {
    display: block;
  }
  .hero-container {
    padding-top: 100px;
    padding-bottom: 45px;
  }
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .cta-btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.98rem;
  }
  .hero-stats .stat-number {
    font-size: 1.35rem;
  }
  .hero-stats .stat-label {
    font-size: 0.7rem;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .donation-card {
    padding: 20px 16px;
  }
  .payment-field {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
  }
  .payment-field-value {
    word-break: break-all;
    font-size: 0.85rem;
  }
  .payment-field-actions {
    width: 100%;
    margin-top: 6px;
  }
  .payment-field-actions .open-link-btn,
  .payment-field-actions .copy-btn {
    flex: 1;
    justify-content: center;
    padding: 10px;
    font-size: 0.82rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
  .container {
    padding: 0 14px;
  }
  .header-inner {
    padding: 8px 12px;
  }
  .logo-area {
    max-width: calc(100% - 130px);
    gap: 8px;
  }
  .logo-area img {
    width: 34px;
    height: 34px;
  }
  .logo-area h1 {
    font-size: 0.88rem;
  }
  .hero-container {
    padding-top: 92px;
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .hero-main-video {
    aspect-ratio: 16/9;
    max-height: 240px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .package-actions {
    flex-direction: column;
    gap: 8px;
  }
  .package-btn {
    width: 100%;
    padding: 12px;
  }
  .floating-whatsapp {
    bottom: 16px;
    left: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
  [dir="ltr"] .floating-whatsapp {
    left: auto;
    right: 16px;
  }
}

