/* ============================================
   NGO WEBSITE - MAIN STYLESHEET
   Color: Orange/Saffron Theme like Smile Foundation
   ============================================ */

:root {
  --primary: #f26522;
  --primary-dark: #d4541a;
  --primary-light: #ff8c4a;
  --secondary: #1a3c6e;
  --secondary-light: #2a5298;
  --accent: #ffc107;
  --text: #2d2d2d;
  --text-light: #666;
  --text-muted: #999;
  --bg: #fff;
  --bg-light: #f8f9fa;
  --bg-orange: #fff5ef;
  --border: #e8e8e8;
  --success: #28a745;
  --danger: #dc3545;
  --font-main: 'Nunito', sans-serif;
  --font-heading: 'Merriweather', serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(242,101,34,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--bg); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

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

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--secondary);
  color: #cdd8ea;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left span { margin-right: 20px; }
.topbar-left span i { color: var(--primary); margin-right: 6px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { color: #cdd8ea; }
.topbar-right a:hover { color: var(--primary); }
.btn-donate-top {
  background: var(--primary);
  color: #fff !important;
  padding: 5px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
}
.btn-donate-top:hover { background: var(--primary-dark); }

/* ============================================
   HEADER
   ============================================ */
.main-header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
}
.logo-name { display: block; font-size: 20px; font-weight: 900; color: var(--secondary); line-height: 1.2; }
.logo-tag { display: block; font-size: 11px; color: var(--text-muted); font-weight: 600; }

.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  border-radius: 8px;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--primary); }
.main-nav ul li a.active { background: var(--bg-orange); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: 12px;
  min-width: 180px;
  padding: 8px 0;
  border-top: 3px solid var(--primary);
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown .dropdown li a {
  padding: 10px 20px;
  border-radius: 0;
  font-size: 13px;
}
.has-dropdown .dropdown li a:hover { background: var(--bg-orange); color: var(--primary); }

.btn-donate-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(242,101,34,0.3);
}
.btn-donate-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242,101,34,0.4);
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text); transition: var(--transition); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-swiper { position: relative; }
.hero-slide {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--secondary);
}
.hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,60,110,0.85) 0%, rgba(26,60,110,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  padding: 60px 0;
  color: #fff;
}
.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.9;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary);
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: #fff; color: var(--secondary); }

.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next,
.swiper-button-prev { color: var(--primary) !important; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 30px; margin-bottom: 10px; opacity: 0.85; display: block; }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  display: block;
  line-height: 1.1;
}
.stat-label { font-size: 13px; opacity: 0.85; font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: var(--bg-orange);
  color: var(--primary);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 14px;
  font-weight: 700;
}
.section-header p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ============================================
   CAMPAIGN CARDS
   ============================================ */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.campaign-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.campaign-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.campaign-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.campaign-card:hover .campaign-card-img img { transform: scale(1.05); }
.campaign-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.campaign-card-body { padding: 22px; }
.campaign-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.campaign-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Progress Bar */
.progress-wrap { margin-bottom: 14px; }
.progress-bar-bg {
  background: #eee;
  border-radius: 10px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  transition: width 1s ease;
}
.progress-numbers {
  display: flex; justify-content: space-between;
  font-size: 13px;
}
.progress-raised { font-weight: 800; color: var(--primary); }
.progress-goal { color: var(--text-muted); }
.progress-percent {
  display: inline-block;
  background: var(--bg-orange);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
}

.campaign-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.campaign-donors { font-size: 13px; color: var(--text-muted); }
.campaign-donors i { color: var(--primary); margin-right: 4px; }
.btn-donate-card {
  background: var(--primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
}
.btn-donate-card:hover { background: var(--primary-dark); color: #fff; }

/* View All Button */
.text-center { text-align: center; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid var(--primary);
  margin-top: 40px;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.impact-text h2 { font-family: var(--font-heading); font-size: 36px; margin-bottom: 18px; font-weight: 700; }
.impact-text p { opacity: 0.85; line-height: 1.7; margin-bottom: 24px; font-size: 16px; }
.impact-list { display: flex; flex-direction: column; gap: 12px; }
.impact-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
}
.impact-list li i { color: var(--primary); font-size: 18px; }
.impact-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.impact-num-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.impact-num-card:nth-child(2) { transform: translateY(20px); }
.impact-num-card:nth-child(4) { transform: translateY(20px); }
.impact-num { font-size: 40px; font-weight: 900; color: var(--primary); display: block; }
.impact-num-label { font-size: 13px; opacity: 0.75; margin-top: 4px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.how-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.how-card:hover { box-shadow: var(--shadow-hover); border-color: var(--primary); }
.how-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px;
}
.how-icon {
  width: 70px; height: 70px;
  background: var(--bg-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 10px auto 18px;
}
.how-icon i { font-size: 28px; color: var(--primary); }
.how-card h4 { font-size: 16px; font-weight: 800; color: var(--secondary); margin-bottom: 8px; }
.how-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-light); }
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  margin: 10px;
}
.testi-quote { color: var(--primary); font-size: 40px; line-height: 1; margin-bottom: 10px; }
.testi-text { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-orange);
  display: flex; align-items: center; justify-content: center;
}
.testi-avatar i { color: var(--primary); font-size: 24px; }
.testi-name { font-weight: 800; color: var(--secondary); font-size: 15px; }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   PARTNERS / TRUST LOGOS
   ============================================ */
.partners-section { background: var(--bg-light); padding: 50px 0; }
.partners-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }
.partner-item {
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
}
.partner-item:hover { opacity: 1; filter: none; color: var(--primary); }

/* ============================================
   PAGE HERO / BREADCRUMB
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 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");
}
.page-hero h1 { font-family: var(--font-heading); font-size: 42px; font-weight: 700; margin-bottom: 12px; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; font-size: 14px; opacity: 0.8; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 10px; }

/* ============================================
   CAMPAIGNS PAGE FILTERS
   ============================================ */
.campaign-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   CAMPAIGN DETAIL PAGE
   ============================================ */
.campaign-detail-section { padding: 60px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }

.detail-main .campaign-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
}

/* Sticky Donation Box */
.donation-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 28px;
  position: sticky;
  top: 90px;
  border-top: 4px solid var(--primary);
}
.donation-box h3 { font-size: 20px; font-weight: 800; color: var(--secondary); margin-bottom: 6px; }
.donation-box .camp-location { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.donation-box .camp-location i { color: var(--primary); }

.progress-big { margin-bottom: 20px; }
.progress-big .progress-bar-bg { height: 10px; margin-bottom: 10px; }
.progress-stats { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.ps-raised { font-size: 22px; font-weight: 900; color: var(--primary); }
.ps-goal { font-size: 14px; color: var(--text-muted); }
.ps-percent { font-size: 18px; font-weight: 900; color: var(--secondary); }
.meta-row { display: flex; gap: 20px; margin-bottom: 20px; }
.meta-item { text-align: center; flex: 1; background: var(--bg-light); padding: 12px; border-radius: 10px; }
.meta-num { font-size: 20px; font-weight: 900; color: var(--secondary); display: block; }
.meta-lbl { font-size: 12px; color: var(--text-muted); }

/* Amount Buttons */
.amount-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.amt-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.amt-btn.active, .amt-btn:hover { background: var(--bg-orange); border-color: var(--primary); color: var(--primary); }
.amount-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-main);
  margin-bottom: 14px;
  outline: none;
  transition: var(--transition);
}
.amount-input:focus { border-color: var(--primary); }
.donate-form .form-group { margin-bottom: 12px; }
.donate-form input, .donate-form select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}
.donate-form input:focus, .donate-form select:focus { border-color: var(--primary); }
.btn-donate-big {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-main);
  box-shadow: 0 4px 15px rgba(242,101,34,0.3);
  transition: var(--transition);
  margin-bottom: 10px;
}
.btn-donate-big:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242,101,34,0.4); }
.secure-note { text-align: center; font-size: 12px; color: var(--text-muted); }
.secure-note i { color: var(--success); margin-right: 4px; }

/* Donor List */
.donor-list { margin-top: 24px; }
.donor-list h4 { font-size: 16px; font-weight: 800; color: var(--secondary); margin-bottom: 14px; border-bottom: 2px solid var(--border); padding-bottom: 10px; }
.donor-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.donor-avatar {
  width: 36px; height: 36px;
  background: var(--bg-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.donor-info .donor-name { font-size: 13px; font-weight: 700; color: var(--text); }
.donor-info .donor-time { font-size: 11px; color: var(--text-muted); }
.donor-amount { margin-left: auto; font-weight: 800; color: var(--primary); font-size: 14px; }

/* Campaign Content Tabs */
.campaign-tabs { margin-top: 30px; }
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-main);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content h3 { color: var(--secondary); font-size: 20px; margin-bottom: 14px; }
.tab-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.tab-content ul { padding-left: 20px; margin-bottom: 14px; }
.tab-content ul li { color: var(--text-light); line-height: 1.8; margin-bottom: 4px; }

/* Share Campaign */
.share-campaign { margin-top: 20px; }
.share-campaign h4 { font-size: 14px; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.share-btns { display: flex; gap: 8px; }
.share-btn {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  color: #fff;
}
.share-fb { background: #3b5998; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-copy { background: var(--text-muted); }
.share-btn:hover { opacity: 0.85; color: #fff; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,60,110,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-img-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--primary);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-num { font-size: 36px; font-weight: 900; display: block; }
.about-img-badge .badge-lbl { font-size: 12px; font-weight: 700; opacity: 0.85; }
.about-text h2 { font-family: var(--font-heading); font-size: 36px; color: var(--secondary); margin-bottom: 18px; }
.about-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.value-card { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { color: var(--primary); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.value-card h5 { font-size: 15px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--text-light); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-img { height: 220px; overflow: hidden; background: var(--bg-orange); display: flex; align-items: center; justify-content: center; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img i { font-size: 60px; color: var(--primary); opacity: 0.4; }
.team-info { padding: 18px; }
.team-info h4 { font-size: 16px; font-weight: 800; color: var(--secondary); margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 24px; font-weight: 800; color: var(--secondary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.contact-info-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.contact-info-card > p { opacity: 0.8; margin-bottom: 30px; }
.ci-items { display: flex; flex-direction: column; gap: 24px; }
.ci-item { display: flex; gap: 16px; }
.ci-icon {
  width: 46px; height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-text h5 { font-size: 13px; opacity: 0.7; margin-bottom: 4px; font-weight: 600; }
.ci-text p { font-size: 15px; font-weight: 700; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  background: var(--primary);
  padding: 60px 0;
  color: #fff;
}
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.newsletter-text h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.newsletter-text p { opacity: 0.85; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 500px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
}
.newsletter-form button {
  padding: 14px 28px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-main);
  white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer { background: #111827; color: #9ca3af; }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.footer-logo span { color: #fff; font-size: 18px; font-weight: 800; }
.footer-col > p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: #9ca3af; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { color: var(--primary); font-size: 10px; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-item { display: flex; gap: 12px; align-items: flex-start; }
.fc-item i { color: var(--primary); font-size: 15px; margin-top: 2px; }
.fc-item span { font-size: 13px; line-height: 1.5; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.footer-badges span {
  font-size: 11px;
  background: rgba(242,101,34,0.15);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-bottom p { font-size: 13px; }
.secure-badge { font-size: 13px; color: #9ca3af; }
.secure-badge i { color: var(--success); margin-right: 4px; }

/* ============================================
   DONATE PAGE
   ============================================ */
.donate-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.donate-info h2 { font-family: var(--font-heading); font-size: 36px; color: var(--secondary); margin-bottom: 16px; }
.donate-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.donate-benefits { display: flex; flex-direction: column; gap: 14px; }
.db-item { display: flex; gap: 14px; align-items: flex-start; }
.db-icon { color: var(--primary); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.db-item h5 { font-size: 15px; font-weight: 800; color: var(--secondary); margin-bottom: 2px; }
.db-item p { font-size: 13px; color: var(--text-light); }

/* ============================================
   ALERTS & MESSAGES
   ============================================ */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #cce5ff; color: #004085; border: 1px solid #b8daff; }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-wrap { max-width: 600px; margin: 80px auto; text-align: center; }
.thankyou-icon { font-size: 80px; color: var(--success); margin-bottom: 20px; }
.thankyou-wrap h2 { font-family: var(--font-heading); font-size: 36px; color: var(--secondary); margin-bottom: 14px; }
.thankyou-wrap p { color: var(--text-light); font-size: 16px; line-height: 1.7; margin-bottom: 30px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .campaigns-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .donation-box { position: relative; top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav { display: none; position: fixed; inset: 0; background: #fff; flex-direction: column; justify-content: center; align-items: center; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; text-align: center; gap: 10px; }
  .main-nav ul li a { font-size: 18px; padding: 12px 20px; }
  .hamburger { display: flex; position: relative; z-index: 1000; }
  .hero-content h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .campaigns-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; }
  .btn-donate-header span { display: none; }
  .section-header h2 { font-size: 26px; }
  .about-img-badge { right: 10px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .hero-btns { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .impact-num { font-size: 30px; }
}
