@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://unicons.iconscout.com/release/v4.0.0/css/line.css');

:root {
  --primary: #f59e0b; /* Amber */
  --secondary: #3b82f6; /* Blue */
  --cta: #f59e0b;
  --bg-color: #09090b;
  --bg-secondary: #121217;
  --text-color: #f8fafc;
  --text-light: #94a3b8;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.25s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 6rem 0;
}

/* Utilities */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cta {
  background-color: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-cta:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

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

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

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

/* Header */
.navbar {
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-btn {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-color);
  transition: var(--transition);
  z-index: 1001;
}

.menu-btn:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-color);
}

/* Animated background orbs */
.hero-glow-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

.orb-1 {
  background: var(--secondary);
  width: 450px;
  height: 450px;
  top: -10%;
  right: -5%;
  animation: floatOrb1 25s infinite alternate ease-in-out;
}

.orb-2 {
  background: var(--primary);
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  animation: floatOrb2 20s infinite alternate ease-in-out;
}

.orb-3 {
  background: #a855f7; /* Purple accents */
  width: 350px;
  height: 350px;
  top: 40%;
  left: 30%;
  opacity: 0.06;
  animation: floatOrb3 30s infinite alternate ease-in-out;
}

/* Interactive Cursor Glow */
.hero-cursor-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(40px);
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 60px) scale(1.1); }
  100% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(60px, -80px) scale(0.9); }
  100% { transform: translate(-40px, 40px) scale(1.1); }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(0.9); }
  50% { transform: translate(-50px, -50px) scale(1.1); }
  100% { transform: translate(60px, 50px) scale(1.0); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.08);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  margin-bottom: 1.2rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Interactive Dual Logos */
.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 2.5rem 0 3rem;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* Floating Bouncing Animations */
.logo-bounce-container-1 {
  animation: logoFloat1 6s infinite ease-in-out;
}

.logo-bounce-container-2 {
  animation: logoFloat2 6s infinite ease-in-out 1.5s; /* Offset by 1.5s for alternate bobbing */
}

/* Pause floating animation on hover for stable precise interaction */
.hero-logos:hover .logo-bounce-container-1,
.hero-logos:hover .logo-bounce-container-2 {
  animation-play-state: paused;
}

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

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

.hero-logo-wrapper {
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 50%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-logo-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.hero-logo-wrapper img {
  max-height: 95px;
  max-width: 95px;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover-blur interactive states */
.hero-logos:hover .hero-logo-wrapper {
  filter: blur(4px) grayscale(60%);
  opacity: 0.4;
  transform: scale(0.9);
}

.hero-logos .hero-logo-wrapper:hover {
  filter: blur(0) grayscale(0);
  opacity: 1;
  transform: scale(1.15) translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.25), 0 0 20px rgba(59, 130, 246, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.hero-logos .hero-logo-wrapper:hover::before {
  opacity: 0.35;
}

.hero-logos .hero-logo-wrapper:hover img {
  transform: scale(1.08) rotate(2deg);
}

/* Premium Scripture Quote Section */
.hero-scripture {
  margin-top: 3rem;
  padding: 1.2rem 2.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: inline-block;
  max-width: 650px;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero-scripture:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.1), 0 10px 30px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.hero-scripture .quote-icon {
  font-size: 2rem;
  color: rgba(245, 158, 11, 0.15);
  position: absolute;
  top: -18px;
  left: 20px;
}

.scripture-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem !important;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

.scripture-reference {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Block Layout - Topics */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.topic-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.topic-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.topic-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.topic-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: 2rem;
  margin: 4rem 5%;
  padding: 5rem 2rem;
}

.gallery h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

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

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

/* Event Banner Section */
.event-banner {
  background: linear-gradient(135deg, var(--text-color), var(--primary));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.event-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../assets/hero_africa.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.event-banner-content {
  position: relative;
  z-index: 1;
}

.event-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.event-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.8);
}

/* Footer */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  color: var(--white);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--cta);
}

.copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vision-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  
  /* Mobile Menu Drawer Toggle - Move to 992px to prevent tablet wrap */
  .menu-btn {
    display: block !important;
  }
  
  .nav-right {
    display: none !important; /* Hide Join Us button in navbar on mobile screens */
  }

  .logo span {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0 !important;
    right: auto !important;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: rgba(9, 9, 11, 0.96);
    flex-direction: column;
    padding: 2.5rem 0;
    gap: 1.8rem;
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    display: none;
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.6rem; }
  
  .gallery { margin: 2rem 0; border-radius: 0; }
  .event-banner { margin: 2rem 0; border-radius: 0; }
  .vision-header h2, .leadership-header h2 { font-size: 2.2rem; }
  .vision-tab-content h3 { font-size: 1.5rem; }
  
  /* Responsive Logo text */
  .logo span {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  
  /* Scale down the dual logo circles on mobile to completely prevent layout clipping */
  .hero-logo-wrapper {
    width: 110px !important;
    height: 110px !important;
    padding: 1rem !important;
  }
  .hero-logo-wrapper img {
    max-height: 70px !important;
    max-width: 70px !important;
  }
  .hero-logos {
    gap: 1.2rem !important;
  }

  /* Prevent leadership cards from horizontal overflow */
  .leader-card {
    flex: 1 1 260px !important;
    max-width: 100% !important;
    padding: 2rem 1.2rem !important;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.1rem; }
  .logo span {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .logo span {
    display: none; /* Hide logo text completely on very tiny screens to avoid wrapping */
  }
}

/* Vision Section */
.vision-section {
  padding: 6rem 0;
  position: relative;
  z-index: 5;
}

.vision-header {
  margin-bottom: 4rem;
}

.vision-subtitle {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.vision-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.vision-line {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1.5rem auto 0;
  border-radius: 2px;
  position: relative;
}

.vision-line::after {
  content: '';
  position: absolute;
  top: 0; left: 25%; right: 25%; bottom: 0;
  background: var(--secondary);
  border-radius: 2px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.vision-image-wrapper {
  position: relative;
  width: 100%;
}

.vision-image-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  z-index: 2;
  aspect-ratio: 4/3;
  transition: all 0.5s ease;
}

.vision-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.4), transparent 60%);
  pointer-events: none;
  z-index: 3;
}

.image-backdrop-glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
  border-radius: 25px;
  transition: all 0.5s ease;
}

/* Hover effects for the image */
.vision-image-wrapper:hover .vision-image-inner {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 30px 60px -10px rgba(245, 158, 11, 0.15), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vision-image-wrapper:hover .vision-image-inner img {
  transform: scale(1.05);
}

.vision-image-wrapper:hover .image-backdrop-glow {
  inset: -25px;
  opacity: 1;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
}

.vision-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Tab button headers */
.vision-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.vision-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  position: relative;
  transition: var(--transition);
}

.vision-tab-btn:hover {
  color: var(--white);
}

.vision-tab-btn.active {
  color: var(--primary);
}

.vision-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Tab Content toggles */
.vision-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.vision-tab-content.active {
  display: block;
}

.vision-tab-content h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.vision-tab-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* Premium pill button */
.btn-vision-more {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

.btn-vision-more i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vision-more:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
  transform: translateY(-2px);
}

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

/* Expandable content area */
.vision-expanded-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 1.5rem;
}

.vision-expanded-content.show {
  max-height: 350px;
}

.vision-expanded-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 1.2rem;
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
}

/* Youth Sunday Section */
.youth-sunday-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.sunday-glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  right: -100px;
  top: 10%;
  pointer-events: none;
  z-index: 1;
}

.sunday-card {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  padding: 4rem !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--glass-border) !important;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sunday-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.sunday-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.sunday-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.sunday-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sunday-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.sunday-content h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.sunday-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.sunday-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.sunday-feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sunday-feature-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.sunday-feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sunday-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.sunday-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* 2x2 Interactive Gallery Grid */
.sunday-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  width: 100%;
}

.sunday-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sunday-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sunday-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  z-index: 2;
  opacity: 0.85;
  transition: all 0.5s ease;
}

.sunday-gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

/* Hover-blur cross-fade interactive mechanics */
.sunday-visual:hover .sunday-gallery-card {
  filter: blur(2px) opacity(0.5) scale(0.95);
}

.sunday-visual .sunday-gallery-card:hover {
  filter: blur(0) opacity(1) scale(1.06) translateY(-5px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 45px rgba(245, 158, 11, 0.25), 0 15px 35px rgba(0,0,0,0.5);
  z-index: 5;
}

.sunday-gallery-card:hover img {
  transform: scale(1.05);
}

.sunday-gallery-card:hover .sunday-gallery-overlay {
  background: linear-gradient(to top, rgba(245, 158, 11, 0.75) 0%, rgba(9, 9, 11, 0.2) 100%);
  opacity: 1;
}

.sunday-gallery-card:hover .sunday-gallery-overlay span {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .sunday-card {
    padding: 3rem !important;
  }
}

@media (max-width: 992px) {
  .sunday-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .sunday-visual {
    height: 320px;
    max-width: 500px;
    margin: 0 auto;
  }
  .main-card {
    height: 240px;
  }
  .secondary-card {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .sunday-card {
    padding: 2rem 1.5rem !important;
    border-radius: 16px;
  }
  .sunday-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Leadership Section */
.leadership-section {
  padding: 6rem 0;
  position: relative;
  z-index: 5;
}

.leadership-header {
  margin-bottom: 4rem;
}

.leadership-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.leadership-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.leadership-lead {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.leaders-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.leader-card {
  flex: 1 1 320px;
  max-width: 370px;
  padding: 2.5rem 2rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
}

.leader-image-container {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.leader-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.leader-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.leader-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.leader-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 50px;
}

.leader-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hover Actions for Leader Cards */
.leader-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 158, 11, 0.2) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.05) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.leader-card:hover .leader-image-container {
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
  transform: scale(1.05);
}

.leader-card:hover .leader-image-container img {
  transform: scale(1.08);
}

.leader-card:hover .leader-glow {
  opacity: 1;
}

.leader-card:hover h3 {
  color: var(--primary);
}

/* ==========================================================================
   YOUTH SCRIPTURE VAULT
   ========================================================================== */

.scripture-vault-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

.scripture-vault-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  margin-top: 3.5rem;
  align-items: start;
}

.verses-showcase-container {
  display: flex;
  flex-direction: column;
}

/* Tabs Switcher */
.scripture-tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 0.8rem 1.4rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-btn i {
  font-size: 1.1rem;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.tab-btn:hover i {
  transform: scale(1.1) rotate(5deg);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.1), rgba(79, 172, 254, 0.05));
  border-color: rgba(0, 242, 254, 0.3);
  color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.tab-btn.active i {
  color: #00f2fe;
}

/* Verses Display Area */
.verses-display-area {
  position: relative;
  min-height: 300px;
}

.verses-group {
  display: none;
  flex-direction: column;
  gap: 1.8rem;
  opacity: 0;
  transform: translateY(15px);
}

.verses-group.active {
  display: flex;
  animation: fadeSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.verse-card {
  padding: 1.5rem 1.8rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border) !important;
  background: rgba(255, 255, 255, 0.01) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

.verse-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 242, 254, 0.2) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 242, 254, 0.03);
}

.verse-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.verse-card .quote-icon {
  font-size: 1.4rem;
  color: #00f2fe;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.verse-card:hover .quote-icon {
  opacity: 0.6;
}

/* Copy Button Styling */
.btn-copy {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.btn-copy i {
  font-size: 0.9rem;
}

.btn-copy:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.3);
  color: #00f2fe;
  transform: scale(1.08);
}

/* Tooltip text */
.btn-copy .tooltip-text {
  visibility: hidden;
  width: 65px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  margin-left: -32.5px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  pointer-events: none;
}

.btn-copy:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.verse-text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.verse-ref {
  display: block;
  text-align: right;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Divine Draw Widget */
.divine-draw-container {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem !important;
  border-radius: 24px !important;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.03) !important;
  background: radial-gradient(circle at 50% 0%, rgba(0, 242, 254, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
}

.draw-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(10px);
}

.divine-draw-header {
  margin-bottom: 2rem;
}

.draw-icon {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 4px 8px rgba(0, 242, 254, 0.2));
}

.divine-draw-header h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
  background: linear-gradient(135deg, #ffffff 50%, #b3f6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divine-draw-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

.draw-card-display {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  margin-bottom: 2rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.draw-card-content {
  transition: all 0.3s ease;
  width: 100%;
}

.draw-card-content .quote-icon {
  font-size: 1.8rem;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 0.8rem;
  display: inline-block;
}

#draw-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
  font-style: italic;
}

#draw-ref {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
.draw-card-content.shuffling {
  animation: shuffleGlow 0.12s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.draw-card-content.drawn {
  animation: popIn 0.45s ease forwards;
}

/* Spin Animation */
.animate-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shuffleGlow {
  0% {
    transform: scale(0.97) rotate(-0.5deg);
    opacity: 0.6;
    filter: blur(0.5px);
  }
  100% {
    transform: scale(1.03) rotate(0.5deg);
    opacity: 0.8;
    filter: blur(0px);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.92);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Scripture section */
@media (max-width: 992px) {
  .scripture-vault-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .divine-draw-container {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .scripture-tabs {
    justify-content: center;
  }
  
  .tab-btn {
    width: 100%;
    justify-content: center;
  }
  
  .verse-card {
    padding: 1.8rem;
  }
  
  .verse-text {
    font-size: 0.98rem;
  }

  .sunday-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.8rem !important;
  }
  .sunday-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   FIND A PARISH NEAR YOU (REDESIGNED CARDS + BANNER LAYOUT)
   ========================================================================== */

.find-parish-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}

/* 4-Column Zones Hub Grid */
.zones-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.zone-card-hub {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid var(--glass-border) !important;
  padding: 2.2rem 2rem !important;
  border-radius: 24px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.zone-card-hub:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 158, 11, 0.2) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.03) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.zone-hub-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.zone-hub-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.zone-card-hub:hover .zone-hub-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Glowing Theme Accents for Icon Wrappers */
.orange-glow {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.05);
}

.blue-glow {
  background: rgba(79, 172, 254, 0.08);
  border: 1px solid rgba(79, 172, 254, 0.2);
  color: #4facfe;
  box-shadow: 0 0 15px rgba(79, 172, 254, 0.05);
}

.cyan-glow {
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: #00f2fe;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}

.purple-glow {
  background: rgba(162, 89, 255, 0.08);
  border: 1px solid rgba(162, 89, 255, 0.2);
  color: #a259ff;
  box-shadow: 0 0 15px rgba(162, 89, 255, 0.05);
}

.zone-card-hub h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--white);
}

.zone-hub-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
}

.zone-hub-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.4;
}

.zone-hub-list li i {
  color: var(--text-muted);
  opacity: 0.6;
  font-size: 1.05rem;
  margin-top: 1px;
}

.zone-hub-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
  width: 100%;
}

.zone-hub-footer span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Full-Width Horizontal WhatsApp Banner */
.parish-whatsapp-banner {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 3rem !important;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  background: radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  position: relative;
  overflow: hidden;
  gap: 2.5rem;
}

.whatsapp-banner-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
  right: 15%;
  top: -60px;
  pointer-events: none;
  filter: blur(15px);
}

.whatsapp-banner-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-grow: 1;
}

.whatsapp-banner-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.25);
  flex-shrink: 0;
  animation: pulseGlow 2.5s infinite;
}

.whatsapp-banner-icon i {
  font-size: 1.85rem;
  color: var(--white);
}

.whatsapp-banner-text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.whatsapp-banner-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-width: 550px;
}

.find-parish-banner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 2rem !important;
  font-size: 1.02rem !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border: 1px solid rgba(37, 211, 102, 0.2) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: nowrap;
}

.find-parish-banner-btn:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.25) !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
}

/* Pulsating Badge Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    transform: scale(1);
  }
}

/* Responsive Parish Finder Styles */
@media (max-width: 992px) {
  .parish-whatsapp-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem !important;
    gap: 1.8rem;
  }
  
  .whatsapp-banner-left {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .whatsapp-banner-text p {
    max-width: 100%;
  }
  
  .find-parish-banner-btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .zone-card-hub {
    padding: 1.8rem 1.5rem !important;
    min-height: 260px;
  }
  
  .parish-whatsapp-banner {
    padding: 2rem 1.5rem !important;
  }
}

/* Custom Styles for Standalone Page Buttons */
.whatsapp-banner-right {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-shrink: 0;
}

.find-parish-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.95rem 2rem;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
}

.find-parish-map-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 992px) {
  .whatsapp-banner-right {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 0.8rem;
  }
  .find-parish-map-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   DEDICATED LEADERSHIP PORTAL PAGE
   ========================================================================== */

.leaders-page-body {
  overflow-x: hidden;
  background-color: #0b0f19;
}

.leaders-portal-main {
  padding-top: 2rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 5;
}

/* Grid Layout for leaders */
.leaders-portal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  justify-content: center;
}

.leader-portal-card {
  padding: 3rem 2.2rem !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 24px !important;
  position: relative;
  overflow: hidden;
}

.leader-portal-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.4s ease;
}

.leader-portal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leader-portal-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

/* Border Glow Colors */
.orange-border { border-color: rgba(245, 158, 11, 0.3); }
.blue-border { border-color: rgba(79, 172, 254, 0.3); }
.cyan-border { border-color: rgba(0, 242, 254, 0.3); }
.purple-border { border-color: rgba(162, 89, 255, 0.3); }
.pink-border { border-color: rgba(236, 72, 153, 0.3); }

.leader-portal-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.leader-portal-role {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* Active Roles Color Match for Tabs/Badges */
[data-leader-id="steve"] .leader-portal-role {
  color: #4facfe;
  background: rgba(79, 172, 254, 0.05);
  border-color: rgba(79, 172, 254, 0.15);
}
[data-leader-id="kayode"] .leader-portal-role {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.05);
  border-color: rgba(0, 242, 254, 0.15);
}
[data-leader-id="joe"] .leader-portal-role {
  color: #a259ff;
  background: rgba(162, 89, 255, 0.05);
  border-color: rgba(162, 89, 255, 0.15);
}
[data-leader-id="daniel"] .leader-portal-role {
  color: #ec4899;
  background: rgba(236, 72, 153, 0.05);
  border-color: rgba(236, 72, 153, 0.15);
}

.leader-portal-summary {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.btn-view-bio {
  padding: 0.6rem 1.2rem !important;
  font-size: 0.85rem !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--text-light) !important;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

/* Hover States for Cards */
.leader-portal-card:hover {
  transform: translateY(-8px) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.leader-portal-card:hover .leader-portal-avatar {
  transform: scale(1.05);
}

.leader-portal-card:hover .leader-portal-avatar img {
  transform: scale(1.06);
}

.leader-portal-card:hover .leader-portal-glow {
  border-width: 3px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

/* Active Highlight Matching Speaker Glows */
.leader-portal-card.active {
  transform: scale(1.02);
}

.leader-portal-card.active .btn-view-bio {
  background: var(--white) !important;
  color: #0b0f19 !important;
  font-weight: 700;
  border-color: var(--white) !important;
}

[data-leader-id="nat"].leader-portal-card.active { border-color: var(--primary) !important; box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 20px rgba(245, 158, 11, 0.1) !important; }
[data-leader-id="steve"].leader-portal-card.active { border-color: #4facfe !important; box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 20px rgba(79, 172, 254, 0.1) !important; }
[data-leader-id="kayode"].leader-portal-card.active { border-color: #00f2fe !important; box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 20px rgba(0, 242, 254, 0.1) !important; }
[data-leader-id="joe"].leader-portal-card.active { border-color: #a259ff !important; box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 20px rgba(162, 89, 255, 0.1) !important; }
[data-leader-id="daniel"].leader-portal-card.active { border-color: #ec4899 !important; box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 20px rgba(236, 72, 153, 0.1) !important; }

/* Interactive Details Bio Drawer Panel */
.bio-drawer-panel {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, margin-top 0.5s ease;
  margin-top: 0;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.bio-drawer-panel.open {
  max-height: 850px;
  opacity: 1;
  pointer-events: all;
  margin-top: 5rem;
  padding: 3.5rem 3rem !important;
  border: 1px solid var(--glass-border) !important;
}

/* Matching active-panel colored glows */
.nat-active-glow { border-color: rgba(245, 158, 11, 0.3) !important; box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 25px rgba(245, 158, 11, 0.08) !important; }
.steve-active-glow { border-color: rgba(79, 172, 254, 0.3) !important; box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 25px rgba(79, 172, 254, 0.08) !important; }
.kayode-active-glow { border-color: rgba(0, 242, 254, 0.3) !important; box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 25px rgba(0, 242, 254, 0.08) !important; }
.joe-active-glow { border-color: rgba(162, 89, 255, 0.3) !important; box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 25px rgba(162, 89, 255, 0.08) !important; }
.daniel-active-glow { border-color: rgba(236, 72, 153, 0.3) !important; box-shadow: 0 35px 70px rgba(0,0,0,0.5), 0 0 25px rgba(236, 72, 153, 0.08) !important; }

.bio-drawer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.bio-drawer-left {
  display: flex;
  justify-content: center;
  position: relative;
}

.bio-drawer-avatar-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bio-drawer-avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  animation: popIn 0.5s ease forwards;
}

.bio-drawer-avatar-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
  pointer-events: none;
}

.bio-drawer-right {
  display: flex;
  flex-direction: column;
}

.bio-drawer-header-info {
  margin-bottom: 1.5rem;
}

.bio-drawer-header-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* Active header custom badge adjustments inside panel */
.nat-active-glow #drawer-role { color: var(--primary); background: rgba(245, 158, 11, 0.05); border-color: rgba(245, 158, 11, 0.15); }
.steve-active-glow #drawer-role { color: #4facfe; background: rgba(79, 172, 254, 0.05); border-color: rgba(79, 172, 254, 0.15); }
.kayode-active-glow #drawer-role { color: #00f2fe; background: rgba(0, 242, 254, 0.05); border-color: rgba(0, 242, 254, 0.15); }
.joe-active-glow #drawer-role { color: #a259ff; background: rgba(162, 89, 255, 0.05); border-color: rgba(162, 89, 255, 0.15); }
.daniel-active-glow #drawer-role { color: #ec4899; background: rgba(236, 72, 153, 0.05); border-color: rgba(236, 72, 153, 0.15); }

.bio-drawer-mandate {
  position: relative;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 18px;
  border-left: 3px solid var(--primary);
  margin-bottom: 1.8rem;
}

.nat-active-glow .bio-drawer-mandate { border-left-color: var(--primary); }
.steve-active-glow .bio-drawer-mandate { border-left-color: #4facfe; }
.kayode-active-glow .bio-drawer-mandate { border-left-color: #00f2fe; }
.joe-active-glow .bio-drawer-mandate { border-left-color: #a259ff; }
.daniel-active-glow .bio-drawer-mandate { border-left-color: #ec4899; }

.drawer-quote-icon {
  font-size: 2.2rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.nat-active-glow .drawer-quote-icon { color: var(--primary); }
.steve-active-glow .drawer-quote-icon { color: #4facfe; }
.kayode-active-glow .drawer-quote-icon { color: #00f2fe; }
.joe-active-glow .drawer-quote-icon { color: #a259ff; }
.daniel-active-glow .drawer-quote-icon { color: #ec4899; }

#drawer-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  position: relative;
  z-index: 2;
  margin: 0;
}

.drawer-bio-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 2.2rem;
}

.drawer-tags-container {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
}

.drawer-tags-container span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.drawer-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.drawer-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-light);
}

.nat-active-glow .drawer-tag { color: var(--primary); border-color: rgba(245, 158, 11, 0.2); background: rgba(245, 158, 11, 0.03); }
.steve-active-glow .drawer-tag { color: #4facfe; border-color: rgba(79, 172, 254, 0.2); background: rgba(79, 172, 254, 0.03); }
.kayode-active-glow .drawer-tag { color: #00f2fe; border-color: rgba(0, 242, 254, 0.2); background: rgba(0, 242, 254, 0.03); }
.joe-active-glow .drawer-tag { color: #a259ff; border-color: rgba(162, 89, 255, 0.2); background: rgba(162, 89, 255, 0.03); }
.daniel-active-glow .drawer-tag { color: #ec4899; border-color: rgba(236, 72, 153, 0.2); background: rgba(236, 72, 153, 0.03); }

/* Responsive Leadership Portal Styling */
@media (max-width: 992px) {
  .bio-drawer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bio-drawer-left {
    justify-content: center;
  }
  
  .bio-drawer-avatar-wrapper {
    width: 220px;
    height: 220px;
  }
  
  .bio-drawer-header-info h3 {
    font-size: 1.8rem;
  }
  
  .bio-drawer-panel.open {
    padding: 2.5rem 2rem !important;
  }
}

@media (max-width: 576px) {
  .leaders-portal-grid {
    grid-template-columns: 1fr;
  }
  
  .leader-portal-card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  
  .bio-drawer-avatar-wrapper {
    width: 180px;
    height: 180px;
  }
  
  .bio-drawer-header-info h3 {
    font-size: 1.6rem;
  }
  
  #drawer-quote {
    font-size: 0.98rem;
  }
  
  .drawer-bio-text {
    font-size: 0.95rem;
  }
}

/* Homepage Responsive Overrides */
@media (max-width: 992px) {
  .vision-grid,
  .sunday-grid,
  .scripture-vault-grid,
  .bio-drawer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vision-image-inner {
    aspect-ratio: 16/9;
  }
  .parish-whatsapp-banner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .whatsapp-banner-left,
  .whatsapp-banner-right {
    width: 100%;
    justify-content: center;
  }
  .whatsapp-banner-left {
    flex-direction: column;
    align-items: center;
  }
  .zones-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Centralize buttons on tablet/mobile */
  .vision-actions,
  .sunday-actions,
  .hero-actions,
  .whatsapp-banner-right {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .zones-cards-grid {
    grid-template-columns: 1fr;
  }
  .sunday-visual {
    grid-template-columns: 1fr;
  }
  
  /* Make all action containers stack their buttons vertically */
  .vision-actions,
  .sunday-actions,
  .hero-actions,
  .whatsapp-banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  
  /* Expand buttons to full width on smaller screens for easier tapping */
  .vision-actions .btn,
  .sunday-actions .btn,
  .hero-actions .btn,
  .whatsapp-banner-right .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .scripture-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
  .divine-draw-container {
    text-align: center;
  }
  .divine-draw-header {
    align-items: center;
  }
}
