/* =====================================================
   Faith-Inspired Blood Donation Website Styling
   Inspired by faith.org.pk design pattern
   ===================================================== */

/* ================== CSS Variables ================== */
:root {
  --primary-red: #c62828;
  --primary-red-dark: #8e0000;
  --primary-red-light: #ff5f52;
  --accent-gold: #ffd54f;
  --accent-teal: #26a69a;
  --dark-bg: #1a1a2e;
  --darker-bg: #16213e;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --text-dark: #212121;
  --text-muted: #757575;
  --gradient-red: linear-gradient(135deg, #c62828 0%, #8e0000 100%);
  --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.2);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================== Global Styles ================== */
.faith-page {
  font-family: var(--font-body);
  overflow-x: hidden;
}

.faith-page h1, 
.faith-page h2, 
.faith-page h3, 
.faith-page h4, 
.faith-page h5, 
.faith-page h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ================== Hero Slider Section ================== */
.faith-hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.slide-content {
  max-width: 700px;
  padding: 120px 0 180px;
}

.slide-tagline {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 25px;
  border: 2px solid var(--accent-gold);
  border-radius: 30px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.slide-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.slide-content h1 span {
  display: block;
  color: var(--primary-red-light);
}

.slide-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.slide-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.btn-video {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-video:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

.video-icon {
  width: 55px;
  height: 55px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.video-icon i {
  color: var(--primary-red);
  font-size: 1rem;
  margin-left: 3px;
}

.btn-video:hover .video-icon {
  background: var(--accent-gold);
  transform: scale(1.1);
}

.btn-video:hover .video-icon i {
  color: var(--dark-bg);
}

/* Hero CTA Overlay */
.hero-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-bottom: 40px;
}

.hero-cta-overlay .hero-cta-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Slider Navigation */
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.hero-slider .owl-nav button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  font-size: 1.2rem !important;
  transition: var(--transition-smooth);
  pointer-events: all;
}

.hero-slider .owl-nav button:hover {
  background: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slider .owl-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.hero-slider .owl-dot.active {
  background: var(--primary-red) !important;
  transform: scale(1.3);
}

/* Responsive Slider */
@media (max-width: 991px) {
  .slide-content {
    padding: 100px 0 200px;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-slider .owl-nav {
    padding: 0 15px;
  }
  
  .hero-slider .owl-nav button {
    width: 45px;
    height: 45px;
  }
  
  .hero-slider .owl-dots {
    bottom: 140px;
  }
}

@media (max-width: 767px) {
  .hero-slide {
    min-height: auto;
  }
  
  .slide-content {
    padding: 100px 0 220px;
    text-align: center;
  }
  
  .slide-content h1 {
    font-size: 2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .slide-tagline {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
  
  .slide-buttons {
    justify-content: center;
  }
  
  .hero-cta-overlay {
    position: relative;
    padding: 30px 0;
    background: var(--gradient-dark);
  }
  
  .hero-cta-overlay .hero-cta-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-overlay .hero-cta-card {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-slider .owl-dots {
    bottom: 30px;
  }
  
  .hero-slider .owl-nav {
    display: none;
  }
}

/* ================== Hero Section (Static Fallback) ================== */
.faith-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
}

.faith-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/bg_1.jpg') center center / cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.faith-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.85) 100%);
  z-index: 2;
}

.faith-hero .container {
  position: relative;
  z-index: 3;
}

.faith-hero-content {
  padding: 100px 0;
}

.hero-tagline {
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 30px;
  animation: fadeInUp 0.8s ease forwards;
}

.faith-hero h1 {
  font-size: 4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.faith-hero h1 span {
  color: var(--primary-red-light);
  display: block;
}

.faith-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

/* Hero CTA Cards */
.hero-cta-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px 35px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-width: 200px;
  text-decoration: none;
}

.hero-cta-card:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  text-decoration: none;
}

.hero-cta-card .cta-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: var(--transition-smooth);
}

.hero-cta-card:hover .cta-icon {
  background: var(--white);
  transform: scale(1.1);
}

.hero-cta-card .cta-icon i {
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition-smooth);
}

.hero-cta-card:hover .cta-icon i {
  color: var(--primary-red);
}

.hero-cta-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  font-weight: 600;
}

.hero-cta-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 8px 0 0;
}

/* ================== Feature Cards Section ================== */
.faith-features {
  background: var(--light-bg);
  padding: 100px 0;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.feature-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: -180px;
}

@media (max-width: 991px) {
  .feature-cards-wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-strong);
}

.feature-card.featured {
  background: var(--gradient-red);
  color: var(--white);
}

.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-card.featured .feature-icon i {
  color: var(--white);
}

.feature-card.featured h3,
.feature-card.featured p {
  color: var(--white);
}

.feature-card.featured::before {
  background: var(--accent-gold);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--primary-red);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.feature-btn:hover {
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
}

.feature-card.featured .feature-btn {
  border-color: var(--white);
  color: var(--white);
}

.feature-card.featured .feature-btn:hover {
  background: var(--white);
  color: var(--primary-red);
}

/* ================== Statistics Section ================== */
.faith-stats {
  background: var(--gradient-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faith-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/moroccan-flower-dark.png') repeat;
  opacity: 0.05;
}

.faith-stats .container {
  position: relative;
  z-index: 2;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon i {
  font-size: 2rem;
  color: var(--white);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-number span {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ================== Events Section ================== */
.faith-events {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary-red);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--primary-red);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.event-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-red);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
}

.event-date .day {
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-content {
  padding: 25px;
}

.event-category {
  display: inline-block;
  background: #ffebee;
  color: var(--primary-red);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.event-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.event-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.event-card h3 a:hover {
  color: var(--primary-red);
}

.event-location {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.event-location i {
  margin-right: 8px;
  color: var(--primary-red);
}

.view-all-btn {
  text-align: center;
  margin-top: 50px;
}

.btn-primary-faith {
  display: inline-block;
  padding: 15px 40px;
  background: var(--gradient-red);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

.btn-primary-faith:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(198, 40, 40, 0.4);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-faith {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--primary-red);
  color: var(--primary-red);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-outline-faith:hover {
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none;
}

/* ================== About/Welcome Section ================== */
.faith-about {
  padding: 100px 0;
  background: var(--light-bg);
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-content h2 span {
  color: var(--primary-red);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.about-feature-text h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.about-feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================== CTA Section ================== */
.faith-cta {
  background: var(--gradient-red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faith-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.faith-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.faith-cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-block;
  padding: 15px 40px;
  background: var(--white);
  color: var(--primary-red);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-white:hover {
  background: var(--dark-bg);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-white {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-red);
  text-decoration: none;
}

/* ================== Team Section ================== */
.faith-team {
  padding: 100px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: var(--transition-smooth);
}

.team-social a:hover {
  background: var(--primary-red);
  color: var(--white);
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-info span {
  font-size: 0.9rem;
  color: var(--primary-red);
  font-weight: 500;
}

/* ================== Footer ================== */
.faith-footer {
  background: var(--darker-bg);
  color: var(--white);
  padding-top: 80px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-red);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--primary-red);
  transform: translateY(-5px);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.footer-links a::before {
  content: '→';
  margin-right: 10px;
  color: var(--primary-red);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--primary-red);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary-red-light);
}

/* Footer Responsive */
@media (max-width: 991px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .faith-footer {
    padding-top: 50px;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
    text-align: center;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-logo {
    margin-bottom: 20px !important;
  }
  
  .footer-logo img {
    height: 60px !important;
  }
  
  .footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-widget h4 {
    font-size: 1.1rem;
  }
  
  .footer-widget h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  
  .footer-links li {
    margin-bottom: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-contact ul {
    display: inline-block;
    text-align: left;
  }
  
  .footer-contact li {
    justify-content: flex-start;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .footer-widgets {
    gap: 25px;
    padding-bottom: 30px;
  }
  
  .footer-about p {
    font-size: 0.85rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
  }
  
  .footer-links ul {
    gap: 8px 15px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .footer-bottom {
    padding: 20px 15px;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
}

/* ================== Animations ================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ================== Responsive Adjustments ================== */
@media (max-width: 991px) {
  .faith-hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta-cards {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 575px) {
  .faith-hero h1 {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 0.9rem;
    padding: 6px 15px;
  }
  
  .hero-cta-card {
    min-width: 100%;
  }
  
  .feature-cards-wrapper {
    padding: 0 15px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
}

/* ================== Utility Classes ================== */
.text-primary-faith {
  color: var(--primary-red) !important;
}

.bg-primary-faith {
  background: var(--gradient-red) !important;
}

.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

/* ================== Success Stories Section ================== */
.faith-stories {
  padding: 100px 0;
  background: var(--light-bg);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.story-image {
  height: 200px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.story-card:hover .story-image img {
  transform: scale(1.1);
}

.story-content {
  padding: 25px;
}

.story-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.story-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-author-avatar {
  width: 45px;
  height: 45px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.story-author-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0 0 3px;
}

.story-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Chair Message Section */
.faith-message {
  padding: 100px 0;
  background: var(--white);
}

.message-card {
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.message-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
}

@media (max-width: 991px) {
  .message-content {
    grid-template-columns: 1fr;
  }
}

.message-image {
  position: relative;
  min-height: 400px;
  background: var(--gradient-red);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.message-image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.2);
}

.message-text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-quote {
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.9;
  font-style: italic;
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.message-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--primary-red);
  font-family: Georgia, serif;
  line-height: 1;
}

.message-author h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.message-author span {
  font-size: 0.95rem;
  color: var(--primary-red);
  font-weight: 500;
}

/* ================== Page Banner ================== */
.faith-page-banner {
  position: relative;
  min-height: 350px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.faith-page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/bg_2.jpg') center center / cover no-repeat;
  opacity: 0.3;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.85) 100%);
}

.faith-page-banner .container {
  position: relative;
  z-index: 2;
}

.banner-content {
  padding: 80px 0 40px;
}

.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
}

.breadcrumb-nav a:hover {
  color: var(--accent-gold);
}

.breadcrumb-nav span:last-child {
  color: var(--accent-gold);
}

.faith-page-banner h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.faith-page-banner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* ================== Vision Section ================== */
.faith-vision {
  padding: 100px 0;
  background: var(--light-bg);
}

.vision-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.vision-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.vision-content {
  padding: 40px;
  text-align: center;
}

.vision-content p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-dark);
}

/* ================== Objectives Section ================== */
.faith-objectives {
  padding: 100px 0;
  background: var(--white);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .objectives-grid {
    grid-template-columns: 1fr;
  }
}

.objective-item {
  background: var(--light-bg);
  padding: 25px 30px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-smooth);
}

.objective-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-soft);
}

.objective-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  font-family: var(--font-heading);
  line-height: 1;
}

.objective-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================== Focus Section ================== */
.faith-focus {
  padding: 100px 0;
  background: var(--gradient-dark);
}

.faith-focus .section-subtitle,
.faith-focus .section-title {
  color: var(--white);
}

.faith-focus .section-title span {
  color: var(--accent-gold);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }
}

.focus-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-smooth);
}

.focus-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.focus-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.focus-icon i {
  font-size: 2rem;
  color: var(--white);
}

.focus-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.focus-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ================== Licenses Section ================== */
.faith-licenses {
  padding: 100px 0;
  background: var(--light-bg);
}

.licenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .licenses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .licenses-grid {
    grid-template-columns: 1fr;
  }
}

.license-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.license-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.license-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.license-icon i {
  font-size: 2rem;
  color: var(--white);
}

.license-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.license-number {
  font-family: monospace;
  font-size: 0.95rem;
  background: var(--light-bg);
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 10px;
}

.license-authority {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* ================== Contact Styles ================== */
.faith-contact-info {
  padding: 100px 0;
  background: var(--white);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: var(--primary-red);
}

/* Offices Section */
.faith-offices {
  padding: 80px 0;
  background: var(--light-bg);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .offices-grid {
    grid-template-columns: 1fr;
  }
}

.office-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.office-header {
  background: var(--gradient-red);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.office-header i {
  font-size: 1.5rem;
  color: var(--white);
}

.office-header h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.office-body {
  padding: 25px;
}

.office-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.office-item:last-child {
  margin-bottom: 0;
}

.office-item i {
  color: var(--primary-red);
  margin-top: 3px;
}

.office-item p,
.office-item a {
  margin: 0;
  color: var(--text-muted);
  text-decoration: none;
}

.office-item a:hover {
  color: var(--primary-red);
}

/* Contact Form Section */
.faith-contact-form {
  padding: 100px 0;
  background: var(--white);
}

.contact-form-wrapper {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
}

.contact-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.contact-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contact-cta-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: var(--gradient-red);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.contact-cta-box h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* Social Connect Section */
.faith-social-connect {
  padding: 80px 0;
  background: var(--light-bg);
}

.social-links-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.social-link-card:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: var(--white);
}

.social-link-card i {
  font-size: 1.5rem;
}

.social-link-card.facebook { background: #1877f2; }
.social-link-card.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link-card.twitter { background: #1da1f2; }
.social-link-card.youtube { background: #ff0000; }

/* ================== Form Styles ================== */
.faith-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.faith-form .form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.faith-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.faith-form .form-group {
  margin-bottom: 20px;
}

/* ================== Thalassemia Page Styles ================== */
.faith-thalassemia-types {
  padding: 100px 0;
  background: var(--light-bg);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .types-grid {
    grid-template-columns: 1fr;
  }
}

.type-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-soft);
}

.type-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.type-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.type-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.type-card p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.type-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.type-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-dark);
}

.type-card ul li:last-child {
  border-bottom: none;
}

/* Symptoms Grid */
.faith-symptoms {
  padding: 100px 0;
  background: var(--white);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
}

.symptom-card {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}

.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.symptom-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.symptom-icon i {
  font-size: 1.3rem;
  color: var(--white);
}

.symptom-card h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.symptom-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Prevention Section */
.faith-prevention {
  padding: 100px 0;
  background: var(--light-bg);
}

.prevention-list {
  margin-top: 30px;
}

.prevention-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.prevention-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prevention-icon i {
  color: var(--white);
}

.prevention-text h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.prevention-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Help Section */
.faith-help {
  padding: 100px 0;
  background: var(--white);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

.help-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-smooth);
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.help-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.help-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.help-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.help-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================== Events Page Styles ================== */
.faith-events-page {
  padding: 100px 0;
  background: var(--light-bg);
}

.events-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .events-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .events-page-grid {
    grid-template-columns: 1fr;
  }
}

.event-page-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.event-page-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.event-page-card:hover .event-overlay {
  opacity: 1;
}

.event-link {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  transition: var(--transition-smooth);
}

.event-link:hover {
  background: var(--primary-red);
  color: var(--white);
}

.event-progress {
  margin-top: 20px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.progress-bar-wrapper {
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-red);
  border-radius: 10px;
}

.progress-target {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-sm {
  padding: 10px 20px !important;
  font-size: 0.9rem !important;
}

.faith-upcoming-banner {
  background: var(--gradient-red);
  padding: 60px 0;
}

.upcoming-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.upcoming-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.upcoming-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ================== Donation Page Styles ================== */
.faith-donation-impact {
  padding: 100px 0;
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.impact-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.impact-card.featured {
  background: var(--gradient-red);
  color: var(--white);
}

.impact-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.impact-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.impact-card.featured .impact-amount {
  color: var(--white);
}

.impact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.impact-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.impact-card.featured h3,
.impact-card.featured p {
  color: var(--white);
}

/* Donation Form Section */
.faith-donation-form {
  padding: 100px 0;
  background: var(--light-bg);
}

.donation-form-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.donation-form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.donation-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.amount-option {
  cursor: pointer;
}

.amount-option input {
  display: none;
}

.amount-box {
  display: inline-block;
  padding: 15px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.amount-option input:checked + .amount-box {
  border-color: var(--primary-red);
  background: var(--primary-red);
  color: var(--white);
}

.form-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.form-divider span {
  background: var(--white);
  padding: 0 20px;
  position: relative;
  color: var(--text-muted);
  font-weight: 600;
}

.payment-methods {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.payment-option {
  cursor: pointer;
  flex: 1;
  min-width: 150px;
}

.payment-option input {
  display: none;
}

.payment-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.payment-option input:checked + .payment-box {
  border-color: var(--primary-red);
  background: rgba(198, 40, 40, 0.05);
}

.payment-box i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.donation-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-bg);
}

.bank-details .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.bank-details .detail-item:last-child {
  border-bottom: none;
}

.bank-details .label {
  color: var(--text-muted);
}

.bank-details .value {
  font-weight: 600;
  color: var(--text-dark);
}

.sidebar-card.highlight {
  background: var(--gradient-red);
  color: var(--white);
}

.sidebar-card.highlight h3 {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-card.highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--white);
  color: var(--primary-red);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.contact-link:hover {
  background: var(--dark-bg);
  color: var(--white);
  text-decoration: none;
}

/* Why Donate Section */
.faith-why-donate {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  text-align: center;
  padding: 30px;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon i {
  font-size: 1.5rem;
  color: var(--primary-red);
}

.why-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================== Registration Pages Styles ================== */
.faith-why-register {
  padding: 100px 0;
  background: var(--white);
}

.benefits-list {
  margin-top: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.benefit-item i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

.benefit-item span {
  color: var(--text-dark);
}

.register-image img {
  border-radius: 20px;
}

/* Eligibility Section */
.faith-eligibility {
  padding: 100px 0;
  background: var(--light-bg);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 767px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
}

.eligibility-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.eligibility-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.eligibility-header i {
  font-size: 1.5rem;
}

.eligibility-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.eligibility-card.eligible .eligibility-header {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: var(--white);
}

.eligibility-card.not-eligible .eligibility-header {
  background: var(--gradient-red);
  color: var(--white);
}

.eligibility-card ul {
  list-style: none;
  padding: 25px;
  margin: 0;
}

.eligibility-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  padding-left: 25px;
  position: relative;
}

.eligibility-card ul li:last-child {
  border-bottom: none;
}

.eligibility-card.eligible ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.eligibility-card.not-eligible ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
}

/* Registration Form Section */
.faith-register-form {
  padding: 100px 0;
  background: var(--white);
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h3 i {
  color: var(--primary-red);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary-red);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 575px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

/* Volunteer Roles Section */
.faith-volunteer-roles {
  padding: 100px 0;
  background: var(--light-bg);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 991px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
}

.role-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.role-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.role-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.role-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.role-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.role-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================== About Image Wrapper ================== */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 20px;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-red);
  color: var(--white);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ================== Mission Detail ================== */
.faith-mission-detail {
  padding: 100px 0;
  background: var(--white);
}

.mission-image img {
  border-radius: 20px;
}

/* ================== Additional Responsive Fixes ================== */
@media (max-width: 1199px) {
  .faith-page-banner h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .faith-page-banner {
    min-height: 300px;
  }
  
  .faith-page-banner h1 {
    font-size: 2rem;
  }
  
  .banner-content {
    padding: 60px 0 30px;
  }
  
  .faith-contact-info {
    margin-top: 0;
    padding: 60px 0;
  }
  
  .contact-image-wrapper {
    min-height: 400px;
    margin-top: 40px;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .faith-page-banner h1 {
    font-size: 1.8rem;
  }
  
  .faith-page-banner p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .experience-badge {
    bottom: -10px;
    right: -10px;
    padding: 15px;
  }
  
  .experience-badge .years {
    font-size: 1.8rem;
  }
  
  .form-wrapper {
    padding: 25px;
  }
  
  .donation-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .hero-cta-cards {
    flex-direction: column;
  }
  
  .hero-cta-card {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
  
  .upcoming-content {
    text-align: center;
  }
  
  .upcoming-text h2 {
    font-size: 1.5rem;
  }
  
  .donation-amounts {
    justify-content: center;
  }
  
  .amount-box {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

/* ================== Additional Component Styles ================== */

/* Team Bio */
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.6;
}

/* Story Date */
.story-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.story-date i {
  color: var(--primary-red);
}

/* License Date & Description */
.license-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.license-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Empty State */
.empty-state {
  padding: 60px 20px;
  text-align: center;
}

.empty-state i {
  font-size: 4rem;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.empty-state h4 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-muted);
}

/* Modal Styles Override */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: var(--shadow-strong);
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px 25px;
}

.modal-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
}

.modal-body {
  padding: 25px;
}

/* Alert Styles */
.alert-success {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
}

/* Pagination Styles */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination {
  display: flex;
  gap: 5px;
}

.pagination .page-item .page-link {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition-smooth);
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
  background: var(--gradient-red);
  color: var(--white);
}

/* Rounded Image Utility */
.rounded-lg {
  border-radius: 20px !important;
}

/* Shadow Utilities */
.shadow-lg {
  box-shadow: var(--shadow-strong) !important;
}

/* Section Padding Adjustments for Inner Pages */
.faith-about,
.faith-vision,
.faith-objectives,
.faith-focus,
.faith-licenses,
.faith-team,
.faith-stories,
.faith-events-page,
.faith-donation-form,
.faith-donation-impact,
.faith-why-donate,
.faith-register-form,
.faith-why-register,
.faith-eligibility,
.faith-volunteer-roles,
.faith-thalassemia-types,
.faith-symptoms,
.faith-prevention,
.faith-help,
.faith-contact-info,
.faith-offices,
.faith-contact-form,
.faith-social-connect {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .faith-about,
  .faith-vision,
  .faith-objectives,
  .faith-focus,
  .faith-licenses,
  .faith-team,
  .faith-stories,
  .faith-events-page,
  .faith-donation-form,
  .faith-donation-impact,
  .faith-why-donate,
  .faith-register-form,
  .faith-why-register,
  .faith-eligibility,
  .faith-volunteer-roles,
  .faith-thalassemia-types,
  .faith-symptoms,
  .faith-prevention,
  .faith-help,
  .faith-contact-info,
  .faith-offices,
  .faith-contact-form,
  .faith-social-connect {
    padding: 60px 0;
  }
}

/* Fix for Bootstrap Grid on Faith Pages */
.faith-page .row {
  margin-left: -15px;
  margin-right: -15px;
}

.faith-page [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* Ensure images are responsive */
.faith-page img {
  max-width: 100%;
  height: auto;
}

/* ================== COMPREHENSIVE RESPONSIVE STYLES ================== */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .slide-content h1 {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Large Devices (1200px to 1399px) */
@media (max-width: 1399px) {
  .slide-content h1 {
    font-size: 3.2rem;
  }
  
  .hero-cta-card {
    padding: 20px 25px;
    min-width: 180px;
  }
  
  .feature-cards-wrapper {
    gap: 20px;
  }
}

/* Medium-Large Devices (992px to 1199px) */
@media (max-width: 1199px) {
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .slide-content p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-cta-card {
    padding: 18px 22px;
    min-width: 160px;
  }
  
  .hero-cta-card h3 {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stats-wrapper {
    gap: 20px;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .team-grid {
    gap: 20px;
  }
  
  .team-image {
    height: 250px;
  }
}

/* Tablet Devices (768px to 991px) */
@media (max-width: 991px) {
  /* Hero Slider */
  .hero-slide {
    min-height: 80vh;
  }
  
  .slide-content {
    padding: 80px 0 160px;
    max-width: 100%;
  }
  
  .slide-content h1 {
    font-size: 2.4rem;
  }
  
  .slide-tagline {
    font-size: 0.85rem;
    padding: 8px 18px;
    letter-spacing: 2px;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .hero-slider .owl-nav {
    padding: 0 10px;
  }
  
  .hero-slider .owl-nav button {
    width: 45px;
    height: 45px;
    font-size: 1rem !important;
  }
  
  .hero-slider .owl-dots {
    bottom: 100px;
  }
  
  /* Hero CTA Cards */
  .hero-cta-overlay {
    padding-bottom: 20px;
  }
  
  .hero-cta-overlay .hero-cta-cards {
    gap: 15px;
  }
  
  .hero-cta-card {
    padding: 15px 20px;
    min-width: 140px;
  }
  
  .hero-cta-card .cta-icon {
    width: 50px;
    height: 50px;
  }
  
  .hero-cta-card .cta-icon i {
    font-size: 1.2rem;
  }
  
  .hero-cta-card h3 {
    font-size: 0.9rem;
  }
  
  .hero-cta-card p {
    font-size: 0.8rem;
  }
  
  /* Feature Cards */
  .faith-features {
    padding: 60px 0;
    margin-top: 0;
  }
  
  .feature-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
  }
  
  .feature-card {
    padding: 35px 25px;
  }
  
  /* Stats Section */
  .faith-stats {
    padding: 60px 0;
  }
  
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
  }
  
  /* About Section */
  .faith-about {
    padding: 60px 0;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Section Headers */
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  /* Events Grid */
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .event-image {
    height: 180px;
  }
  
  /* Team Grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .team-image {
    height: 220px;
  }
  
  .team-info {
    padding: 20px;
  }
  
  .team-info h3 {
    font-size: 1.1rem;
  }
  
  /* Stories Grid */
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* CTA Section */
  .faith-cta {
    padding: 60px 0;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  /* Message Section */
  .message-content {
    grid-template-columns: 1fr;
  }
  
  .message-image {
    min-height: 300px;
  }
  
  .message-text {
    padding: 30px;
  }
  
  .message-quote {
    font-size: 1.1rem;
  }
}

/* Mobile Landscape (576px to 767px) */
@media (max-width: 767px) {
  /* Hero Slider */
  .hero-slide {
    min-height: auto;
  }
  
  .slide-content {
    padding: 80px 15px 50px;
    text-align: center;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .slide-tagline {
    font-size: 0.75rem;
    padding: 6px 15px;
    letter-spacing: 1.5px;
  }
  
  .slide-content p {
    font-size: 0.95rem;
  }
  
  .slide-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn-primary-faith,
  .btn-outline-white {
    padding: 12px 25px !important;
    font-size: 0.9rem;
  }
  
  .btn-video {
    gap: 10px;
    font-size: 0.9rem;
  }
  
  .video-icon {
    width: 45px;
    height: 45px;
  }
  
  .hero-slider .owl-nav {
    display: none;
  }
  
  .hero-slider .owl-dots {
    position: relative;
    bottom: 0;
    padding: 20px 0;
    background: var(--gradient-dark);
  }
  
  /* Hero CTA Cards */
  .hero-cta-overlay {
    position: relative;
    padding: 30px 15px;
    background: var(--gradient-dark);
  }
  
  .hero-cta-overlay .hero-cta-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-cta-card {
    width: 100%;
    max-width: 280px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-align: left;
  }
  
  .hero-cta-card .cta-icon {
    margin: 0;
    flex-shrink: 0;
  }
  
  .hero-cta-card h3 {
    margin: 0;
    font-size: 0.95rem;
  }
  
  .hero-cta-card p {
    margin: 5px 0 0;
  }
  
  /* Feature Cards */
  .faith-features {
    padding: 50px 0;
  }
  
  .feature-cards-wrapper {
    padding: 0 15px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon i {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
  }
  
  /* Stats Section */
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 10px;
    border-radius: 15px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .stat-icon i {
    font-size: 1.2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  /* About Section */
  .about-content {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .about-content h2 {
    font-size: 1.6rem;
  }
  
  .about-feature-item {
    justify-content: center;
  }
  
  .about-content .btn-primary-faith {
    display: block;
    width: 100%;
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-desc {
    font-size: 0.95rem;
  }
  
  /* Events Grid */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .event-card {
    border-radius: 15px;
  }
  
  .event-image {
    height: 200px;
  }
  
  .event-content {
    padding: 20px;
  }
  
  .event-card h3 {
    font-size: 1.1rem;
  }
  
  /* Team Grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }
  
  .team-card {
    border-radius: 15px;
  }
  
  .team-image {
    height: 180px;
  }
  
  .team-info {
    padding: 15px;
  }
  
  .team-info h3 {
    font-size: 1rem;
  }
  
  .team-info span {
    font-size: 0.8rem;
  }
  
  /* Stories Grid */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .story-image {
    height: 180px;
  }
  
  .story-content {
    padding: 20px;
  }
  
  /* CTA Section */
  .cta-content {
    padding: 0 15px;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons a {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Message Section */
  .message-card {
    border-radius: 15px;
    margin: 0 15px;
  }
  
  .message-image {
    min-height: 250px;
    padding: 30px;
  }
  
  .message-image img {
    width: 180px;
    height: 180px;
  }
  
  .message-text {
    padding: 25px;
  }
  
  .message-quote {
    font-size: 1rem;
    padding-left: 20px;
  }
  
  .message-quote::before {
    font-size: 3rem;
    top: -5px;
  }
  
  /* View All Button */
  .view-all-btn {
    margin-top: 30px;
    padding: 0 15px;
  }
  
  .view-all-btn a {
    display: block;
    text-align: center;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  /* Hero Slider */
  .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .slide-tagline {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  
  /* Stats */
  .stats-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .stat-item {
    padding: 15px 10px;
  }
  
  .stat-icon {
    width: 45px;
    height: 45px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  /* Team Grid */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .team-image {
    height: 250px;
  }
  
  /* Feature Cards */
  .feature-card {
    padding: 25px 15px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  /* About Features */
  .about-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  /* Section Title */
  .section-title {
    font-size: 1.3rem;
  }
  
  /* CTA Content */
  .cta-content h2 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .btn-white,
  .btn-outline-white {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (up to 400px) */
@media (max-width: 400px) {
  .slide-content h1 {
    font-size: 1.3rem;
  }
  
  .hero-cta-card {
    max-width: 100%;
  }
  
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .about-content h2 {
    font-size: 1.3rem;
  }
}

/* Fix Container Padding on Mobile */
@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .faith-stats .container,
  .faith-features .container,
  .faith-team .container,
  .faith-events .container,
  .faith-stories .container,
  .faith-about .container,
  .faith-cta .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Landscape Mode Fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-slide {
    min-height: 100vh;
  }
  
  .slide-content {
    padding: 60px 0 80px;
  }
  
  .slide-content h1 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    display: none;
  }
  
  .hero-cta-overlay {
    position: relative;
    padding: 15px;
  }
  
  .hero-cta-overlay .hero-cta-cards {
    flex-direction: row;
  }
  
  .hero-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}

/* Print Styles */
@media print {
  .faith-topbar,
  .faith-navbar,
  .faith-footer,
  .faith-cta {
    display: none;
  }
  
  .faith-page-banner {
    min-height: auto;
    padding: 20px 0;
    background: none !important;
  }
  
  .faith-page-banner h1 {
    color: #000;
  }
}
