/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
  --brand-red: #C62828;
  --charcoal: #1A1A1A;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
  --text-main: #222222;
  --text-muted: #6B7280;
  --border-color: #E8E8E8;

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 16px 36px rgba(0, 0, 0, 0.09);

  --topbar-height: 38px;
  --navbar-height: 84px;

  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --transition: all 0.3s ease;
}

/* =========================================================
   BASE / GLOBAL
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  padding-top: calc(var(--topbar-height) + var(--navbar-height));
}

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

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

/* Utilities */
.section-padding {
  padding: 90px 0;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

.narrow {
  max-width: 820px;
}

/* =========================================================
   TYPOGRAPHY / SHARED SECTION STYLES
========================================================= */
.section-title,
.section-heading h2,
.section-title-row h2,
.welcome-content h2,
.cta-inner h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.section-heading h2,
.section-title-row h2,
.welcome-content h2,
.cta-inner h2 {
  margin-bottom: 1rem;
}

.section-heading p,
.section-subtext {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-link {
  color: var(--brand-red);
  font-weight: 600;
}

.section-link:hover {
  color: #a11f1f;
}

.section-link i {
  transition: transform 0.3s ease;
}

.section-link:hover i {
  transform: translateX(3px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;

  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  margin: 0 0.75rem;
  background-color: rgba(198, 40, 40, 0.35);
}

/* =========================================================
   TOP BAR
========================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;

  display: flex;
  align-items: center;
  width: 100%;
  height: var(--topbar-height);

  background-color: var(--charcoal);
  color: var(--white);

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--topbar-height);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
}

.topbar-link i {
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.topbar-link:hover,
.topbar-link:hover i {
  color: var(--brand-red);
}

.topbar-text {
  line-height: 1;
}

.social-link {
  gap: 0;
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */
.site-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  z-index: 1030;
  width: 100%;
  transition: top 0.3s ease;
}

.main-navbar {
  display: flex;
  align-items: center;
  min-height: var(--navbar-height);
  padding-top: 0;
  padding-bottom: 0;

  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar-shell {
  align-items: center;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.site-logo,
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
}

.brand-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-red);
}

.navbar-nav .nav-link {
  position: relative;
  margin-left: 1rem;
  padding: 0.5rem 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 600;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--brand-red);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--brand-red);
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0.25rem;
  border: 0;
  color: var(--charcoal);
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.nav-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  transition: var(--transition);
}

.nav-toggle-close {
  display: none;
}

.navbar-toggler:not(.collapsed) .nav-toggle-open {
  display: none;
}

.navbar-toggler:not(.collapsed) .nav-toggle-close {
  display: inline-flex;
}

.navbar-toggler:hover .nav-toggle-icon {
  color: var(--brand-red);
}

body.nav-scrolled .topbar {
  transform: translateY(-100%);
  opacity: 0;
}

body.nav-scrolled .site-header {
  top: 0;
}

/* ============================
   NAVBAR DROPDOWN (DESKTOP)
============================ */

/* Dropdown panel */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 14px;
  padding: 0.5rem 0;
  margin-top: 0.75rem;

  background-color: var(--white);
  box-shadow: var(--shadow-soft);
  min-width: 220px;
}

/* Dropdown links */
.main-navbar .dropdown-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);

  padding: 0.6rem 1.25rem;
  background-color: transparent;

  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Hover + focus */
.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
  background-color: rgba(198, 40, 40, 0.06);
  color: var(--brand-red);
}

/* Active dropdown item */
.main-navbar .dropdown-item.active {
  color: var(--brand-red);
  font-weight: 600;
  background-color: rgba(198, 40, 40, 0.08);
}

/* Parent active (Ministries highlighted when child active) */
.main-navbar .current-menu-parent > .nav-link,
.main-navbar .nav-link.active {
  color: var(--brand-red);
  font-weight: 600;
}

.main-navbar .dropdown-toggle::after {
  transition: transform 0.25s ease;
}

.main-navbar .dropdown.show > .nav-link::after {
  transform: rotate(180deg);
}

/* ============================
   NAVBAR DROPDOWN (MOBILE)
============================ */
@media (max-width: 991.98px) {
  .main-navbar .dropdown-menu {
    position: static;
    float: none;

    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    min-width: 100%;
    padding: 0;
  }

  .main-navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Indent child items visually */
  .main-navbar .dropdown-menu .dropdown-item {
    padding-left: 2.25rem;
  }

  /* Remove hover background flicker on mobile */
  .main-navbar .dropdown-item:hover {
    background-color: transparent;
  }
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero-row {
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: opacity 1.4s ease-in-out, transform 6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  color: var(--white);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-content h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-content p {
  max-width: 680px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  position: relative;
  z-index: 3;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-content .hero-kicker {
  animation-delay: 0.15s;
}

.hero-content h1 {
  animation-delay: 0.3s;
}

.hero-content p {
  animation-delay: 0.45s;
}

.hero-content .hero-actions {
  animation-delay: 0.6s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
}

.hero-indicator {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45);
  transition: all 0.35s ease;
}

.hero-indicator.active {
  width: 28px;
  background-color: var(--white);
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition);
}

.btn-brand {
  background-color: var(--brand-red);
  border: 1px solid var(--brand-red);
  color: var(--white);
}

.btn-brand:hover {
  background-color: #a91f1f;
  border-color: #a91f1f;
  color: var(--white);
}

.btn-light-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

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

.btn-white-solid {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--brand-red);
}

.btn-white-solid:hover {
  background-color: #f3f3f3;
  border-color: #f3f3f3;
  color: var(--brand-red);
}

.btn-white-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-white-outline:hover {
  background-color: var(--white);
  color: var(--brand-red);
  border-color: var(--white);
}

/* =========================================================
   WELCOME HOME SECTION
========================================================= */
.welcome-section {
  position: relative;
  padding: 90px 0 85px;
  background-color: var(--light-bg);
}

.welcome-content {
  max-width: 860px;
}

.welcome-content h2 {
  margin-bottom: 1.4rem;
}

.welcome-content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background-color: var(--brand-red);
}

.welcome-content p {
  margin-bottom: 1.15rem;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.95;
}

.welcome-content p:last-child {
  margin-bottom: 0;
}

.welcome-lead {
  color: #505761;
  font-size: 1.08rem;
}

/* =========================================================
   JOIN US FOR WORSHIP
========================================================= */
.worship-section {
  position: relative;
  padding: 90px 0;
  background-color: var(--white);
}

.worship-section .section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.worship-cards-row {
  margin-top: 0.5rem;
}

.worship-card,
.event-card-vertical {
  position: relative;
  overflow: hidden;
  height: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.worship-card {
  padding: 2rem 1.5rem;
}

.worship-card::before,
.event-card-vertical::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), rgba(198, 40, 40, 0.35));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.worship-card:hover,
.event-card-vertical:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(198, 40, 40, 0.18);
}

.worship-card:hover::before,
.event-card-vertical:hover::before {
  transform: scaleX(1);
}

.worship-card-icon,
.event-card-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.35rem;
  border-radius: 50%;
  background-color: var(--brand-red);
  color: var(--white);
  font-size: 1.4rem;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.worship-card:hover .worship-card-icon,
.event-card-vertical:hover .event-card-icon {
  transform: scale(1.05);
  background-color: #b82222;
}

.worship-card h3,
.event-card-vertical h3 {
  margin-bottom: 0.45rem;
  color: var(--charcoal);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.worship-meta,
.event-meta {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.worship-time,
.event-time {
  color: var(--brand-red);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.event-time {
  margin-bottom: 0.8rem;
}

.worship-times-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.worship-time-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.worship-time-label {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =========================================================
   RECENT SERMONS
========================================================= */
.sermons-section {
  padding: 90px 0;
  background-color: var(--white);
}

.content-card {
  height: 100%;
  overflow: hidden;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.content-image-wrap {
  display: block;
  overflow: hidden;
}

.content-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.content-body {
  padding: 1.4rem 1.35rem 1.5rem;
}

.content-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.content-body h3 a {
  color: var(--charcoal);
}

.content-body h3 a:hover {
  color: var(--brand-red);
}

.content-body p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.meta-text {
  margin-bottom: 0.5rem;
  color: #8a8a8a;
  font-size: 0.9rem;
}

.sermon-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.sermon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.sermon-image-link {
  display: block;
  overflow: hidden;
}

.sermon-card .content-image {
  transform: scale(1);
  transition: transform 0.5s ease;
}

.sermon-card:hover .content-image,
.sermon-card:focus-within .content-image {
  transform: scale(1.06);
}

.sermon-title {
  margin-bottom: 0.45rem;
}

.sermon-title a {
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.sermon-card:hover .sermon-title a,
.sermon-card:focus-within .sermon-title a,
.sermon-title a:hover {
  color: var(--brand-red);
}

.sermon-card .meta-text {
  margin-bottom: 0.45rem;
}

.sermon-card .content-body p {
  line-height: 1.6;
}

/* =========================================================
   OUR MINISTRIES
========================================================= */
.ministries-section {
  padding: 90px 0;
  background-color: var(--light-bg);
}

.ministries-section .ministry-card {
  height: 100%;
  overflow: hidden;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ministries-section .ministry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.ministries-section .ministry-image-link {
  display: block;
  overflow: hidden;
}

.ministries-section .ministry-image {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.ministries-section .ministry-card:hover .ministry-image,
.ministries-section .ministry-card:focus-within .ministry-image {
  transform: scale(1.06);
}

.ministries-section .ministry-body {
  position: relative;
  padding: 2.2rem 1.25rem 1.35rem;
}

.ministries-section .ministry-icon {
  position: absolute;
  top: 0;
  left: 1.2rem;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--brand-red);
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 8px 18px rgba(198, 40, 40, 0.2);
}

.ministries-section .ministry-title {
  margin-bottom: 0.6rem;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.ministries-section .ministry-title a {
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.ministries-section .ministry-card:hover .ministry-title a,
.ministries-section .ministry-card:focus-within .ministry-title a,
.ministries-section .ministry-title a:hover {
  color: var(--brand-red);
}

.ministries-section .ministry-body p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

/* =========================================================
   HOME – PHOTO GALLERY (FEATURED SLIDER)
========================================================= */

.gallery-feature {
  background-color: var(--white);
  padding-top: 90px;
  padding-bottom: 90px;

}

/* Slider shell */
.gallery-slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}

/* Track */
.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Individual slide */
.gallery-slide {
  flex: 0 0 calc(50% - 0.75rem);
  border-radius: 18px;
  overflow: hidden;
  background-color: #f3f3f3;
  box-shadow: var(--shadow-soft);
}

/* Images */
.gallery-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  display: grid;
  place-items: center;

  background-color: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);

  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.gallery-nav:hover {
  background-color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav.prev {
  left: 1rem;
}

.gallery-nav.next {
  right: 1rem;
}

.gallery-nav i {
  font-size: 1.1rem;
}

/* =========================================================
   DOT INDICATORS
========================================================= */

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.gallery-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d1d5db;
  transition: all 0.3s ease;
}

.gallery-dots .dot.active {
  width: 22px;
  border-radius: 999px;
  background-color: var(--brand-red);
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Tablets */
@media (max-width: 991.98px) {
  .gallery-slide {
    flex: 0 0 100%;
  }

  .gallery-slide img {
    height: 340px;
  }

  .gallery-nav.prev {
    left: 0.75rem;
  }

  .gallery-nav.next {
    right: 0.75rem;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .gallery-slide img {
    height: 280px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav i {
    font-size: 1rem;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    transition: none;
  }

  .gallery-nav {
    transition: none;
  }
}

/* =========================================================
   UPCOMING EVENTS
========================================================= */
.events-section {
  padding: 90px 0;
  background-color: var(--white);
  position: relative;
}

.events-cards-row {
  margin-top: 0.5rem;
}

.event-card-vertical {
  padding: 2rem 1.5rem;
}

.event-location {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.event-location i {
  color: var(--brand-red);
}

/* =========================================================
   CTA / COMMUNITY SECTION
========================================================= */
.community-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, #c62828 0%, #a91f1f 100%);
  color: var(--white);
}

.community-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 32%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.08rem;
  line-height: 1.85;
}

.cta-actions {
  position: relative;
  z-index: 2;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  padding: 72px 0 24px;
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
}

.footer-main {
  margin-bottom: 0.5rem;
}

.footer-brand-link {
  color: inherit;
}

.footer-brand-title {
  color: var(--white);
}

.footer-brand-subtitle {
  color: var(--brand-red);
}

.site-footer h4 {
  margin-bottom: 1rem;
  color: var(--brand-red);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer-text,
.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-intro {
  max-width: 340px;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-service-times li {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  margin-bottom: 0.85rem;
}

.footer-service-label {
  color: var(--white);
  font-weight: 700;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.contact-list i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--brand-red);
}

.contact-list a {
  color: rgba(255, 255, 255, 0.82);
}

.contact-list a:hover {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-social-link:hover {
  background-color: var(--brand-red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-note {
  text-align: right;
}

/* =========================================================
   RESPONSIVE - BELOW 992PX
========================================================= */
@media (max-width: 991.98px) {
  :root {
    --navbar-height: 78px;
  }

  .section-padding,
  .sermons-section,
  .ministries-section,
  .events-section,
  .community-cta,
  .worship-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .site-footer {
    padding: 64px 0 22px;
  }

  .footer-intro {
    max-width: 100%;
  }

  .main-navbar {
    align-items: flex-start;
    min-height: auto;
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .navbar-shell {
    align-items: flex-start;
  }

  .navbar-brand {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.15rem;
    border-top: 1px solid #e8e8e8;
  }

  .navbar-collapse.show {
    max-height: 70vh;
    overflow-y: auto;
  }

  .navbar-nav {
    width: 100%;
    align-items: flex-start !important;
    gap: 0;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.38rem 0;
    font-size: 1rem;
    line-height: 1.35;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .hero-row {
    min-height: 85vh;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 7vw, 4rem);
  }

  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-indicators {
    bottom: 1.5rem;
  }

  .welcome-section {
    padding: 75px 0 72px;
  }

  .welcome-content {
    max-width: 760px;
  }

  .welcome-content p {
    line-height: 1.85;
  }

  .worship-section .section-heading {
    margin-bottom: 2.5rem;
  }

  .worship-card,
  .event-card-vertical {
    padding: 1.8rem 1.35rem;
  }

  .worship-time,
  .event-time {
    font-size: 1.65rem;
  }

  .sermon-card .content-image {
    height: 230px;
  }

  .ministries-section .ministry-image {
    height: 200px;
  }

  .ministries-section .ministry-title {
    font-size: 1.3rem;
  }

  .cta-inner {
    max-width: 700px;
  }

  .cta-inner p {
    font-size: 1rem;
  }
}

/* =========================================================
   RESPONSIVE - BELOW 768PX
========================================================= */
@media (max-width: 767.98px) {
  :root {
    --topbar-height: 46px;
  }

  body {
    padding-top: calc(var(--topbar-height) + var(--navbar-height));
  }

  .topbar-left,
  .topbar-right {
    gap: 0.4rem;
  }

  .topbar-text {
    display: none;
  }

  .topbar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    gap: 0;
    font-size: 0.95rem;
  }

  .topbar-link i {
    margin: 0;
    font-size: 0.95rem;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .footer-bottom,
  .footer-bottom-note {
    text-align: center;
  }
}

/* =========================================================
   RESPONSIVE - BELOW 576PX
========================================================= */
@media (max-width: 575.98px) {
  .site-logo,
  .footer-logo {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.75rem;
  }

  .navbar-toggler {
    width: 40px;
    height: 40px;
  }

  .nav-toggle-icon {
    font-size: 1.45rem;
  }

  .navbar-collapse {
    margin-top: 0.45rem;
    padding-top: 0.6rem;
  }

  .navbar-nav .nav-link {
    padding: 0.34rem 0;
    font-size: 0.98rem;
  }

  .hero-row {
    min-height: 78vh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

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

  .hero-content p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-kicker {
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
  }

  .hero-indicator {
    width: 8px;
    height: 8px;
  }

  .hero-indicator.active {
    width: 22px;
  }

  .btn,
  .btn-brand,
  .btn-light-outline,
  .btn-white-solid,
  .btn-white-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .section-eyebrow::before,
  .section-eyebrow::after {
    width: 18px;
    margin: 0 0.45rem;
  }

  .welcome-section {
    padding: 62px 0 58px;
  }

  .welcome-content h2 {
    margin-bottom: 1.15rem;
  }

  .welcome-content h2::after {
    width: 56px;
    height: 3px;
    margin-top: 0.85rem;
  }

  .welcome-content p,
  .welcome-lead {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .worship-section,
  .sermons-section,
  .ministries-section,
  .events-section,
  .community-cta {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .worship-section .section-heading {
    margin-bottom: 2rem;
  }

  .worship-card,
  .event-card-vertical {
    padding: 1.6rem 1.2rem;
    border-radius: 18px;
  }

  .worship-card-icon,
  .event-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .worship-card h3,
  .event-card-vertical h3 {
    font-size: 1.15rem;
  }

  .worship-meta,
  .event-meta {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
  }

  .worship-time,
  .event-time {
    font-size: 1.5rem;
  }

  .event-location {
    font-size: 0.92rem;
  }

  .sermon-card .content-image,
  .content-image {
    height: 220px;
  }

  .sermon-title a {
    font-size: 1.15rem;
  }

  .ministries-section .ministry-image {
    height: 210px;
  }

  .ministries-section .ministry-body {
    padding: 2.1rem 1.15rem 1.25rem;
  }

  .ministries-section .ministry-icon {
    width: 50px;
    height: 50px;
    left: 1rem;
    font-size: 1.05rem;
  }

  .ministries-section .ministry-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .ministries-section .ministry-body p {
    font-size: 0.97rem;
    max-width: 100%;
  }

  .site-footer {
    padding: 56px 0 20px;
  }

  .site-footer h4 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
  }

  .footer-text,
  .footer-links li,
  .footer-links a,
  .contact-list a,
  .contact-list span {
    font-size: 0.93rem;
    line-height: 1.75;
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
  }
}

/* =========================================================
   REDUCED MOTION / ACCESSIBILITY
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-indicator,
  .worship-card,
  .worship-card::before,
  .worship-card-icon,
  .event-card-vertical,
  .event-card-vertical::before,
  .event-card-icon,
  .sermon-card,
  .sermon-card .content-image,
  .sermon-title a,
  .ministries-section .ministry-card,
  .ministries-section .ministry-image,
  .ministries-section .ministry-title a,
  .section-link i,
  .footer-social-link {
    transition: none;
  }

  .hero-content > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .worship-card:hover,
  .event-card-vertical:hover,
  .sermon-card:hover,
  .ministries-section .ministry-card:hover {
    transform: none;
  }

  .worship-card:hover .worship-card-icon,
  .event-card-vertical:hover .event-card-icon,
  .sermon-card:hover .content-image,
  .sermon-card:focus-within .content-image,
  .ministries-section .ministry-card:hover .ministry-image,
  .ministries-section .ministry-card:focus-within .ministry-image {
    transform: none;
  }
}

/* ======================================================
   ABOUT PAGE – PAGE HERO
====================================================== */
.page-hero {
  padding: 120px 0 110px;
}

.page-hero-red {
  background: linear-gradient(135deg, #c62828 0%, #a91f1f 100%);
  color: var(--white);
}

.page-hero-content {
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

/* ======================================================
   ABOUT – OUR STORY
====================================================== */
.about-story-section {
  padding: 90px 0;
}

.about-story-content h2 {
  margin-bottom: 1.2rem;
}

.about-story-content p {
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

/* Quote */
.story-quote {
  margin: 1.6rem 0;
  padding: 1.25rem 1.45rem;
  border-left: 4px solid var(--brand-red);
  background-color: rgba(198, 40, 40, 0.06);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  border-radius: 8px;
}

/* Image + Caption */
.about-story-figure {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.about-story-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-story-caption {
  margin-top: 1rem;
  line-height: 1.4;
  text-align: center;
}

.about-story-caption strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
}

.about-story-caption span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-red);
}

/* ======================================================
   ABOUT – MISSION & MANDATE
====================================================== */
.about-mission-section {
  padding: 90px 0;
  background-color: var(--white);
}

.about-mission-block {
  position: relative;
  height: 100%;
  padding: 2.8rem 2.3rem;
  border-radius: 20px;
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Top accent strip */
.about-mission-block::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-red),
    rgba(198, 40, 40, 0.35)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.about-mission-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(198, 40, 40, 0.35);
}

.about-mission-block:hover::before {
  transform: scaleX(1);
}

/* Icon */
.about-icon-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: var(--brand-red);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.about-mission-block:hover .about-icon-ring {
  transform: scale(1.06);
  background-color: #b82222;
}

.about-mission-block h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

/* Mandate quote */
.mandate-quote {
  margin: 1.6rem 0;
  padding: 1.25rem 1.45rem;
  border-left: 4px solid var(--brand-red);
  background-color: rgba(198, 40, 40, 0.06);
  font-style: italic;
  line-height: 1.75;
  border-radius: 8px;
}

/* ======================================================
   THE PILLARS OF OUR FAITH
====================================================== */
.pillars-section {
  padding: 90px 0;
}

.pillars-intro {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.pillar-card {
  position: relative;
  height: 100%;
  padding: 2.1rem 1.6rem 1.9rem;
  background-color: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-red),
    rgba(198, 40, 40, 0.35)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(198, 40, 40, 0.35);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background-color: var(--brand-red);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.35rem;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.06);
  background-color: #b82222;
}

.pillar-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.pillar-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.pillar-ref {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-red);
}

/* ======================================================
   MEET OUR PASTOR
====================================================== */
.pastor-section {
  background-color: var(--white);
}

.pastor-row {
  margin-top: 2.5rem;
}

.pastor-image-wrap {
  max-width: 360px;
  margin: 0 auto;
}

.pastor-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.pastor-content h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}

.pastor-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 1.2rem;
}

.pastor-content p {
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

/* Social */
.pastor-social {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.6rem;
}

.pastor-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(198, 40, 40, 0.08);
  display: grid;
  place-items: center;
  color: var(--brand-red);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pastor-social a:hover {
  background-color: var(--brand-red);
  color: var(--white);
  transform: translateY(-2px);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 991.98px) {
  .about-story-section,
  .about-mission-section,
  .pillars-section {
    padding: 75px 0;
  }

  .about-story-figure {
    max-width: 360px;
  }

  .pastor-row {
    margin-top: 2rem;
  }

  .pastor-image-wrap {
    max-width: 300px;
  }
}

@media (max-width: 575.98px) {
  .about-story-section,
  .about-mission-section,
  .pillars-section {
    padding: 62px 0;
  }

  .about-story-content {
    text-align: center;
  }

  .about-story-figure {
    max-width: 300px;
    margin-top: 1.5rem;
  }

  .pillar-card {
    padding: 1.8rem 1.4rem;
  }

  .pillar-icon {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }

  .pastor-content {
    text-align: center;
  }

  .pastor-social {
    justify-content: center;
  }

  .pastor-image-wrap {
    max-width: 260px;
  }
}

/* ======================================================
   REDUCED MOTION
====================================================== */
@media (prefers-reduced-motion: reduce) {
  .about-mission-block,
  .about-mission-block::before,
  .pillar-card,
  .pillar-card::before,
  .about-icon-ring,
  .pillar-icon {
    transition: none;
  }

  .about-mission-block:hover,
  .pillar-card:hover {
    transform: none;
  }

  .about-mission-block:hover .about-icon-ring,
  .pillar-card:hover .pillar-icon {
    transform: none;
  }
}

/* ======================================================
   MINISTRIES PAGE (SCOPED)
====================================================== */
/* Main Cards */
.ministries-page .ministry-card {
  display: flex;
  height: 100%;
  max-width: 100%;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Image column */
.ministries-page .ministry-image {
  flex: 0 0 40%;
  max-width: 40%;
  background-color: #f3f3f3; /* graceful fallback */
}

.ministries-page .ministry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content column */
.ministries-page .ministry-content {
  flex: 1;
  padding: 1.6rem 1.6rem 1.7rem;
}

/* Header */
.ministries-page .ministry-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.ministries-page .ministry-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: var(--charcoal);
}

/* Icon */
.ministries-page .ministry-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--brand-red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* Meta */
.ministries-page .ministry-meta {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-red);
  margin-bottom: 0.6rem;
}

/* Description */
.ministries-page .ministry-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

/* Details list */
.ministries-page .ministry-details {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
}

.ministries-page .ministry-details li {
  font-size: 0.85rem;
  color: var(--charcoal);
}

.ministries-page .ministry-details strong {
  font-weight: 700;
}

/* Learn more link */
.ministries-page .ministry-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.ministries-page .ministry-link:hover {
  text-decoration: underline;
}

/* ======================================================
   MINISTRIES – RESPONSIVE
====================================================== */

@media (max-width: 767.98px) {
  .ministries-page .ministry-card {
    flex-direction: column;
  }

  .ministries-page .ministry-image {
    flex: none;
    max-width: 100%;
    height: 180px;
  }

  .ministries-page .ministry-content {
    padding: 1.4rem 1.3rem 1.5rem;
  }

  .ministries-page .ministry-link {
    padding: 0.4rem 0;
    font-size: 0.9rem;
  }
}

/* ======================================================
   HOW TO GET INVOLVED – STEPS
====================================================== */

.ministries-page .step-card {
  text-align: center;
  padding: 1.6rem 1.2rem;
}

.ministries-page .step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background-color: var(--brand-red);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.ministries-page .step-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

.ministries-page .step-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ======================================================
   MORE WAYS TO SERVE – SIMPLE CARDS
====================================================== */

.ministries-page .simple-service-card {
  height: 100%;
  background-color: var(--white);
  padding: 1.3rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.ministries-page .simple-service-card h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}

.ministries-page .simple-service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ======================================================
   CONTACT PAGE
====================================================== */
.contact-info-card {
  position: relative;
  height: 100%;
  padding: 2rem 1.6rem;
  background-color: var(--light-bg);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;

  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

/* Top accent strip */
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-red),
    rgba(198, 40, 40, 0.35)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(198, 40, 40, 0.35);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.contact-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: var(--brand-red);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.35rem;
  transition: transform 0.35s ease,
              background-color 0.35s ease;
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.06);
  background-color: #b82222;
}

/* Text */
.contact-info-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-info-card a:hover {
  color: var(--brand-red);
}

/* ======================================================
   FIND US
====================================================== */
.find-us-section {
  background-color: var(--white);
}

/* Location panel */
.find-us-panel {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 3rem 2rem;
  background-color: var(--light-bg);
  border-radius: 16px;
  text-align: center;
}

.find-us-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--brand-red);
  display: grid;
  place-items: center;
  color: var(--brand-red);
  font-size: 1.4rem;
}

.find-us-panel h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

.find-us-panel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Supporting info cards */
.find-us-card {
  padding: 1.4rem 1.25rem;
  background-color: var(--light-bg);
  border-radius: 12px;
  text-align: center;
}

.find-us-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}

.find-us-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.find-us-info {
  margin-top: 2rem;
}

/* ======================================================
   FAQ
====================================================== */
.faq-section {
  background-color: var(--light-bg);
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* Accordion card */
.faq-section .accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

/* Accordion header button */
.faq-section .accordion-button {
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  background-color: transparent;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--brand-red);
  background-color: rgba(198, 40, 40, 0.05);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button::after {
  filter: grayscale(100%);
}

/* Accordion body */
.faq-section .accordion-body {
  padding: 1rem 1.25rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 991.98px) {
  .find-us-panel {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .contact-info-card {
    padding: 1.6rem 1.3rem;
  }

  .contact-icon {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
  }

  .find-us-panel {
    padding: 2rem 1.5rem;
  }

  .find-us-card {
    padding: 1.25rem 1rem;
  }

  .faq-wrap {
    max-width: 100%;
  }

  .faq-section .accordion-button {
    font-size: 0.95rem;
  }
}

/* ======================================================
   REDUCED MOTION
====================================================== */
@media (prefers-reduced-motion: reduce) {
  .contact-info-card,
  .contact-info-card::before,
  .contact-icon {
    transition: none;
  }

  .contact-info-card:hover {
    transform: none;
  }

  .contact-info-card:hover .contact-icon {
    transform: none;
  }
}

/* ======================================================
   GIVING PAGE
====================================================== */

/* ======================================================
   ONLINE GIVING – BANK DETAILS
====================================================== */

.giving-details {
  margin-top: 2rem;
}

.giving-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-color);
}

.giving-row:last-child {
  border-bottom: none;
}

/* Labels */
.giving-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

/* Values */
.giving-value {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ======================================================
   GIFT AID (COMPACT)
====================================================== */

.gift-aid-highlight {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.gift-aid-highlight strong {
  color: var(--brand-red);
  font-weight: 700;
}

.gift-aid-note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 767.98px) {
  .giving-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .giving-label {
    font-size: 0.9rem;
  }

  .giving-value {
    font-size: 0.92rem;
  }
}

@media (max-width: 575.98px) {
  .gift-aid-highlight {
    font-size: 0.95rem;
  }

  .gift-aid-note {
    font-size: 0.88rem;
  }
}

