/* ==========================================
   PPM CANADA - MAIN STYLESHEET
   Prophet Prempeh Ministries Canada
   ========================================== */

/* ============ CSS VARIABLES ============ */
:root {
  --primary: #E30613;
  --primary-dark: #B8050F;
  --primary-light: #FF1A27;
  --dark: #0A0A0A;
  --dark-2: #1A1A1A;
  --dark-3: #2A2A2A;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --gray-lighter: #E5E7EB;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --gold: #D4A843;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

.section {
  padding: 100px 0;
  position: relative;
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  margin-bottom: 30px;
}

.preloader-logo-img {
  width: 180px;
  height: auto;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-3);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-progress {
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 10px;
  animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
  0% { width: 0; }
  50% { width: 70%; }
  100% { width: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 25px;
}

.top-bar-left a {
  color: var(--gray-light);
  transition: var(--transition-fast);
}

.top-bar-left a:hover {
  color: var(--primary);
}

.top-bar-left i {
  margin-right: 6px;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: var(--gray-light);
  font-size: 14px;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nav-logo-img {
  height: 85px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 65px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

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

.nav-donate-btn {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius-xl) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  margin-left: 10px;
}

.nav-donate-btn::after { display: none !important; }

.nav-donate-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger .bar {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

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

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(227, 6, 19, 0.4);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

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

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

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

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

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

/* ============ SECTION HEADERS ============ */
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.section-tag-light {
  color: var(--white);
}

.section-tag-light::before {
  background: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
}

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

.section-header .section-tag::before {
  display: none;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============ HERO SECTION ============ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
  0% { background-size: 100%; }
  100% { background-size: 115%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(227, 6, 19, 0.85) 0%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  color: var(--white);
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero Navigation */
.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 35px;
  border-radius: 6px;
}

.hero-nav-btn {
  color: var(--white) !important;
  opacity: 0.7;
  transition: var(--transition) !important;
}

.hero-nav-btn:hover {
  opacity: 1;
}

.hero-nav-btn::after {
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0.7;
  animation: bounceDown 2s ease infinite;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease infinite;
}

.hero-scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============ STATS SECTION ============ */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  align-items: center;
}

.stat-item {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 11px;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
  font-weight: 500;
}

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

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-text {
  color: var(--gray);
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.about-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--off-white);
  transform: translateX(5px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============ PILLARS SECTION ============ */
.pillars-section {
  background: var(--off-white);
  overflow: hidden;
}

.pillars-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 300px;
  font-weight: 900;
  color: rgba(227, 6, 19, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

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

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.pillar-card:hover .pillar-line {
  width: 80px;
  background: var(--primary);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(227, 6, 19, 0.08);
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.pillar-card:hover .pillar-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(10deg);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pillar-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.pillar-line {
  width: 40px;
  height: 3px;
  background: var(--gray-lighter);
  border-radius: 3px;
  margin: 25px auto 0;
  transition: var(--transition);
}

/* ============ MINISTRIES CAROUSEL ============ */
.ministries-section {
  background: var(--white);
}

.ministries-carousel-wrapper {
  position: relative;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.ministry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

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

.ministry-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.ministry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.ministry-card:hover .ministry-img img {
  transform: scale(1.1);
}

.ministry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(227, 6, 19, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.ministry-card:hover .ministry-overlay {
  opacity: 1;
}

.ministry-content {
  padding: 25px;
}

.ministry-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ministry-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

.ministries-nav-btn {
  color: var(--primary) !important;
  background: var(--white);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition) !important;
}

.ministries-nav-btn:hover {
  background: var(--primary);
  color: var(--white) !important;
}

.ministries-nav-btn::after {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.ministries-pagination .swiper-pagination-bullet {
  background: var(--gray-lighter);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.ministries-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ============ VIDEO SECTION ============ */
.video-section {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-parallax {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.video-subtitle {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  position: relative;
  transition: var(--transition);
}

.play-btn i {
  position: relative;
  z-index: 2;
  margin-left: 4px;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

.play-ripple {
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(227, 6, 19, 0.4);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

.play-ripple-2 {
  animation-delay: 1s;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote {
  color: var(--primary);
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--dark-2);
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

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

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  display: flex;
  gap: 3px;
  justify-content: center;
}

.testimonials-pagination {
  margin-top: 30px !important;
  position: relative !important;
}

.testimonials-pagination .swiper-pagination-bullet {
  background: var(--gray-lighter);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

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

.event-featured {
  max-width: 1000px;
  margin: 0 auto;
}

.event-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.event-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.event-featured-img {
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.event-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.event-featured-card:hover .event-featured-img img {
  transform: scale(1.05);
}

.event-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-featured-content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.event-description {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.event-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.speaker-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--primary-dark);
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
}

.speaker-tag i {
  font-size: 10px;
}

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

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary);
}

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

.event-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(227, 6, 19, 0.03);
  border-radius: 0 0 0 100%;
}

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  width: 70px;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-align: center;
}

.event-month {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.event-day {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.event-year {
  font-size: 11px;
  opacity: 0.8;
}

.event-category {
  display: inline-block;
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-details p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-details i {
  color: var(--primary);
  font-size: 14px;
  width: 16px;
}

.event-content .btn {
  margin-top: 15px;
  border-color: var(--primary);
  color: var(--primary);
}

.event-content .btn:hover {
  background: var(--primary);
  color: var(--white);
}

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

.gallery-slider-wrapper {
  position: relative;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-slide-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  position: relative;
}

.gallery-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

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

.gallery-nav-btn {
  color: var(--primary) !important;
  background: var(--white);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition) !important;
}

.gallery-nav-btn:hover {
  background: var(--primary);
  color: var(--white) !important;
}

.gallery-nav-btn::after {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.gallery-pagination {
  margin-top: 25px !important;
  position: relative !important;
}

.gallery-pagination .swiper-pagination-bullet {
  background: var(--gray-lighter);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

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

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--gray-lighter);
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.partner-card-featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(227, 6, 19, 0.02), rgba(227, 6, 19, 0.06));
}

.partner-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 5px 20px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.partner-icon {
  width: 70px;
  height: 70px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.partner-card:hover .partner-icon {
  background: var(--primary);
  color: var(--white);
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.partner-card > p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.partner-benefits {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.partner-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--dark-2);
  border-bottom: 1px solid var(--gray-lighter);
}

.partner-benefits li:last-child {
  border-bottom: none;
}

.partner-benefits i {
  color: var(--primary);
  font-size: 12px;
}

.partner-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============ CTA SECTION ============ */
.cta-section {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-parallax {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(227, 6, 19, 0.9) 0%,
    rgba(184, 5, 15, 0.95) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.cta-buttons .btn-primary:hover {
  background: var(--dark);
  color: var(--white);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

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

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.contact-socials a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid var(--gray-lighter);
  background: transparent;
  font-size: 15px;
  font-family: var(--font-primary);
  color: var(--dark);
  outline: none;
  transition: var(--transition);
  resize: none;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 15px;
  color: var(--gray);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -10px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
  width: 100%;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

.btn-submit i {
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--dark);
  padding: 60px 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-text p {
  color: var(--gray-light);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 14px 24px;
  border: 2px solid var(--dark-3);
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-primary);
  width: 300px;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: var(--gray);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: var(--gray-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--dark-3);
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  color: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 20px;
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--primary);
  width: 16px;
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ============ GSAP ANIMATION CLASSES ============ */
.gsap-reveal {
  opacity: 0;
  transform: translateY(60px);
}

.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.gsap-reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 50px;
  }

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

  .gallery-grid {
    grid-auto-rows: 200px;
  }

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

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Top Bar */
  .top-bar { display: none; }

  .navbar { top: 0; }

  /* Hamburger */
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    gap: 5px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--dark) !important;
    font-size: 16px;
    padding: 12px 0;
    width: 100%;
  }

  .nav-donate-btn {
    margin-left: 0 !important;
    margin-top: 15px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero-content {
    padding: 0 30px;
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 56px);
  }

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

  .hero-scroll-indicator { display: none; }
  .hero-nav-btn { display: none !important; }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number { font-size: 36px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-accent {
    width: 150px;
    height: 150px;
    right: 10px;
    bottom: -20px;
  }

  .about-experience-badge {
    width: 75px;
    height: 75px;
    right: 15px;
    top: 10px;
    overflow: hidden;
  }

  .exp-number {
    font-size: 22px;
  }

  .exp-text {
    font-size: 8px;
    line-height: 1.1;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Events */
  .event-featured-card {
    grid-template-columns: 1fr;
  }

  .event-featured-img {
    min-height: 280px;
  }

  .event-featured-content {
    padding: 25px;
  }

  .event-featured-content h3 {
    font-size: 26px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Gallery Slider */
  .gallery-slider-wrapper {
    padding: 0 20px;
  }

  .gallery-slide-item {
    height: 260px;
  }

  .gallery-nav-btn { display: none !important; }

  /* Partnership */
  .partnership-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Newsletter */
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Ministries Carousel */
  .ministries-carousel-wrapper {
    padding: 0 20px;
  }

  .ministries-nav-btn { display: none !important; }

  .video-parallax,
  .cta-parallax {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 20px; }

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

  .stat-number { font-size: 30px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .contact-form-wrapper { padding: 25px; }
}
