/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Variables from Logo */
:root {
  --primary-purple: #4a148c;
  --secondary-purple: #7b1fa2;
  --light-purple: #e1bee7;
  --primary-gold: #daa520;
  --dark-gold: #b8860b;
  --light-gold: #f4e4bc;
  --cream: #fff8dc;
  --white: #ffffff;
  --dark-text: #2c2c2c;
  --light-text: #666666;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* Top Navigation */
.top-nav {
  background: linear-gradient(135deg, var(--light-purple), var(--cream));
  padding: 8px 0;
  font-size: 12px;
  color: var(--light-text);
  border-bottom: 1px solid var(--light-purple);
}

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

.top-nav-left a {
  color: var(--primary-purple);
  text-decoration: none;
  margin-right: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.top-nav-left a:hover {
  color: var(--primary-gold);
  transform: translateY(-1px);
}

.top-nav-right span {
  margin: 0 5px;
  color: var(--primary-purple);
}

/* Main Header */
.main-header {
  background: linear-gradient(135deg, var(--white), var(--cream));
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(74, 20, 140, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-image {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(74, 20, 140, 0.2));
  border: 3px solid rgba(218, 165, 32, 0.3);
}

.logo:hover .logo-image {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(74, 20, 140, 0.3));
  border-color: rgba(218, 165, 32, 0.6);
}

.logo-text h1 {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.logo-text .tagline {
  color: var(--primary-purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-purple);
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
  border-radius: 2px;
  animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
  0% {
    box-shadow: 0 0 5px rgba(218, 165, 32, 0.5);
  }
  100% {
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
  }
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: white;
  box-shadow: 0 4px 15px rgba(74, 20, 140, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 20, 140, 0.4);
}

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

.btn-outline:hover {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 20, 140, 0.3);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.mobile-menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--primary-purple);
}

/* Hero Parallax Section */
.hero-parallax {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
  animation: parallaxFloat 8s ease-in-out infinite;
}

@keyframes parallaxFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 20, 140, 0.7) 0%,
    rgba(123, 31, 162, 0.5) 50%,
    rgba(218, 165, 32, 0.3) 100%
  );
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-crown,
.floating-cross {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  animation: floatElement 10s ease-in-out infinite;
}

.floating-crown {
  color: var(--primary-gold);
}

.floating-cross {
  color: var(--cream);
}

.floating-crown:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.floating-crown:nth-child(2) {
  top: 70%;
  right: 15%;
  animation-delay: 3s;
}
.floating-crown:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 6s;
}
.floating-cross:nth-child(4) {
  top: 40%;
  right: 25%;
  animation-delay: 2s;
}
.floating-cross:nth-child(5) {
  bottom: 40%;
  left: 70%;
  animation-delay: 5s;
}

@keyframes floatElement {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-40px) rotate(-5deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
    opacity: 0.6;
  }
}

.hero-content-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  animation: heroContentFade 2s ease-out;
}

@keyframes heroContentFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content-center h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-gold), var(--cream), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
  }
}

.hero-content-center p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  animation: subtitleSlide 2s ease-out 0.5s both;
}

@keyframes subtitleSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 0.95;
    transform: translateX(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: buttonsAppear 2s ease-out 1s both;
}

@keyframes buttonsAppear {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) rotate(-45deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(-45deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(-45deg) translateY(-5px);
  }
}

/* About Home Section */
.about-home {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--light-purple) 100%);
  position: relative;
  overflow: hidden;
}

.about-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 20, 140, 0.1) 0%, transparent 50%);
  animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
  border-radius: 2px;
}

.about-text .lead {
  font-size: 1.25rem;
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-text strong {
  color: var(--primary-purple);
  background: linear-gradient(135deg, var(--light-purple), transparent);
  padding: 2px 4px;
  border-radius: 3px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  animation: statCounter 2s ease-out;
}

@keyframes statCounter {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: numberGlow 3s ease-in-out infinite alternate;
}

.no-animation {
  display: block;
  font-size: 4.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.6;
}

@keyframes numberGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(218, 165, 32, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.6));
  }
}

.stat-label {
  font-size: 0.9rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
  transition: all 0.4s ease;
}

.about-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(74, 20, 140, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.4), rgba(218, 165, 32, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-purple);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: playButtonPulse 2s ease-in-out infinite;
}

@keyframes playButtonPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.play-button:hover {
  transform: scale(1.2);
  background: var(--primary-gold);
  color: white;
}

.cta-section {
  background: linear-gradient(135deg, var(--white), var(--light-gold));
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(74, 20, 140, 0.1);
  position: relative;
  z-index: 1;
  border: 1px solid var(--light-purple);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-label {
  color: var(--primary-purple);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.cta-location {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-invite {
  color: var(--light-text);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.cta-message {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 20px;
}

/* Featured Video Section */
.featured-video {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.featured-video::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveStars 20s linear infinite;
}

@keyframes moveStars {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50px, -50px);
  }
}

.featured-video h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.video-container {
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
}

.video-info {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.video-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.video-info p {
  font-size: 1.125rem;
  opacity: 0.9;
  line-height: 1.6;
}

/* Blog Section */
.blog-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 50%, var(--light-purple) 100%);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--light-text);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 20, 140, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--light-purple);
}

.blog-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(74, 20, 140, 0.2);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-content {
  padding: 30px;
}

.blog-category {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 15px 0 20px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.read-more {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.read-more::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--primary-gold);
}

.read-more:hover::after {
  transform: translateX(5px);
}

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

/* Programs Section */
.programs-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--cream) 50%, var(--white) 100%);
}

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

.programs-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.programs-text p {
  font-size: 1.125rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 40px;
}

.programs-list {
  list-style: none;
  margin-bottom: 40px;
}

.programs-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  color: var(--dark-text);
  transition: all 0.3s ease;
}

.programs-list li:hover {
  transform: translateX(10px);
  color: var(--primary-purple);
}

.programs-list i {
  color: var(--primary-gold);
  margin-right: 15px;
  font-size: 16px;
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.programs-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
  transition: all 0.4s ease;
}

.programs-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(74, 20, 140, 0.3);
}

.programs-image img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.programs-image:hover img {
  transform: scale(1.05);
}

/* Social Section */
.social-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gold) 100%);
  text-align: center;
}

.social-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.social-section p {
  font-size: 1.125rem;
  color: var(--light-text);
  margin-bottom: 60px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--dark-text);
  transition: all 0.4s ease;
}

.social-link:hover {
  transform: translateY(-15px);
}

.social-link i {
  font-size: 50px;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 50%;
  color: white;
  transition: all 0.4s ease;
  animation: socialPulse 3s ease-in-out infinite;
}

@keyframes socialPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(74, 20, 140, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(74, 20, 140, 0);
  }
}

.social-link:hover i {
  transform: scale(1.2) rotate(10deg);
}

.social-link.facebook i {
  background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.social-link.instagram i {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube i {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.twitter i {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-link span {
  font-weight: 600;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(218, 165, 32, 0.1) 0%, transparent 50%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(1.2);
  border: 2px solid rgba(218, 165, 32, 0.4);
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--light-gold);
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-section ul li:hover {
  opacity: 1;
  transform: translateX(5px);
}

.footer-section ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
}

.footer-section ul li i {
  margin-right: 10px;
  color: var(--primary-gold);
  width: 16px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.footer-social a:hover {
  background: var(--primary-gold);
  color: var(--primary-purple);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(218, 165, 32, 0.3);
  padding-top: 30px;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-nav .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-nav-left {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-header .container {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-buttons {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .hero-content-center h1 {
    font-size: 2.5rem;
  }

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

  .parallax-bg {
    background-attachment: scroll;
  }

  .about-content,
  .programs-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
    gap: 30px;
  }

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

  .social-links {
    gap: 30px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-parallax {
    height: 80vh;
  }

  .hero-content-center h1 {
    font-size: 2rem;
  }

  .logo-image {
    height: 60px;
    width: 60px;
  }

  .logo-text h1 {
    font-size: 20px;
  }
}

.main-header.scrolled {
  padding: 15px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 220, 0.95));
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 30px rgba(74, 20, 140, 0.15);
}

.main-header.scrolled .logo-image {
  height: 80px;
  width: 80px;
}

/* Modern Card Styles for About Page */

.page-hero {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveStars 20s linear infinite;
}

.page-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Section Badges */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Modern Cards */
.modern-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(74, 20, 140, 0.1);
  border: 1px solid var(--light-purple);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(74, 20, 140, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.card-content ul {
  list-style: none;
  margin-top: 20px;
}

.card-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--light-text);
}

.card-content ul li i {
  color: var(--primary-gold);
  font-size: 14px;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.mv-card h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
}

/* Story Section */
.story-section {
  padding: 120px 0;
  background: var(--white);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.story-text .lead {
  font-size: 1.25rem;
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Timeline */
.story-timeline {
  margin-top: 40px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: start;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Stats Card */
.story-stats-card {
  background: linear-gradient(135deg, var(--light-purple), var(--cream));
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.story-stats-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 30px;
}

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

.stat-card {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(74, 20, 140, 0.1);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.story-image {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(74, 20, 140, 0.2);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values Section Updates */
.values-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-purple) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  position: relative;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

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

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.value-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Leadership Section */
.leadership-section {
  padding: 120px 0;
  background: var(--white);
}

.leadership-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 20, 140, 0.15);
  border: 1px solid var(--light-purple);
  display: grid;
  grid-template-columns: 400px 1fr;
  transition: all 0.4s ease;
}

.leadership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(74, 20, 140, 0.2);
}

.leader-image {
  position: relative;
  overflow: hidden;
}

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

.leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.8), rgba(218, 165, 32, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leader-image:hover .leader-overlay {
  opacity: 1;
}

.leader-image:hover img {
  transform: scale(1.1);
}

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

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}

.leader-info {
  padding: 50px;
}

.leader-header {
  margin-bottom: 30px;
}

.leader-header h3 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.leader-title {
  font-size: 1.125rem;
  color: var(--primary-purple);
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.leader-credentials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.credential i {
  color: var(--primary-gold);
}

.leader-description p {
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.leader-specialties h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tag {
  background: linear-gradient(135deg, var(--light-purple), var(--cream));
  color: var(--primary-purple);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--primary-purple);
}

.leader-quote {
  background: linear-gradient(135deg, var(--light-gold), var(--cream));
  border-left: 4px solid var(--primary-gold);
  padding: 25px;
  border-radius: 15px;
  position: relative;
}

.leader-quote blockquote {
  font-style: italic;
  color: var(--primary-purple);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.leader-quote i {
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.fa-quote-left {
  margin-right: 10px;
}

.fa-quote-right {
  margin-left: 10px;
}

/* CTA Section */
.cta-section-page {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-page::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveStars 20s linear infinite;
}

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

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-content-center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content-center p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Additional Responsive Design for About Page */
@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

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

  .leadership-card {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .leader-info {
    padding: 30px;
  }

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

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

  .page-hero h1 {
    font-size: 2.5rem;
  }

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

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

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

/* ===== NEW STYLES FOR BLOG, CONTACT, AND MINISTRY PAGES ===== */

/* Ministry Page Styles */
.ministry-overview {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.ministry-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}

.ministry-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.stat-info {
  text-align: left;
}

.ministry-programs {
  padding: 120px 0;
  background: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.program-card {
  text-align: center;
  padding: 40px 30px;
}

.program-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 25px;
}

.program-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.program-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 25px;
}

.program-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--light-text);
}

.detail-item i {
  color: var(--primary-purple);
}

.program-features {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  background: linear-gradient(135deg, var(--light-purple), var(--cream));
  color: var(--primary-purple);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-times {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--cream) 100%);
}

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

.service-schedule {
  margin-top: 40px;
}

.service-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(74, 20, 140, 0.1);
}

.service-day {
  font-weight: 600;
  color: var(--primary-purple);
  min-width: 80px;
}

.service-time {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 5px;
}

.service-name {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.service-description {
  font-size: 0.9rem;
  color: var(--light-text);
}

.service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
}

.service-image img {
  width: 100%;
  height: auto;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.8), rgba(218, 165, 32, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image:hover .service-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.get-involved {
  padding: 120px 0;
  background: var(--white);
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.involvement-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(74, 20, 140, 0.1);
  border: 1px solid var(--light-purple);
  transition: all 0.4s ease;
}

.involvement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(74, 20, 140, 0.2);
}

.involvement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  margin: 0 auto 20px;
}

.involvement-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.involvement-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.involvement-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.involvement-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.involvement-link:hover i {
  transform: translateX(5px);
}

/* Contact Page Styles */
.contact-info-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-card {
  text-align: center;
  padding: 40px 30px;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 25px;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.contact-link i {
  margin-left: 5px;
}

.contact-form-section {
  padding: 120px 0;
  background: var(--white);
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--light-text);
}

.feature-item i {
  color: var(--primary-gold);
}

.contact-form-container {
  position: relative;
}

.contact-form {
  padding: 50px;
}

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

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--light-purple);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-purple);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  position: relative;
}

.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prayer-request-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
  color: white;
  text-align: center;
}

.prayer-content {
  max-width: 800px;
  margin: 0 auto;
}

.prayer-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
}

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

.prayer-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.prayer-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.map-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--cream) 100%);
}

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

.location-details {
  margin-top: 30px;
}

.detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.detail-item i {
  color: var(--primary-gold);
  font-size: 20px;
  margin-top: 5px;
}

.detail-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 5px;
}

.detail-item p {
  color: var(--light-text);
  line-height: 1.6;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
}

.map-placeholder {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
  border: 2px dashed var(--light-purple);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.map-placeholder h3 {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.map-placeholder p {
  color: var(--light-text);
  margin-bottom: 20px;
}

/* Blog Page Styles */
.featured-post-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-category {
  color: var(--primary-gold);
  font-weight: 600;
}

.post-date {
  color: var(--light-text);
}

.featured-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-content p {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 30px;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--dark-text);
  display: block;
}

.author-title {
  font-size: 0.9rem;
  color: var(--light-text);
}

.blog-categories {
  padding: 120px 0;
  background: var(--white);
}

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

.categories-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(74, 20, 140, 0.1);
  border: 1px solid var(--light-purple);
  transition: all 0.4s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(74, 20, 140, 0.2);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin: 0 auto 20px;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.category-card p {
  color: var(--light-text);
  font-size: 0.9rem;
}

.recent-posts {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--cream) 100%);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.blog-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.read-time {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.read-time i {
  margin-right: 5px;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 0.9rem;
  color: var(--dark-text);
  font-weight: 500;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--light-text);
}

.blog-pagination {
  text-align: center;
  margin-top: 60px;
}

.newsletter-section {
  padding: 120px 0;
  background: var(--white);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 25px;
}

.newsletter-info h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.newsletter-info p {
  color: var(--light-text);
  line-height: 1.6;
}

.subscribe-form .form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.subscribe-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--light-purple);
  border-radius: 25px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.subscribe-form .btn {
  padding: 15px 30px;
  border-radius: 25px;
  white-space: nowrap;
}

.form-note {
  font-size: 0.85rem;
  color: var(--light-text);
  text-align: center;
  margin: 0;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
  .ministry-stats,
  .prayer-stats {
    flex-direction: column;
    gap: 30px;
  }

  .service-content,
  .form-content,
  .map-content,
  .featured-post,
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .programs-grid,
  .contact-grid,
  .involvement-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .featured-content {
    padding: 30px;
  }

  .newsletter-content {
    padding: 40px;
  }

  .subscribe-form .form-group {
    flex-direction: column;
  }
}
