/* --- 1. VARIABLES & RESET --- */
:root {
  /* NEW BLUE PALETTE */
  --primary-blue: #0056b3; /* Deep Royal Blue */
  --accent-blue: #4dabf7; /* Lighter Sky Blue */
  --light-blue-bg: #e7f5ff; /* Very light background tint */
  --dark-blue-text: #002a4d; /* Very dark blue for headings */

  --bg-body: #f8f9fa;
  --bg-card: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;

  --radius-xl: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --font-main: "Manrope", sans-serif;
  --container-width: 1300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  padding: 20px;
  padding-bottom: 100px; /* Space for fixed countdown */
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* --- UTILITIES --- */
.container {
  /* max-width: var(--container-width); */
  margin: 0 auto;
  padding: 0 15px;
}
.section-padding {
  padding: 100px 0;
}

.btn {
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}
.btn-primary:hover {
  background: #004494;
}

.btn-white {
  background: white;
  color: var(--primary-blue);
}
.btn-outline {
  border: 2px solid #ddd;
  background: transparent;
}
.btn-accent {
  background: var(--accent-blue);
  color: white;
}

.tag {
  display: inline-block;
  background: var(--light-blue-bg);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.3rem);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--dark-blue-text);
  font-weight: 800;
}

/* --- HERO SECTION --- */
.hero-wrapper {
  position: relative;
  height: 90vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 50px;
  color: white;
  margin-bottom: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 20, 50, 0.3),
    rgba(0, 20, 50, 0.7)
  );
  z-index: 1;
}
.hero-content,
.hero-nav {
  position: relative;
  z-index: 10;
  bottom: 25px;
}

/* NAVIGATION */
.hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-img {
  height: 80px; /* Adjust based on your logo aspect ratio */
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: 40px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: white;
  opacity: 0.9;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--accent-blue);
}

/* Hamburger Toggle */
.hamburger {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 10001;
}
.bar {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 6rem);
  max-width: 600px;
  font-weight: 300; /* Thin elegant font */
  letter-spacing: -1px;
  line-height: 1.1;
}
.hero-title b {
  font-weight: 700;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 42, 77, 0.95); /* Deep blue glass */
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  color: white;
  font-size: 2rem;
  margin: 15px 0;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s; /* Stagger effect handled in JS loop usually, simplified here */
}
.close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- ABOUT SECTION --- */
.about-section {
  display: flex;
  align-items: center;
  gap: 80px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 80px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.about-img {
  flex: 1;
  height: 550px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
/* Adding a decorative blue shape behind image */
.about-img::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-xl);
  z-index: 1;
}
.about-img img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
}

.about-text {
  flex: 1;
}
.highlight {
  color: var(--primary-blue);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
/* Underline effect for highlights */
.highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent-blue);
  opacity: 0.2;
  z-index: -1;
}
/* --- MEET THE MINISTER SECTION --- */
.minister-section {
  padding: 100px 0;
  background: white;
}

.minister-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Image Column */
.minister-img-col {
  flex: 1;
  position: relative;
}

.minister-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 600px;
  box-shadow: 0 20px 40px rgba(0, 42, 77, 0.15);
}

.minister-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.minister-frame:hover img {
  transform: scale(1.03);
}

/* Floating Badge */
.experience-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--primary-blue);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 42, 77, 0.3);
  z-index: 2;
}

/* Content Column */
.minister-content {
  flex: 1.2;
}

.minister-name {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.minister-bio {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.minister-quote {
  border-left: 4px solid var(--accent-blue);
  padding-left: 20px;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark-blue-text);
  margin-bottom: 40px;
  background: var(--light-blue-bg);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.minister-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  transition: 0.3s;
  border: 1px solid #eee;
}

.social-icon:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .minister-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .minister-img-col {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .minister-frame {
    height: 450px;
  }

  .experience-badge {
    left: 20px;
    bottom: 20px;
  }
}
.inline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light-blue-bg);
  padding: 4px 14px;
  border-radius: 20px;
  vertical-align: middle;
  margin: 0 5px;
  font-size: 0.7em;
  color: var(--primary-blue);
  font-weight: bold;
}

/* --- CALENDAR SECTION (NEW DESIGN) --- */
.calendar-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  margin-bottom: 80px;
  text-align: center;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}
.calendar-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
}
.calendar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
}

/* Top "Binder" Holes visual */
.calendar-card::before {
  content: "••••••";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  text-align: center;
  letter-spacing: 15px;
  color: #e0e0e0;
  font-size: 20px;
  z-index: 2;
}

.cal-header {
  background: var(--primary-blue);
  color: white;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.2rem;
}
.cal-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  background-image: radial-gradient(#f0f0f0 1px, transparent 1px);
  background-size: 10px 10px; /* Dot pattern */
}
.cal-event {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-blue-text);
  text-align: center;
  line-height: 1.4;
}
.cal-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-blue);
}

/* --- WEEKLY PROGRAMS --- */
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}
.program-card {
  background: white;
  padding: 35px;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--primary-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}
.program-card:hover {
  transform: translateX(5px);
}
.day-badge {
  background: var(--dark-blue-text);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
}
.time-slot {
  padding-top: 15px;
  border-top: 1px dashed #ddd;
  margin-top: 15px;
}
.time-slot:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.time-slot h4 {
  font-size: 1.15rem;
  margin-bottom: 5px;
  color: var(--text-main);
}
.time-slot p {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-slot p::before {
  content: "🕒";
  font-size: 0.8rem;
}

/* --- LIVE MINISTRATION --- */
.ministry-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.live-player {
  background: black;
  border-radius: var(--radius-md);
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.live-player img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: 0.5s;
}
.live-player:hover img {
  opacity: 0.4;
  transform: scale(1.05);
}
.live-content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
}
.live-tag {
  background: #ff0000;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.past-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 500px;
  overflow-y: auto;
  padding-right: 10px;
}
/* Custom scrollbar */
.past-list::-webkit-scrollbar {
  width: 6px;
}
.past-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.past-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
}
.past-item:hover {
  border-color: var(--primary-blue);
  background: var(--light-blue-bg);
}
.past-thumb {
  width: 100px;
  height: 70px;
  background: #ddd;
  border-radius: 8px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

/* --- GIVING SECTION --- */
.giving-section {
  background: linear-gradient(
    135deg,
    var(--dark-blue-text),
    var(--primary-blue)
  );
  color: white;
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.giving-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.giving-section h2 {
  color: white;
  margin-bottom: 15px;
}

/* --- CONTACT --- */
.contact-wrapper {
  display: flex;
  margin-bottom: 80px;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.contact-info {
  flex: 1;
  padding: 60px;
  background: var(--primary-blue);
  color: white;
}
.contact-form {
  flex: 1.5;
  padding: 60px;
}
.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid #eee;
  background: #f9f9f9;
  border-radius: 10px;
  font-family: inherit;
  margin-bottom: 20px;
  outline: none;
  transition: 0.3s;
}
.form-control:focus {
  border-color: var(--primary-blue);
  background: white;
}

/* --- FOOTER --- */
footer {
  background: var(--dark-blue-text);
  color: white;
  padding: 80px 0 30px 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 15px;
  color: #a0b4c4;
}
.footer-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

/* --- FIXED COUNTDOWN --- */
.countdown-card {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 680px;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.timer-digits {
  font-family: monospace;
  font-size: 1.4rem;
  color: var(--primary-blue);
  font-weight: 700;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-wrapper {
    padding: 30px;
    height: auto;
    min-height: 600px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .about-section {
    flex-direction: column;
    padding: 40px;
  }
  .about-img {
    width: 100%;
    height: 400px;
  }
  .ministry-grid {
    grid-template-columns: 1fr;
  }
  .live-player {
    height: 400px;
  }
  .contact-wrapper {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hide Desktop Nav */
  .nav-links {
    display: none;
  }
  /* Show Hamburger */
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .weekly-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .countdown-card {
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
  }
  .giving-section {
    padding: 40px 20px;
  }
}
/* =========================================
        NEW INNER PAGES STYLES
        ========================================= */

/* --- 1. REUSABLE INNER HERO --- */
.inner-hero {
  position: relative;
  height: 50vh; /* Shorter than homepage */
  min-height: 400px;
  background: url("https://images.unsplash.com/photo-1438232992991-995b7058bbb3?q=80&w=2073&auto=format&fit=crop")
    no-repeat center/cover;
  background-attachment: fixed; /* Parallax effect */
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space between Nav and Title */
  overflow: hidden;
}

/* Dark Blue Overlay for readability */
.inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 42, 77, 0.9),
    rgba(0, 86, 179, 0.7)
  );
  z-index: 1;
}

/* Ensure Nav and Content sit above overlay */
.inner-hero .hero-nav,
.inner-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px; /* Match container padding */
}

/* Hero Title Styling */
.inner-hero-content {
  text-align: center;
  padding-bottom: 60px;
  color: white;
}
.inner-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.inner-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- 2. ABOUT PAGE STYLES --- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.vm-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: 0.3s;
}
.vm-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
}
.vm-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
}

.history-strip {
  background: var(--light-blue-bg);
  padding: 80px 0;
  border-radius: var(--radius-xl);
  text-align: center;
}

/* --- 3. GIVE PAGE STYLES --- */
.give-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.give-card {
  flex: 1;
  background: white;
  padding: 50px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}
.give-card.highlight {
  background: var(--primary-blue);
  color: white;
  border: none;
}
.bank-details {
  background: #f8f9fa;
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.bank-row:last-child {
  border-bottom: none;
}

/* --- 4. WATCH PAGE STYLES --- */
.video-container {
  background: black;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 60px;
}
.sermon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.sermon-card {
  cursor: pointer;
  transition: 0.3s;
}
.sermon-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.play-btn {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}
.sermon-card:hover .play-btn {
  background: var(--primary-blue);
  transform: scale(1.1);
}

/* --- 5. UNITS / DEPARTMENTS STYLES --- */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.unit-card {
  background: white;
  padding: 35px;
  border-radius: var(--radius-md);
  border: 1px solid #eee;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.unit-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.unit-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue-bg);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* --- 6. CONTACT PAGE STYLES --- */
.contact-page-layout {
  display: flex;
  gap: 60px;
  background: white;
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.cp-left {
  flex: 1;
  padding-right: 40px;
  border-right: 1px solid #eee;
}
.cp-right {
  flex: 1.5;
}
.cp-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.cp-icon {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .inner-hero {
    height: 40vh;
    min-height: 350px;
  }
  .inner-hero-content h1 {
    font-size: 2.5rem;
  }
  .give-wrapper,
  .contact-page-layout {
    flex-direction: column;
  }
  .cp-left {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    padding-right: 0;
  }
}
/* =========================================
        UPDATED GIVE PAGE STYLES
        ========================================= */

.give-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Left: Text Content */
.give-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-blue-text);
}
.give-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}
.scripture-box {
  background: var(--light-blue-bg);
  border-left: 4px solid var(--primary-blue);
  padding: 20px;
  margin-bottom: 30px;
  font-style: italic;
  color: var(--primary-blue);
}

/* Right: Payment Form */
.donation-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

/* Currency Toggle */
.currency-tabs {
  display: flex;
  background: #f1f3f5;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 25px;
}
.currency-tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #888;
  transition: 0.3s;
}
.currency-tab.active {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Amount Input */
.amount-wrapper {
  position: relative;
  margin-bottom: 25px;
}
.currency-symbol {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark-blue-text);
}
.amount-input {
  width: 100%;
  padding: 18px 18px 18px 50px; /* Space for symbol */
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid #eee;
  border-radius: 12px;
  outline: none;
  transition: 0.3s;
}
.amount-input:focus {
  border-color: var(--primary-blue);
}

/* Category Grid */
.category-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.giving-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}
.type-radio {
  display: none;
} /* Hide actual radio button */
.type-card {
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}
.type-card:hover {
  border-color: var(--accent-blue);
}
/* Style when radio is checked (requires JS or peer selector, utilizing simple active class for demo) */
.type-radio:checked + .type-card {
  background: var(--light-blue-bg);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 700;
}

/* Pay Button */
.pay-btn {
  width: 100%;
  background: #0ba4db; /* Paystack Blue */
  color: white;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.pay-btn:hover {
  background: #0992c2;
  transform: translateY(-2px);
}

/* Bank Details Section */
.bank-transfer-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

@media (max-width: 900px) {
  .give-portal-grid {
    grid-template-columns: 1fr;
  }
}

/* GALLERY ON INDEX */
.leadership-section {
  position: relative;
  padding: 60px 0;
  background: white;
  border-radius: var(--radius-xl);
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.leadership-header {
  padding: 0 60px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.leadership-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-blue-text);
  margin-bottom: 0;
  white-space: nowrap;
}

.leadership-rule {
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, var(--primary-blue), transparent);
  border-radius: 2px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 60px;
}

.leader-card {
  text-align: center;
  padding: 0 20px 30px;
  border-right: 1px solid #f0f0f0;
  transition: 0.3s;
}

.leader-card:last-child {
  border-right: none;
}

.leader-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #e9ecef;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leader-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-blue-text);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.leader-bio {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .leader-card {
    border-right: none;
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .leadership-header {
    padding: 0 20px;
  }
}

.btn-gal {
  background: var(--primary-blue);
  color: white;
  display: inline-block;
  margin: 24px auto 0;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
}
