/* ============================================
   OASIS OUTREACH INTERNATIONAL MINISTRIES
   Modern Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --primary-dark: #0f2440;
  --accent: #c9a84c;
  --accent-light: #e0c874;
  --accent-dark: #a88a2e;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --text-light: #f8f9fa;
  --bg-light: #f5f0eb;
  --bg-white: #ffffff;
  --bg-dark: #0f2440;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --max-width: 1200px;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.1);
  --gradient-gold: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
  --gradient-navy: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  --gradient-warm: linear-gradient(135deg, #1a3a5c, #2a5a8c);
}

/* ============================================
   MODERN UTILITY CLASSES
   ============================================ */

/* Gradient Text */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Glow Effect */
.glow {
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 40px rgba(201,168,76,0.4); }
}

/* Floating Animation */
.float {
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Shimmer Border */
.shimmer-border {
  position: relative;
  overflow: hidden;
}

.shimmer-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: shimmerBorder 3s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes shimmerBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Scale on Hover */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gradient Divider */
.gradient-divider {
  height: 4px;
  background: var(--gradient-gold);
  width: 80px;
  margin: 20px auto;
  border-radius: 2px;
}

/* Animated Background Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: shapeFloat 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--accent-light);
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
  animation-duration: 25s;
}

.hero-shape:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: 50%;
  left: 60%;
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

/* Modern Badge */
.modern-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Modern Stat Card */
.stat-modern {
  position: relative;
  overflow: hidden;
}

.stat-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.stat-modern:hover::after {
  transform: scaleX(1);
}

/* Pulse Dot */
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,167,69,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 15px auto 0;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid var(--bg-light);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info i {
  color: var(--accent);
  font-size: 0.9rem;
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Navigation --- */
.navbar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
  background: rgba(26, 58, 92, 0.06);
}

.navbar a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.search-box input {
  padding: 7px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  width: 160px;
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--accent);
  width: 200px;
}

.search-box button {
  padding: 7px 14px;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.search-box button:hover {
  background: var(--accent-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 64, 0.85) 0%,
    rgba(26, 58, 92, 0.7) 50%,
    rgba(15, 36, 64, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  max-width: 850px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-gold:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

/* Hero Arrows */
.hero-arrows {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-arrows button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrows button:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dots button.active {
  background: var(--accent);
  width: 30px;
  border-radius: 6px;
}

/* --- Features / Floating Cards --- */
.features {
  margin-top: -70px;
  position: relative;
  z-index: 5;
  padding-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--primary-dark);
  transform: rotateY(180deg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- About Section --- */
.about-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15,36,64,0.6), transparent);
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-text .subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Mission / Vision Section --- */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
}

.mission-section .section-header h2 {
  color: var(--text-light);
}

.mission-section .section-header h2::after {
  background: var(--accent-light);
}

.mission-section .section-header p {
  color: rgba(255,255,255,0.75);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.mission-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.mission-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mission-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mission-card .icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  margin-bottom: 15px;
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.mission-card p {
  opacity: 0.92;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

/* --- Ministries / What We Do --- */
.ministries-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ministry-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.ministry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ministry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-slow);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ministry-card:hover img {
  transform: scale(1.08);
}

.ministry-body {
  padding: 25px;
}

.ministry-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.ministry-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ministry-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
  transition: var(--transition);
}

.ministry-body .read-more:hover {
  gap: 10px;
  color: var(--accent-dark);
}

/* --- Team Section --- */
.team-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
  padding-bottom: 25px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 30px auto 0;
  transition: var(--transition-slow);
  transform: translateZ(0);
  backface-visibility: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-card:hover .team-image {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.team-info {
  padding: 25px 20px;
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.team-info .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.team-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* --- Gallery Section (Home Preview) --- */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 64, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--accent);
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* --- Donations Section (Home) --- */
.donations-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.donations-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.06);
}

.donations-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.donations-cta .container {
  position: relative;
  z-index: 1;
}

.donations-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.donations-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* --- Gallery Page --- */
.gallery-page {
  padding: 100px 0;
  background: var(--bg-white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filters button {
  padding: 10px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.gallery-filters button:hover,
.gallery-filters button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-masonry .gallery-item {
  aspect-ratio: auto;
  height: 280px;
}

.gallery-masonry .gallery-item:nth-child(2n) {
  height: 350px;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  transform: scale(0.8);
  transition: var(--transition-slow);
}

.lightbox.show img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  position: relative;
  padding: 120px 0 80px;
  background: var(--primary-dark);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,36,64,0.9), rgba(26,58,92,0.8));
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.page-header .breadcrumb a {
  color: var(--accent);
}

.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

/* --- About Page --- */
.about-page-content {
  padding: 100px 0;
  background: var(--bg-white);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-page-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-page-text h2 span {
  color: var(--accent);
}

.about-page-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateX(5px);
  background: rgba(201, 168, 76, 0.1);
}

.value-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* --- Contact Page --- */
.contact-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.contact-card .icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg-white);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- What We Do Page --- */
.what-we-do-page {
  padding: 100px 0;
  background: var(--bg-white);
}

.ministry-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  align-items: center;
}

.ministry-detail:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.ministry-detail:nth-child(even) {
  direction: rtl;
}

.ministry-detail:nth-child(even) .ministry-detail-text {
  direction: ltr;
}

.ministry-detail img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.ministry-detail-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.ministry-detail-text p {
  color: var(--text-muted);
  line-height: 1.8;
}

.ministry-detail-text ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ministry-detail-text ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ministry-detail-text ul li i {
  color: var(--accent);
}

/* --- Donations Page --- */
.donations-page {
  padding: 100px 0;
  background: var(--bg-white);
}

.donations-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.donations-intro h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.donations-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.donation-option {
  text-align: center;
  padding: 40px 25px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.donation-option:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.donation-option .icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.donation-option h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.donation-option p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.donation-bank {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin: 0 auto;
}

.donation-bank h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 25px;
}

.bank-details {
  display: grid;
  gap: 15px;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.bank-row span:first-child {
  font-weight: 600;
  color: var(--primary);
}

.bank-row span:last-child {
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 70px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-about h3 span {
  color: var(--accent);
}

.footer-about p {
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--accent);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  opacity: 0.7;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  padding-left: 5px;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 4px;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* --- Reading Progress Bar --- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  z-index: 100000;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Floating Call Button --- */
.call-now {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  animation: callPulse 2.5s ease-in-out infinite;
}

.call-now:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.5);
  color: #fff;
}

.call-now i {
  font-size: 1.3rem;
  animation: phoneShake 2.5s ease-in-out infinite;
}

.call-now .call-text {
  display: inline;
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(40, 167, 69, 0.6); }
}

@keyframes phoneShake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50%, 100% { transform: rotate(0deg); }
}

@media (max-width: 768px) {
  .call-now {
    bottom: 20px;
    left: 20px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .call-now .call-text {
    display: none;
  }
  .call-now i {
    font-size: 1.2rem;
    margin: 0;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .donation-options { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 3rem; }
  .mission-grid-3col { grid-template-columns: repeat(2, 1fr); }
  .core-values-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 100px 30px 40px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    z-index: 99;
    gap: 5px;
    overflow-y: auto;
  }

  .navbar.open { right: 0; }

  .navbar a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .search-box {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .search-box input {
    width: 100%;
    flex: 1;
  }

  .search-box input:focus { width: 100%; }

  .top-bar-info span:not(:first-child) { display: none; }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .hero { min-height: 70vh; }

  .about-grid,
  .contact-grid,
  .about-page-grid,
  .mission-grid,
  .mission-grid-3col,
  .core-values-grid { grid-template-columns: 1fr; gap: 30px; }

  .features-grid { grid-template-columns: 1fr; }
  .features { margin-top: -40px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat-item { padding: 15px 10px; }
  .stat-item h3 { font-size: 1.5rem; }

  .ministries-grid,
  .gallery-grid,
  .gallery-masonry { grid-template-columns: 1fr; }

  .ministry-detail { grid-template-columns: 1fr; }
  .ministry-detail:nth-child(even) { direction: ltr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .page-header h1 { font-size: 2.2rem; }
  .page-header { padding: 100px 0 60px; }

  .donation-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 2rem; }
  .about-text h2 { font-size: 2rem; }
  .donations-cta h2 { font-size: 2rem; }

  .contact-form { padding: 25px; }
  .donation-bank { padding: 25px; }
  .bank-row { flex-direction: column; gap: 4px; }

  .about-values { grid-template-columns: 1fr; }

  .logo-text h1 { font-size: 1.1rem; }
  .logo-text span { font-size: 0.65rem; }
  .logo img { width: 45px; height: 45px; }

  .hero-arrows button { width: 38px; height: 38px; font-size: 0.9rem; }

  .mission-card { padding: 25px; }

  .about-image img { height: 280px; }
  .team-image { width: 180px; height: 180px; }
  .ministry-card img { height: 200px; }
  .ministry-detail img { height: 220px; }

  .frequency-toggle { flex-wrap: wrap; justify-content: center; }

  .page-header { padding: 100px 0 50px; }
  .page-header h1 { font-size: 2rem; }

  .donation-progress { padding: 25px; }

  .contact-section,
  .what-we-do-page,
  .gallery-page,
  .donations-page,
  .about-page-content,
  .team-section,
  .ministries-section,
  .about-section,
  .mission-section { padding: 60px 0; }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content .badge { font-size: 0.75rem; padding: 4px 14px; }
  .hero-buttons .btn { padding: 12px 24px; font-size: 0.85rem; }
  .about-stats { grid-template-columns: 1fr; }
  .gallery-masonry .gallery-item { height: 220px; }
  .about-image img { height: 220px; }
  .team-image { width: 150px; height: 150px; }
  .stat-item h3 { font-size: 1.6rem; }
  .amount-btn { min-width: 60px; padding: 10px 14px; font-size: 0.9rem; }
  .amount-custom { width: 90px; font-size: 0.9rem; }
}

/* ============================================
   INTERACTIVE DONATIONS
   ============================================ */

/* Donation Amount Selector */
.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 25px 0;
}

.amount-btn {
  padding: 14px 28px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: var(--bg-white);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 90px;
  position: relative;
  overflow: hidden;
}

.amount-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: var(--transition);
}

.amount-btn:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}

.amount-btn.active {
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

.amount-btn.active::before {
  opacity: 1;
}

.amount-btn span { position: relative; z-index: 1; }
.amount-btn.active span { color: var(--primary-dark); }

.amount-custom {
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: var(--bg-white);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--text-dark);
  width: 120px;
  text-align: center;
  outline: none;
  transition: var(--transition);
}

.amount-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* Animated Progress Bar */
.donation-progress {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  text-align: center;
}

.progress-bar-container {
  width: 100%;
  height: 20px;
  background: var(--bg-light);
  border-radius: 30px;
  overflow: hidden;
  margin: 15px 0;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  border-radius: 30px;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmerGlide 2s ease-in-out infinite;
}

@keyframes shimmerGlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.progress-stats .raised {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Impact Cards */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.impact-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.impact-card:hover::before { transform: scaleX(1); }

.impact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.impact-icon {
  width: 75px; height: 75px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.5s ease;
}

.impact-card:hover .impact-icon {
  background: var(--accent);
  color: var(--primary-dark);
  transform: rotateY(360deg) scale(1.1);
}

.impact-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.impact-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.impact-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

/* Heartbeat Button Animation */
.btn-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

.btn-heartbeat:hover {
  animation: none;
  transform: scale(1.05);
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.08); }
  28% { transform: scale(1); }
  42% { transform: scale(1.06); }
  70% { transform: scale(1); }
}

/* PayPal Section - Enhanced */
.paypal-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 50%, var(--bg-light) 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  margin-bottom: 50px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.paypal-section .secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Impact Stats Section */
.impact-stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-light);
  text-align: center;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.impact-stat-item { padding: 20px; }

.impact-stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.impact-stat-item .label {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 5px;
}

/* Frequency toggle */
.frequency-toggle {
  display: inline-flex;
  background: var(--bg-light);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 20px;
}

.frequency-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
}

.frequency-btn.active {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .donation-amounts { gap: 8px; }
  .amount-btn { min-width: 70px; padding: 12px 18px; font-size: 1rem; }
  .paypal-section { padding: 30px 20px; }
  .progress-stats { flex-direction: column; gap: 5px; }
}

@media (max-width: 480px) {
  .impact-stats-grid { grid-template-columns: 1fr; }
  .impact-stat-item .number { font-size: 2.2rem; }
}
