/* ============================================
   BEZUBAAN PUBLIC WELFARE TRUST - Main CSS
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --primary: #e8713c;
  --primary-dark: #c9572a;
  --primary-light: #f4906a;
  --primary-bg: #fff5f0;
  --black: #111111;
  --dark: #222222;
  --gray-dark: #444444;
  --gray: #777777;
  --gray-light: #aaaaaa;
  --border: #e5e5e5;
  --bg-light: #f8f8f8;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-orange: 0 8px 30px rgba(232,113,60,0.30);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-main);
}

input, textarea, select {
  font-family: var(--font-main);
  outline: none;
}

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

.section-pad {
  padding: 90px 0;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
  font-family: var(--font-alt);
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,113,60,0.40);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}

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

.btn-dark {
  background: var(--black);
  color: var(--white);
}

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

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

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

/* ============================================
   STICKY DONATE BUTTON
   ============================================ */
.sticky-donate {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 30px rgba(232,113,60,0.50);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.sticky-donate:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
  animation: none;
}

.sticky-donate svg {
  width: 18px;
  height: 18px;
}

@keyframes pulse {
  0% { box-shadow: 0 6px 30px rgba(232,113,60,0.50); }
  50% { box-shadow: 0 6px 40px rgba(232,113,60,0.75); }
  100% { box-shadow: 0 6px 30px rgba(232,113,60,0.50); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled .nav-link {
  color: var(--dark);
}

.navbar.scrolled .nav-logo-text {
  color: var(--dark);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nav-logo-text {
  font-family: var(--font-alt);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}

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

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  padding: 30px 24px;
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-nav-close {
  background: var(--bg-light);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-link {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-footer {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.40) 60%, rgba(232,113,60,0.25) 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-alt);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 760px;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
}

.hero-stat {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-alt);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--primary);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.60);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.40);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================
   IMPACT STATS SECTION
   ============================================ */
.impact-stats {
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

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

.stat-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.stat-number {
  font-family: var(--font-alt);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 12px;
  color: var(--gray);
}

/* ============================================
   DONATION SECTION
   ============================================ */
.donation-section {
  background: linear-gradient(135deg, #fff5f0 0%, #fff 50%, #fff5f0 100%);
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.donation-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.donate-cat-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.donate-cat-card:hover,
.donate-cat-card.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(232,113,60,0.15);
}

.donate-cat-card.active {
  background: var(--primary-bg);
}

.donate-cat-card .check-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
}

.donate-cat-card.active .check-icon {
  display: flex;
}

.donate-cat-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.donate-cat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.donate-cat-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* Donation Form Box */
.donation-form-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.donation-form-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.donation-form-box p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-btn {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
  text-align: center;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary);
  background: var(--primary-bg);
  color: var(--primary);
}

.custom-amount-wrap {
  position: relative;
  margin-bottom: 24px;
}

.custom-amount-wrap .rupee {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gray);
  font-weight: 600;
}

.custom-amount-input {
  width: 100%;
  padding: 14px 16px 14px 36px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--dark);
  background: var(--bg-light);
  transition: var(--transition);
}

.custom-amount-input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.donor-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
}

.field-group input {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
}

.field-group input:focus {
  border-color: var(--primary);
}

.donate-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-orange);
}

.donate-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232,113,60,0.45);
}

.secure-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

.secure-badge svg {
  color: #4ade80;
  width: 14px;
  height: 14px;
}

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

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

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-founded-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-orange);
}

.about-founded-badge strong {
  font-size: 30px;
  font-weight: 900;
  display: block;
  font-family: var(--font-alt);
}

.about-founded-badge span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content .section-subtitle {
  margin-bottom: 28px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-value:hover {
  background: var(--primary-bg);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.about-value-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-value-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   RESCUE STORIES
   ============================================ */
.rescue-section {
  background: var(--bg-light);
}

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

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.story-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.story-card:hover .story-img-wrap img {
  transform: scale(1.05);
}

.story-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-outcome {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #4ade80;
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.story-body {
  padding: 24px;
}

.story-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  font-family: var(--font-alt);
}

.story-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

.story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.story-date {
  font-size: 12px;
  color: var(--gray-light);
}

.story-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.story-link:hover {
  gap: 8px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--white);
}

.gallery-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter-btn {
  padding: 9px 22px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.gallery-yt-wrap {
  grid-column: span 2;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2/1;
}

.gallery-yt-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--black);
  overflow: hidden;
}

.testimonials-section .section-title {
  color: var(--white);
}

.testimonials-section .section-label {
  background: rgba(232,113,60,0.2);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(232,113,60,0.40);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid var(--primary-dark);
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
}

/* ============================================
   INSTAGRAM SECTION
   ============================================ */
.instagram-section {
  background: var(--bg-light);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

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

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

.instagram-hover {
  position: absolute;
  inset: 0;
  background: rgba(232,113,60,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover .instagram-hover {
  opacity: 1;
}

.instagram-hover svg {
  color: var(--white);
  width: 28px;
  height: 28px;
}

.instagram-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner .section-label {
  background: rgba(255,255,255,0.20);
  color: var(--white);
}

.cta-banner .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-banner .section-subtitle {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 20px 0;
  max-width: 300px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  transition: var(--transition);
  font-size: 16px;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-link::before {
  content: '→';
  color: var(--primary);
  font-size: 12px;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 4px;
}

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

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,113,60,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255,255,255,0.80);
  font-size: 12px;
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.footer-bottom p a {
  color: var(--primary);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  transition: var(--transition);
}

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

/* ============================================
   PAGE HEADER (INNER PAGES)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, #2a1a10 100%);
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: linear-gradient(to left, rgba(232,113,60,0.15), transparent);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.50);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);
}

.page-header h1 {
  font-family: var(--font-alt);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 550px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-img-wrap {
  position: relative;
  margin-bottom: 20px;
}

.team-img-wrap img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border);
  margin: 0 auto;
  transition: var(--transition);
}

.team-card:hover .team-img-wrap img {
  border-color: var(--primary);
}

.team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social a {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 13px;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   PROGRAMS / OUR WORK
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.program-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.program-body {
  padding: 28px;
}

.program-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.program-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  font-family: var(--font-alt);
}

.program-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.program-stats {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.program-stat-item {
  display: flex;
  flex-direction: column;
}

.program-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-alt);
}

.program-stat-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(232,113,60,0.12);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-info-detail {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 30px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  background: var(--bg-light);
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
}

/* ============================================
   DONATE PAGE
   ============================================ */
.donate-hero {
  background: linear-gradient(135deg, #1a0a03 0%, #2d1206 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.donate-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1601758124510-52d02ddb7cbd?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.donate-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donate-hero h1 {
  font-family: var(--font-alt);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}

.donate-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin: 0 auto;
}

.donate-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 60px;
}

.impact-preview {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}

.impact-preview h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.impact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-dark);
}

.impact-item-icon {
  font-size: 20px;
}

.impact-item span {
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

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

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

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-page-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-page-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary);
}

/* ============================================
   SUCCESS STORIES PAGE
   ============================================ */
.story-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-full-card.reverse {
  direction: rtl;
}

.story-full-card.reverse > * {
  direction: ltr;
}

.story-full-img {
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  width: 100%;
}

.story-full-body {
  padding: 50px;
}

.story-full-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.story-full-title {
  font-family: var(--font-alt);
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.story-full-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.story-full-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.story-full-outcome-icon {
  font-size: 20px;
}

.story-full-outcome p {
  font-size: 13px;
  font-weight: 600;
  color: #15803d;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.count-up {
  display: inline-block;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-50 { margin-top: 50px; }
.mt-40 { margin-top: 40px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .donation-form-box {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .about-img-secondary {
    right: 10px;
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.wide,
  .gallery-yt-wrap {
    grid-column: span 2;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .donate-page-grid {
    grid-template-columns: 1fr;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-full-card {
    grid-template-columns: 1fr;
  }

  .story-full-card.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 16px 24px;
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .donation-categories {
    grid-template-columns: 1fr 1fr;
  }

  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-yt-wrap {
    grid-column: span 2;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .contact-form {
    padding: 28px 20px;
  }

  .story-full-body {
    padding: 28px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-donate {
    bottom: 20px;
    right: 16px;
    padding: 14px 22px;
    font-size: 14px;
  }

  .trust-bar-inner {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .donation-categories {
    grid-template-columns: 1fr;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

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

  .about-img-secondary {
    display: none;
  }
}

/* ============================================
   AUTHENTIC REDESIGN — NEW COMPONENTS
   ============================================ */

/* Logo Image */
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
}

/* ============================================
   FOUNDER STRIP — HERO BOTTOM
   ============================================ */
.founder-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.60) 60%, transparent 100%);
  padding: 18px 20px;
}

.founder-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-strip-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}

.founder-strip-text {
  color: var(--white);
}

.founder-strip-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.founder-strip-role {
  font-size: 12px;
  opacity: 0.70;
  margin-top: 2px;
}

.founder-strip-quote {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  font-style: italic;
  margin-left: auto;
  max-width: 420px;
  text-align: right;
  display: none;
}

@media (min-width: 768px) {
  .founder-strip-quote { display: block; }
}

/* ============================================
   REAL WORK DOCUMENTARY SECTION
   ============================================ */
.real-work-section {
  background: var(--black);
  padding: 90px 0 0;
  overflow: hidden;
}

.real-work-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 70px;
}

.real-work-text .section-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.real-work-text .section-title span {
  color: var(--primary);
  font-style: normal;
}

.real-work-text p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.real-work-text .highlight-quote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin: 24px 0;
}

/* Real photo grid - documentary style */
.doc-photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
}

.doc-photo {
  position: relative;
  overflow: hidden;
}

.doc-photo.tall {
  grid-row: span 2;
}

.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.06);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.doc-photo:hover img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.08);
}

.doc-photo .doc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%);
  padding: 30px 14px 12px;
  opacity: 0;
  transition: var(--transition);
}

.doc-photo:hover .doc-caption {
  opacity: 1;
}

.doc-caption-text {
  font-size: 12px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.doc-caption-location {
  font-size: 10px;
  color: var(--primary);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Full-bleed night photo strip */
.night-strip {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-top: 6px;
}

.night-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.70) contrast(1.1);
}

.night-strip-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: rgba(0,0,0,0.35);
}

.night-strip-time {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.night-strip-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
  background: #0d0d0d;
  padding: 90px 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 70px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  filter: brightness(0.95) contrast(1.05) saturate(0.90);
}

.founder-photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: left;
  box-shadow: var(--shadow-orange);
}

.founder-photo-accent strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  display: block;
  line-height: 1;
}

.founder-photo-accent span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}

.founder-content .section-label {
  background: rgba(232,113,60,0.15);
}

.founder-content .section-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.founder-content .section-title em {
  font-style: italic;
  color: var(--primary);
}

.founder-story {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.founder-pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  margin: 28px 0;
  background: rgba(232,113,60,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

.founder-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.founder-meta-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.founder-meta-role {
  font-size: 13px;
  color: var(--primary);
  margin-top: 2px;
}

.founder-meta-city {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  margin-top: 2px;
}

.founder-signature {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--primary);
  margin-top: 4px;
  display: block;
}

/* ============================================
   VIDEO SECTION — Real YouTube Embeds
   ============================================ */
.videos-section {
  background: var(--bg-light);
  padding: 90px 0;
}

.videos-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 40px;
}

.videos-lead p {
  font-size: 15px;
  color: var(--gray);
  margin-top: 12px;
  max-width: 480px;
}

.videos-stats {
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.video-stat-item {
  text-align: right;
}

.video-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-alt);
}

.video-stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

.videos-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}

.video-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}

.video-featured iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.videos-side-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.videos-extra-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.video-extra {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}

.video-extra iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   LIFE YOU SAVED SECTION
   ============================================ */
.life-saved-section {
  background: var(--white);
  padding: 90px 0;
}

.life-saved-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 50px;
}

.life-saved-img {
  position: relative;
  min-height: 500px;
}

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

.life-saved-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(0,0,0,0.08) 100%);
}

.life-saved-content {
  background: var(--black);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.life-saved-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.life-saved-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.life-saved-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.80;
  margin-bottom: 16px;
}

.life-saved-body strong {
  color: var(--white);
}

.life-saved-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 24px 0;
}

.life-saved-number {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.life-saved-big {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-alt);
  line-height: 1;
}

.life-saved-big-label {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
}

.life-saved-small-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.life-saved-small-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-alt);
}

.life-saved-small-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   DAILY REALITY TICKER
   ============================================ */
.reality-ticker {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.50);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   REAL IMPACT — ASYMMETRIC GRID
   ============================================ */
.impact-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  margin-top: 50px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.impact-block {
  padding: 40px 30px;
  position: relative;
  transition: var(--transition);
}

.impact-block:nth-child(1) { background: var(--black); }
.impact-block:nth-child(2) { background: #1a1a1a; }
.impact-block:nth-child(3) { background: var(--primary); }
.impact-block:nth-child(4) { background: var(--primary-dark); }

.impact-block:hover {
  transform: scale(1.02);
  z-index: 1;
}

.impact-block-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.impact-block-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-block:nth-child(1) .impact-block-num,
.impact-block:nth-child(2) .impact-block-num {
  color: var(--primary);
}

.impact-block:nth-child(3) .impact-block-num,
.impact-block:nth-child(4) .impact-block-num {
  color: var(--white);
}

.impact-block-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.impact-block:nth-child(1) .impact-block-label,
.impact-block:nth-child(2) .impact-block-label {
  color: var(--white);
}

.impact-block:nth-child(3) .impact-block-label,
.impact-block:nth-child(4) .impact-block-label {
  color: rgba(255,255,255,0.95);
}

.impact-block-desc {
  font-size: 13px;
  line-height: 1.6;
}

.impact-block:nth-child(1) .impact-block-desc,
.impact-block:nth-child(2) .impact-block-desc {
  color: rgba(255,255,255,0.50);
}

.impact-block:nth-child(3) .impact-block-desc,
.impact-block:nth-child(4) .impact-block-desc {
  color: rgba(255,255,255,0.75);
}

/* ============================================
   WHERE WE OPERATE — MUMBAI SPECIFIC
   ============================================ */
.operate-section {
  background: var(--bg-light);
  padding: 90px 0;
}

.operate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.operate-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px;
  border-left: 4px solid var(--border);
  transition: var(--transition);
}

.operate-card:hover {
  border-left-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.operate-area {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.operate-detail {
  font-size: 12px;
  color: var(--gray);
}

.operate-tag {
  display: inline-block;
  font-size: 10px;
  background: var(--primary-bg);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS — Real people, Mumbai
   ============================================ */
.testimonial-location {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================ */
@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .real-work-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .doc-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doc-photo.tall {
    grid-row: span 1;
  }

  .videos-main-grid {
    grid-template-columns: 1fr;
  }

  .videos-side-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .impact-asymmetric {
    grid-template-columns: 1fr 1fr;
  }

  .life-saved-split {
    grid-template-columns: 1fr;
  }

  .life-saved-img {
    min-height: 350px;
  }

  .operate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .videos-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .videos-stats {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-accent {
    bottom: 10px;
    right: 10px;
  }

  .doc-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .impact-asymmetric {
    grid-template-columns: 1fr 1fr;
  }

  .videos-extra-row {
    grid-template-columns: 1fr;
  }

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

  .life-saved-content {
    padding: 40px 28px;
  }

  .life-saved-big {
    font-size: 54px;
  }

  .night-strip {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .impact-asymmetric {
    grid-template-columns: 1fr;
  }

  .videos-side-list {
    grid-template-columns: 1fr;
  }

  .doc-photo-grid {
    grid-template-columns: 1fr;
  }

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