/* ═══════════════════════════════════════════════════════════════
   OPPOSITION INTERNATIONAL — STRENGTHENING DEMOCRACY WORLDWIDE
   MODERN LIGHT THEME DESIGN 2024
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

/* ═══════════════════ CSS VARIABLES ═══════════════════ */
:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Light Theme */
  --white: #ffffff;
  --light: #fafafa;
  --light-2: #f5f5f5;
  --light-3: #eeeeee;
  --light-4: #e0e0e0;
  --gray: #666666;
  --dark-gray: #333333;
  --black: #000000;

  /* Brand Colors */
  --red: #ed1c24;
  --red-dark: #c41920;
  --red-light: #fde8e9;
  --secondary: #005aab;
  --secondary-dark: #004080;
  --secondary-light: #e8f0fa;
  --orange: #005aab;
  --yellow: #fdb714;
  --yellow-dark: #e5a30f;
  --yellow-light: #fef6e4;
  --accent: #fdb714;

  --container: 1400px;
  --gap: 20px;
}

/* ═══════════════════ ICONIFY ICON DEFAULTS ═══════════════════ */
iconify-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/* ═══════════════════ RESET ═══════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ═══════════════════ UTILITIES ═══════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ═══════════════════ NAVIGATION ═══════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.logo span {
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--black);
  background: var(--light-2);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(229, 57, 53, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--light-4);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ═══════════════════ DROPDOWN MENUS ═══════════════════ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > .nav-link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-link::after,
.nav-dropdown.open > .nav-link::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1010;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--light-2);
  color: var(--black);
}

.dropdown-menu a.active {
  color: var(--secondary);
  background: var(--secondary-light);
}

.dropdown-menu .dropdown-label {
  padding: 8px 16px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-5);
  pointer-events: none;
}

.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--light-3);
  margin: 4px 8px;
}

.dropdown-menu iconify-icon {
  font-size: 1.1rem;
  color: var(--secondary);
}

/* ═══════════════════ HERO SECTION ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.04) 0%, transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: 32px;
  border: 1px solid var(--light-4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--black);
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 24px;
  background: var(--white);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-floating {
  position: absolute;
  top: 40px;
  right: -60px;
  width: 200px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-floating-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--white);
}

.hero-floating-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ═══════════════════ SECTION COMMON ═══════════════════ */
.section {
  padding: 120px 0;
}

.section-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--secondary-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--black);
}

.section-text {
  font-size: 1.125rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════ BENTO GRID ═══════════════════ */
.bento {
  background: var(--light);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: var(--gap);
}

.bento-item {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.bento-item:hover {
  border-color: var(--light-4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bento-item.large {
  grid-column: span 2;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-icon {
  width: 64px;
  height: 64px;
  background: var(--light-2);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.bento-text {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  flex: 1;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--secondary);
  transition: gap 0.3s ease;
}

.bento-link:hover {
  gap: 12px;
}

.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transition: all 0.4s ease;
}

.bento-item:hover .bento-bg {
  opacity: 0.2;
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--white) 0%, transparent 30%, var(--white) 100%);
  z-index: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ═══════════════════ IMPACT NUMBERS ═══════════════════ */
.impact {
  background: var(--light);
  border-top: 1px solid var(--light-3);
  border-bottom: 1px solid var(--light-3);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.impact-item {
  text-align: center;
  padding: 40px 20px;
}

.impact-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--black), var(--gray));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.impact-label {
  font-size: 0.9375rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════ CAMPAIGNS / PROJECTS ═══════════════════ */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.campaign-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.campaign-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.campaign-card:hover .campaign-image {
  transform: scale(1.1);
}

.campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.campaign-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  color: var(--white);
}

.campaign-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--secondary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--white);
}

.campaign-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.campaign-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  max-width: 400px;
}

/* ═══════════════════ TEAM ═══════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.team-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.team-card:hover {
  border-color: var(--light-4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  aspect-ratio: 1;
  background: var(--light-2);
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.team-role {
  color: var(--gray);
  font-size: 0.875rem;
}

.team-bio {
  color: var(--gray);
  font-size: 0.875rem;
  margin-top: 8px;
  line-height: 1.5;
}

/* ═══════════════════ EVENTS ═══════════════════ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.event-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  padding: 32px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--light-3);
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.event-card:hover {
  border-color: var(--light-4);
  background: var(--light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-date {
  text-align: center;
  padding: 20px;
  background: var(--light-2);
  border-radius: 16px;
}

.event-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.event-month {
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.event-info p {
  color: var(--gray);
  font-size: 0.9375rem;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

/* ═══════════════════ NEWS / BLOG ═══════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.news-card {
  display: block;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}

.news-card:hover {
  border-color: var(--light-4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-card .news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image {
  transform: scale(1.05);
}

.news-card .news-overlay {
  display: none;
}

.news-card .news-content {
  padding: 24px;
}

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow-light);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.news-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--black);
}

.news-excerpt {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--gray);
}

.news-category {
  color: var(--secondary);
  font-weight: 600;
}

/* ═══════════════════ CTA SECTION ═══════════════════ */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  z-index: 0;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, white 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn-primary {
  background: var(--accent);
  color: var(--black);
}

.cta .btn-primary:hover {
  background: var(--white);
  color: var(--secondary);
}

.cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.cta .btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

/* ═══════════════════ NEWSLETTER ═══════════════════ */
.newsletter {
  background: var(--light);
  padding: 80px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
}

.newsletter-text {
  color: var(--gray);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  max-width: 320px;
  height: 56px;
  padding: 0 24px;
  background: var(--white);
  border: 1px solid var(--light-4);
  border-radius: 100px;
  color: var(--black);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: var(--gray);
}

.newsletter-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 90, 171, 0.1);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  color: var(--white);
}

.social-link:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ═══════════════════ PAGE HERO ═══════════════════ */
.page-hero {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 90, 171, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(253, 183, 20, 0.06) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--secondary);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--secondary-dark);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--black);
}

.page-text {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

/* ═══════════════════ FORMS ═══════════════════ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--light-4);
  border-radius: 12px;
  color: var(--black);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 90, 171, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ═══════════════════ CARDS COMMON ═══════════════════ */
.card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--light-3);
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

/* ═══════════════════ ABOUT PAGE ═══════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 80px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--light-3);
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.value-card:hover {
  border-color: var(--light-4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--secondary-light);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--secondary);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--black);
}

.value-text {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ═══════════════════ DONATE PAGE ═══════════════════ */
.donate-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.amount-btn {
  padding: 16px;
  background: var(--light-2);
  border: 2px solid var(--light-4);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.impact-card {
  padding: 20px;
  background: var(--light-2);
  border-radius: 12px;
  margin-top: 16px;
}

.impact-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.impact-text {
  color: var(--gray);
  font-size: 0.9375rem;
}

/* ═══════════════════ CONTACT PAGE ═══════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  padding: 24px;
  background: var(--light-2);
  border-radius: 16px;
}

.contact-item-title {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.contact-item-value {
  color: var(--gray);
}

/* ═══════════════════ ARTICLE / SINGLE ═══════════════════ */
.article {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.article-featured {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
  aspect-ratio: 21/9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.article-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.article-content p {
  color: var(--dark-gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 48px 0 24px;
  color: var(--black);
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
  color: var(--dark-gray);
}

.article-content li {
  margin-bottom: 8px;
}

/* ═══════════════════ EVENT DETAIL ═══════════════════ */
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.event-sidebar {
  position: sticky;
  top: 120px;
}

.event-meta-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.event-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-meta-label {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 500;
}

.event-meta-value {
  font-weight: 600;
  color: var(--black);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-item.tall {
    grid-row: span 1;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-detail-grid {
    grid-template-columns: 1fr;
  }

  .event-sidebar {
    position: static;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-floating {
    display: none;
  }

  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaigns-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .donate-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 1001;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 16px 32px;
  }

  .nav-dropdown > .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-radius: 12px;
    background: var(--light);
    min-width: auto;
    width: 80%;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav-dropdown.open > .dropdown-menu {
    max-height: 400px;
    padding: 6px;
    transform: none;
  }

  .dropdown-menu a {
    justify-content: center;
    font-size: 1rem;
    padding: 12px 20px;
  }

  .dropdown-menu .dropdown-label {
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-cta {
    display: none;
  }

  .event-card {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }

  .event-card .btn {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item.large {
    grid-column: span 1;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .events-list {
    gap: 16px;
  }

  .event-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .event-date {
    margin: 0 auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(-150%);
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ═══════════════════ URGENT BANNER ═══════════════════ */
.urgent-banner {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 12px 0;
  position: relative;
  z-index: 1001;
}

.urgent-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.urgent-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.urgent-badge {
  background: var(--white);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.urgent-text {
  font-size: 0.9375rem;
}

.urgent-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.urgent-link:hover {
  text-decoration: none;
}

.urgent-close {
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.urgent-close:hover {
  opacity: 1;
}

.urgent-banner.hidden {
  display: none;
}

/* ═══════════════════ PARTNERS SECTION ═══════════════════ */
.partners {
  padding: 60px 0;
  background: var(--light);
  border-bottom: 1px solid var(--light-3);
}

.partners-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

/* ═══════════════════ TAKE ACTION SECTION ═══════════════════ */
.take-action {
  background: var(--light);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.action-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
}

.action-card:hover {
  border-color: var(--light-4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.action-card.featured {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-color: transparent;
  color: var(--white);
}

.action-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 90, 171, 0.3);
}

.action-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.action-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.action-text {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.action-card.featured .action-text {
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════ STORIES / TESTIMONIALS ═══════════════════ */
.stories {
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.story-card {
  background: var(--light);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
}

.story-card:hover {
  border-color: var(--light-4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-quote {
  margin-bottom: 24px;
}

.story-quote p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark-gray);
  font-style: italic;
}

.story-quote p::before {
  content: '"';
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.story-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.story-role {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.story-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--secondary-light);
  color: var(--secondary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ═══════════════════ REPORTS SECTION ═══════════════════ */
.reports {
  background: var(--light);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.report-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  display: block;
}

.report-card:hover {
  border-color: var(--light-4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.report-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.report-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.report-card:hover .report-cover img {
  transform: scale(1.05);
}

.report-type {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

.report-content {
  padding: 24px;
}

.report-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.report-meta {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.report-excerpt {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

.reports-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════ EVENTS PREVIEW ═══════════════════ */
.events-preview {
  background: var(--white);
}

.events-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.events-preview-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-preview-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
}

.event-preview-card:hover {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.event-preview-date {
  min-width: 70px;
  text-align: center;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
}

.event-preview-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.event-preview-month {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.event-preview-info h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.event-preview-info p {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ═══════════════════ FAQ SECTION ═══════════════════ */
.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════ AWARDS SECTION ═══════════════════ */
.awards {
  background: var(--light);
}

.awards-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.award-item {
  text-align: center;
  padding: 32px;
}

.award-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.award-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--black);
}

.award-year {
  font-size: 0.875rem;
  color: var(--gray);
}

/* ═══════════════════ NEWSLETTER ENHANCEMENTS ═══════════════════ */
.newsletter-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--gray);
}

/* ═══════════════════ RESPONSIVE FOR NEW SECTIONS ═══════════════════ */
@media (max-width: 1024px) {
  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .reports-grid {
    grid-template-columns: 1fr;
  }

  .events-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .awards-grid {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .urgent-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .partners-grid {
    gap: 24px;
  }

  .partner-logo {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .urgent-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .urgent-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    gap: 20px;
  }

  .award-item {
    padding: 20px;
  }
}

/* ═══════════════════ TEAM SINGLE PAGE ═══════════════════ */
/* Hero */
.team-single-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.team-single-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 90, 171, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(253, 183, 20, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 90, 171, 0.03) 0%, transparent 70%);
}

/* Profile Layout */
.ts-profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 32px;
}

.ts-profile-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.ts-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-profile-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-gray);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ts-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Profile Content */
.ts-profile-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--secondary-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
}

.ts-tag-icon {
  font-size: 1rem;
}

.ts-profile-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--black);
}

.ts-profile-role {
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.ts-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.ts-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
}

.ts-meta-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.ts-profile-bio {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 640px;
}

.ts-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

/* Social Links */
.ts-social {
  display: flex;
  gap: 10px;
}

.ts-social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--light-2);
  border: 1px solid var(--light-3);
  color: var(--gray);
  transition: all 0.3s ease;
}

.ts-social-link:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 90, 171, 0.25);
}

/* ═══════════════════ DETAILS SECTION ═══════════════════ */
.ts-details-section {
  padding-top: 80px;
}

.ts-details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* Cards */
.ts-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--light-3);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.ts-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ts-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ts-card-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.ts-card-icon--orange {
  background: #fef6e4;
  color: var(--accent);
}

.ts-card-icon--blue {
  background: var(--secondary-light);
  color: var(--secondary);
}

.ts-card-icon--green {
  background: var(--secondary-light);
  color: var(--secondary);
}

.ts-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

.ts-card-body p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ts-card-body p:last-child {
  margin-bottom: 0;
}

/* Achievements */
.ts-achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ts-achievement {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
}

.ts-achievement:hover {
  border-color: var(--light-4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ts-achievement-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.ts-achievement-info h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.ts-achievement-info p {
  font-size: 0.8125rem !important;
  color: var(--gray);
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Timeline */
.ts-timeline {
  position: relative;
  padding-left: 32px;
}

.ts-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--light-4));
  border-radius: 2px;
}

.ts-timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.ts-timeline-item:last-child {
  padding-bottom: 0;
}

.ts-timeline-marker {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  z-index: 1;
}

.ts-timeline-item:first-child .ts-timeline-marker {
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 90, 171, 0.2);
}

.ts-timeline-year {
  display: inline-block;
  padding: 4px 12px;
  background: var(--yellow-light);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow-dark);
  margin-bottom: 8px;
}

.ts-timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.ts-timeline-content p {
  font-size: 0.875rem !important;
  color: var(--gray);
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* ═══════════════════ SIDEBAR ═══════════════════ */
.ts-sidebar-card {
  margin-bottom: 20px;
}

/* Facts */
.ts-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ts-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-3);
}

.ts-fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ts-fact:first-child {
  padding-top: 0;
}

.ts-fact-label {
  font-size: 0.8125rem;
  color: var(--gray);
}

.ts-fact-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

/* Tags */
.ts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ts-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--light-2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark-gray);
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
}

.ts-tag:hover {
  background: var(--secondary-light);
  color: var(--secondary);
  border-color: rgba(0, 90, 171, 0.2);
}

/* Quote */
.ts-quote-card {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border: none;
  color: var(--white);
}

.ts-quote {
  position: relative;
}

.ts-quote-icon {
  position: absolute;
  top: -8px;
  left: -4px;
  color: var(--white);
}

.ts-quote p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ts-quote cite {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Contact Card */
.ts-contact-card {
  background: var(--light);
  text-align: center;
}

.ts-contact-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.ts-contact-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Other Team Cards Link Style */
.ts-other-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════ TEAM SINGLE RESPONSIVE ═══════════════════ */
@media (max-width: 1100px) {
  .ts-profile {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .ts-details-grid {
    grid-template-columns: 1fr 320px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .ts-profile {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .ts-profile-image {
    max-width: 300px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 auto;
  }

  .ts-profile-content {
    text-align: center;
  }

  .ts-profile-meta {
    justify-content: center;
  }

  .ts-profile-bio {
    margin-left: auto;
    margin-right: auto;
  }

  .ts-profile-actions {
    justify-content: center;
  }

  .ts-social {
    justify-content: center;
  }

  .ts-details-grid {
    grid-template-columns: 1fr;
  }

  .ts-achievements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .team-single-hero {
    padding: 140px 0 60px;
  }

  .ts-profile {
    gap: 32px;
  }

  .ts-profile-image {
    max-width: 220px;
  }

  .ts-profile-actions {
    flex-direction: column;
  }

  .ts-profile-actions .btn {
    width: 100%;
  }

  .ts-card {
    padding: 24px;
  }

  .ts-achievement {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROJECT / CAMPAIGN SINGLE PAGE
═══════════════════════════════════════════════════════════════ */

/* Hero */
.ps-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 80px;
  overflow: hidden;
}

.ps-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ps-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(17, 17, 17, 0.3) 0%, 
    rgba(17, 17, 17, 0.6) 50%,
    rgba(17, 17, 17, 0.95) 100%);
}

.ps-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.ps-breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
}

.ps-breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.ps-breadcrumbs a:hover {
  color: var(--white);
}

.ps-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--secondary);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ps-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.ps-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--white);
}

.ps-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.ps-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.ps-stat {
  text-align: left;
}

.ps-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.ps-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  display: block;
}

.ps-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ps-btn-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.ps-btn-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Progress Section */
.ps-progress-section {
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.ps-progress-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--light-3);
}

.ps-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.ps-progress-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.ps-progress-label {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-left: 12px;
}

.ps-progress-percent {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.ps-progress-bar {
  width: 100%;
  height: 12px;
  background: var(--light-3);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.ps-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 100px;
  transition: width 1s ease-out;
}

.ps-progress-meta {
  display: flex;
  gap: 32px;
}

.ps-progress-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray);
}

.ps-progress-meta-item svg {
  color: var(--dark-gray);
}

/* Content Grid */
.ps-content-section {
  padding-top: 40px;
}

.ps-content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

/* Cards */
.ps-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--light-3);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.ps-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ps-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ps-card-icon {
  width: 44px;
  height: 44px;
  background: var(--secondary-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.ps-card-icon--orange {
  background: #fef6e4;
  color: var(--accent);
}

.ps-card-icon--blue {
  background: var(--secondary-light);
  color: var(--secondary);
}

.ps-card-icon--green {
  background: var(--secondary-light);
  color: var(--secondary);
}

.ps-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
}

.ps-card-body p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ps-card-body p:last-child {
  margin-bottom: 0;
}

/* Problem Grid */
.ps-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ps-problem-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--light-3);
}

.ps-problem-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  flex-shrink: 0;
}

.ps-problem-text h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.ps-problem-text p {
  font-size: 0.8125rem !important;
  color: var(--gray);
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* Features */
.ps-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ps-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
}

.ps-feature:hover {
  border-color: var(--light-4);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ps-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  flex-shrink: 0;
  border: 1px solid var(--light-3);
}

.ps-feature-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.ps-feature-content p {
  font-size: 0.875rem !important;
  color: var(--gray);
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* Stories */
.ps-stories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ps-story {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--light-3);
  transition: all 0.3s ease;
}

.ps-story:hover {
  border-color: var(--light-4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ps-story-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ps-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-story-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.ps-story-content p {
  font-size: 0.875rem !important;
  color: var(--gray);
  line-height: 1.6 !important;
  margin-bottom: 10px !important;
}

.ps-story-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--secondary-light);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
}

/* Gallery */
.ps-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 140px);
  gap: 12px;
}

.ps-gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

.ps-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ps-gallery-item:hover img {
  transform: scale(1.1);
}

.ps-gallery-large {
  grid-row: span 2;
}

/* ═══════════════════ PROJECT SIDEBAR ═══════════════════ */
.ps-sidebar-card {
  margin-bottom: 20px;
}

/* Donate Card */
.ps-donate-card {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  text-align: center;
  border: 2px solid var(--light-3);
}

.ps-donate-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.ps-donate-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.ps-donate-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.ps-amount-btn {
  padding: 12px 8px;
  border-radius: 12px;
  border: 2px solid var(--light-4);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ps-amount-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ps-amount-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.ps-donate-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--gray);
}

/* Info List */
.ps-info-list {
  display: flex;
  flex-direction: column;
}

.ps-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-3);
}

.ps-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ps-info-item:first-child {
  padding-top: 0;
}

.ps-info-label {
  font-size: 0.8125rem;
  color: var(--gray);
}

.ps-info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.ps-info-value--urgent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: var(--red-light);
  border-radius: 100px;
  color: var(--red);
  font-size: 0.75rem;
}

.ps-info-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Share Buttons */
.ps-share-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ps-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ps-share-twitter {
  background: #e8f4fd;
  color: #1da1f2;
}

.ps-share-twitter:hover {
  background: #1da1f2;
  color: var(--white);
}

.ps-share-facebook {
  background: #e8f0fe;
  color: #1877f2;
}

.ps-share-facebook:hover {
  background: #1877f2;
  color: var(--white);
}

.ps-share-linkedin {
  background: #e8f4f8;
  color: #0a66c2;
}

.ps-share-linkedin:hover {
  background: #0a66c2;
  color: var(--white);
}

.ps-share-email {
  background: var(--light-2);
  color: var(--dark-gray);
}

.ps-share-email:hover {
  background: var(--dark-gray);
  color: var(--white);
}

/* Contact Card */
.ps-contact-card {
  background: var(--light);
  text-align: center;
}

.ps-contact-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.ps-contact-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ═══════════════════ PROJECT SINGLE RESPONSIVE ═══════════════════ */
@media (max-width: 1100px) {
  .ps-content-grid {
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }

  .ps-hero-stats {
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .ps-hero {
    min-height: auto;
    padding: 140px 0 60px;
  }

  .ps-content-grid {
    grid-template-columns: 1fr;
  }

  .ps-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ps-sidebar-card {
    margin-bottom: 0;
  }

  .ps-donate-card {
    grid-column: span 2;
  }

  .ps-problem-grid {
    grid-template-columns: 1fr;
  }

  .ps-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 120px);
  }

  .ps-gallery-large {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .ps-hero {
    padding: 120px 0 50px;
  }

  .ps-hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .ps-stat-number {
    font-size: 2rem;
  }

  .ps-hero-actions {
    flex-direction: column;
  }

  .ps-hero-actions .btn {
    width: 100%;
  }

  .ps-progress-card {
    padding: 24px;
  }

  .ps-progress-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ps-progress-meta {
    flex-direction: column;
    gap: 12px;
  }

  .ps-sidebar {
    grid-template-columns: 1fr;
  }

  .ps-donate-card {
    grid-column: span 1;
  }

  .ps-donate-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-card {
    padding: 24px;
  }

  .ps-feature {
    flex-direction: column;
    text-align: center;
  }

  .ps-feature-icon {
    margin: 0 auto;
  }

  .ps-story {
    flex-direction: column;
    text-align: center;
  }

  .ps-story-image {
    margin: 0 auto;
  }

  .ps-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 120px);
  }

  .ps-share-buttons {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   INDEX VIDEO PAGE (index-video.html) — UNIQUE COMPONENTS
═══════════════════════════════════════════════════════════════ */

/* ═══════════════ VIDEO HERO ═══════════════ */
.v3-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.v3-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.v3-hero-video video,
.v3-hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v3-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(17,17,17,0.5) 0%,
    rgba(17,17,17,0.3) 40%,
    rgba(17,17,17,0.85) 100%);
}

.v3-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 160px 0 120px;
}

.v3-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
}

.v3-badge-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.v3-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.v3-hero-title span {
  background: linear-gradient(135deg, #005aab, #fdb714);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v3-hero-text {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.v3-hero-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.v3-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.v3-play-btn:hover {
  gap: 18px;
}

.v3-play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.v3-play-btn:hover .v3-play-circle {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.1);
}

.v3-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.v3-scroll-line {
  width: 2px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.v3-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ═══════════════ LIVE TICKER ═══════════════ */
.v3-ticker {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.v3-ticker-track {
  overflow: hidden;
}

.v3-ticker-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.v3-ticker-item {
  font-size: 0.875rem;
  color: var(--white);
  padding: 0 24px;
}

.v3-ticker-item strong {
  color: #fdb714;
}

.v3-ticker-divider {
  color: rgba(255,255,255,0.3);
  font-size: 0.625rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════ ABOUT SPLIT ═══════════════ */
.v3-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.v3-about-media {
  position: relative;
}

.v3-about-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.v3-about-image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.v3-about-image-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 4px solid var(--white);
}

.v3-about-image-float img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.v3-about-stat-float {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,90,171,0.3);
}

.v3-about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.v3-about-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
  opacity: 0.85;
}

.v3-about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.v3-about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.v3-about-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--yellow-dark);
}

.v3-about-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.v3-about-feature p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ═══════════════ ANIMATED COUNTERS ═══════════════ */
.v3-counters {
  position: relative;
  padding: 80px 0;
  background: var(--black);
  overflow: hidden;
}

.v3-counters-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,90,171,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(253,183,20,0.1) 0%, transparent 50%);
}

.v3-counters-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.v3-counter {
  text-align: center;
  padding: 32px 20px;
}

.v3-counter-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(0,90,171,0.15);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.v3-counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.v3-counter-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════ TABBED CAMPAIGNS ═══════════════ */
.v3-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.v3-tab {
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--light-2);
  color: var(--gray);
  border: 1px solid var(--light-3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-tab:hover {
  color: var(--black);
  background: var(--light-3);
}

.v3-tab.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.v3-campaigns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.v3-campaign-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  display: block;
}

.v3-campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--light-4);
}

.v3-campaign-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.v3-campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.v3-campaign-card:hover .v3-campaign-image img {
  transform: scale(1.1);
}

.v3-campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.v3-campaign-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.v3-badge-urgent { background: var(--red); color: var(--white); }
.v3-badge-ongoing { background: var(--secondary); color: var(--white); }
.v3-badge-global { background: var(--accent); color: var(--black); }

.v3-campaign-content {
  padding: 20px;
}

.v3-campaign-content h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.v3-campaign-content p {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.v3-campaign-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v3-campaign-progress {
  flex: 1;
  height: 6px;
  background: var(--light-3);
  border-radius: 100px;
  overflow: hidden;
}

.v3-campaign-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 100px;
}

.v3-campaign-percent {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  white-space: nowrap;
}

/* ═══════════════ TESTIMONIAL CAROUSEL ═══════════════ */
.v3-testimonial-slider {
  max-width: 100%;
  overflow: hidden;
}

.v3-testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.v3-testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--light-3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.v3-testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.v3-testimonial-text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.v3-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v3-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.v3-testimonial-author h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
}

.v3-testimonial-author p {
  font-size: 0.75rem;
  color: var(--gray);
}

.v3-testimonial-badge {
  margin-left: auto;
  padding: 4px 12px;
  background: var(--secondary-light);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--secondary);
}

.v3-testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.v3-testimonial-prev,
.v3-testimonial-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--light-4);
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-testimonial-prev:hover,
.v3-testimonial-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.v3-testimonial-dots {
  display: flex;
  gap: 8px;
}

.v3-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-dot.active {
  background: var(--secondary);
  width: 28px;
  border-radius: 100px;
}

/* ═══════════════ MAP SECTION ═══════════════ */
.v3-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.v3-map-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.v3-map-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.v3-map-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

.v3-map-visual {
  position: relative;
}

.v3-map-placeholder {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.v3-map-placeholder img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.v3-map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
}

.v3-pin-pulse {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(237,28,36,0.6);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% { box-shadow: 0 0 0 0 rgba(237,28,36,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(237,28,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(237,28,36,0); }
}

/* ═══════════════ TIMELINE ═══════════════ */
.v3-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.v3-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary), var(--accent), var(--light-4));
  transform: translateX(-50%);
  border-radius: 3px;
}

.v3-timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
}

.v3-timeline-item:last-child {
  margin-bottom: 0;
}

.v3-timeline-left {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.v3-timeline-right {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.v3-timeline-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--light-3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.v3-timeline-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.v3-timeline-year {
  display: inline-block;
  padding: 4px 14px;
  background: var(--yellow-light);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}

.v3-timeline-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.v3-timeline-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

.v3-timeline-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 4px solid var(--secondary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* ═══════════════ TEAM CARDS WITH HOVER ═══════════════ */
.v3-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.v3-team-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  display: block;
}

.v3-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.v3-team-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.v3-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.v3-team-card:hover .v3-team-image img {
  transform: scale(1.1);
}

.v3-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,90,171,0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.v3-team-card:hover .v3-team-overlay {
  opacity: 1;
}

.v3-team-social {
  display: flex;
  gap: 12px;
}

.v3-team-social span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-team-social span:hover {
  background: var(--white);
  color: var(--secondary);
}

.v3-team-info {
  padding: 20px;
  text-align: center;
}

.v3-team-info h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.v3-team-info p {
  font-size: 0.8125rem;
  color: var(--gray);
}

/* ═══════════════ DONATION SECTION ═══════════════ */
.v3-donate-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 50%, #0a1628 100%);
}

.v3-donate-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, white 1px, transparent 1px);
  background-size: 60px 60px;
}

.v3-donate-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.v3-donate-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.v3-donate-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.v3-donate-impact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v3-donate-impact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}

.v3-donate-impact-amount {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.v3-donate-impact-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.v3-donate-widget {
  display: flex;
  justify-content: center;
}

.v3-donate-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.v3-donate-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  margin-bottom: 24px;
}

.v3-donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.v3-donate-btn {
  padding: 14px 8px;
  border-radius: 12px;
  border: 2px solid var(--light-4);
  background: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-donate-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.v3-donate-btn--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.v3-donate-frequency {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  background: var(--light-2);
  border-radius: 12px;
  padding: 4px;
}

.v3-freq-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-freq-btn--active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.v3-donate-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ═══════════════ NEWS MASONRY ═══════════════ */
.v3-news-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.v3-news-card {
  display: block;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--light-3);
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.v3-news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--light-4);
}

.v3-news-featured {
  grid-row: span 2;
}

.v3-news-image {
  position: relative;
  overflow: hidden;
}

.v3-news-featured .v3-news-image {
  height: 100%;
  min-height: 300px;
}

.v3-news-featured .v3-news-image img {
  position: absolute;
  inset: 0;
}

.v3-news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.v3-news-card:hover .v3-news-image img {
  transform: scale(1.1);
}

.v3-news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.v3-news-featured .v3-news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
  color: var(--white);
}

.v3-news-featured .v3-news-content h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.v3-news-featured .v3-news-content p {
  color: rgba(255,255,255,0.85);
}

.v3-news-featured .v3-news-date {
  color: rgba(255,255,255,0.7);
}

.v3-news-content {
  padding: 20px;
}

.v3-news-content h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.v3-news-content p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.v3-news-date {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ═══════════════ NEWSLETTER ═══════════════ */
.v3-newsletter {
  padding: 80px 0;
}

.v3-newsletter-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--light);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--light-3);
}

.v3-newsletter-left {
  flex: 1;
}

.v3-newsletter-left h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.v3-newsletter-left p {
  font-size: 0.9375rem;
  color: var(--gray);
}

.v3-newsletter-right {
  flex: 1;
}

.v3-newsletter-form {
  display: flex;
  gap: 12px;
}

.v3-newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--light-4);
  border-radius: 12px;
  font-size: 0.9375rem;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: all 0.3s ease;
}

.v3-newsletter-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,90,171,0.1);
}

.v3-newsletter-note {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ═══════════════ INDEX-VIDEO RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
  .v3-campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v3-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v3-counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .v3-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .v3-about-image-float {
    display: none;
  }

  .v3-map-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .v3-donate-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .v3-donate-impact-item {
    justify-content: center;
  }

  .v3-testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }

  .v3-timeline-line { display: none; }
  .v3-timeline-dot { display: none; }
  .v3-timeline-left,
  .v3-timeline-right {
    padding: 0;
    justify-content: stretch;
  }
  .v3-timeline-item {
    margin-bottom: 20px;
  }
  .v3-timeline-card {
    width: 100%;
  }

  .v3-newsletter-card {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .v3-news-masonry {
    grid-template-columns: 1fr;
  }

  .v3-news-featured {
    grid-row: span 1;
  }

  .v3-news-featured .v3-news-image {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .v3-hero-content {
    padding: 140px 0 100px;
  }

  .v3-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .v3-campaigns-grid {
    grid-template-columns: 1fr;
  }

  .v3-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v3-counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .v3-counter {
    padding: 20px 12px;
  }

  .v3-testimonial-card {
    flex: 0 0 100%;
  }

  .v3-newsletter-form {
    flex-direction: column;
  }

  .v3-donate-card {
    padding: 28px;
  }

  .v3-donate-amounts {
    grid-template-columns: repeat(3, 1fr);
  }

  .v3-map-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
