html {
  scroll-behavior: smooth;
}

:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #2c2c2c;
  --accent: #c89666;
  --primary: #8b6f47;
  --secondary: #a0826d;
  --surface: rgba(139, 111, 71, 0.03);
  --border: rgba(139, 111, 71, 0.15);
  --shadow: 0 20px 60px rgba(139, 111, 71, 0.12);
  --warm-white: #ffffff;
  --cream: #faf8f5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
  color: #2c2c2c;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* Top Bar */
.top-bar {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 4vw;
  font-size: 0.85rem;
}

.top-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.top-bar__social {
  display: flex;
  gap: 1rem;
}

.top-bar__social a {
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.top-bar__social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.top-bar__live {
  display: flex;
  gap: 1.5rem;
}

.top-bar__live-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar__live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(74, 222, 128, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(74, 222, 128, 0.3); }
}

.top-bar__live-label {
  font-size: 0.78rem;
  opacity: 0.8;
  font-weight: 500;
}

.top-bar__live-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: #e8c896;
}

/* Countdown timer */
.countdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.countdown__segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
  min-width: 32px;
  line-height: 1;
}

.countdown__number {
  font-size: 0.9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.countdown__unit {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.countdown__sep {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0.05rem;
  animation: blinkSep 1s step-end infinite;
}

@keyframes blinkSep {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.live-link {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.live-link:hover {
  color: var(--accent);
}

.live-dot {
  color: #ff4444;
  font-size: 0.5rem;
  animation: livePulse 1.5s ease-in-out infinite;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 4vw;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(139, 111, 71, 0.1);
  box-shadow: 0 1px 16px rgba(139, 111, 71, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-header.header-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-text__name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.logo-text__full {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  color: var(--primary);
}

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

.manual-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 4vw 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manual-hero {
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.manual-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.manual-hero p {
  color: #4a4a4a;
  font-size: 1rem;
}

.manual-meta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: left;
  color: #3b3b3b;
}

.manual-meta strong {
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.manual-book {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.page-card {
  background: linear-gradient(180deg, #fff 0%, #f9f4ef 60%, #f6e9da 100%);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 35px rgba(66, 47, 24, 0.15);
  padding: 2rem;
  position: relative;
  min-height: 260px;
}

.page-number {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.5);
}

.page-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  color: var(--primary);
}

.page-card p,
.page-card ul,
.page-card li {
  color: #353535;
  line-height: 1.6;
  font-size: 0.95rem;
}

.page-card ul {
  padding-left: 1rem;
  margin: 0;
  list-style: disc;
}

.manual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.manual-grid div {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.manual-header {
  background: rgba(250, 248, 245, 0.95);
  border-bottom: 1px solid rgba(139, 111, 71, 0.2);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 4vw 4rem;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #faf6f0, #f5ece0, #fdf8f3);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(139, 111, 71, 0.12);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: brightness(1.1) saturate(0.8);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(250, 246, 240, 0.95) 0%, rgba(245, 236, 224, 0.85) 50%, rgba(250, 246, 240, 0.75) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(200, 150, 102, 0.15) 0%, transparent 60%);
  z-index: 1;
}

/* Decorative floating orbs */
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200, 150, 102, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroGlow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: heroGlow 8s ease-in-out 2s infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0%   { transform: scale(1) translate(0, 0); opacity: 0.5; }
  100% { transform: scale(1.3) translate(20px, -15px); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem clamp(2rem, 6vw, 4rem);
  animation: heroFadeIn 1s ease-out;
}

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

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0.5rem 0 0.75rem;
  color: var(--primary);
  line-height: 1.12;
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.7);
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero__actions .btn.primary {
  background: linear-gradient(135deg, var(--accent), #d4a574);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(200, 150, 102, 0.3);
}

.hero__actions .btn.primary:hover {
  box-shadow: 0 10px 36px rgba(200, 150, 102, 0.45);
}

.hero__actions .btn.secondary {
  background: rgba(139, 111, 71, 0.08);
  color: var(--primary);
  border: 1.5px solid rgba(139, 111, 71, 0.25);
  box-shadow: none;
}

.hero__actions .btn.secondary:hover {
  background: rgba(139, 111, 71, 0.14);
  border-color: rgba(139, 111, 71, 0.4);
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.1);
}

/* Hero glass card */
.hero__card {
  background: #fff;
  border: 1px solid rgba(139, 111, 71, 0.12);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(139, 111, 71, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(139, 111, 71, 0.15),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Subtle accent line at top of card */
.hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 4px 4px;
}

.hero__card-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 150, 102, 0.1), rgba(200, 150, 102, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(200, 150, 102, 0.2);
  position: relative;
  z-index: 1;
}

.hero__card-logo .hero-logo-image {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(139, 111, 71, 0.15));
}

.hero__scripture {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(44, 44, 44, 0.75);
  font-style: italic;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  position: relative;
  z-index: 1;
}

.hero__scripture .fa-quote-left {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.scripture-ref {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

.hero__card .btn.ghost {
  background: rgba(139, 111, 71, 0.06);
  color: var(--primary);
  border-color: rgba(139, 111, 71, 0.2);
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.hero__card .btn.ghost:hover {
  background: rgba(139, 111, 71, 0.12);
  border-color: rgba(139, 111, 71, 0.35);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Service Times Strip ── */
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  margin-top: -2rem;
  position: relative;
  z-index: 3;
  background: #fff;
}

.service-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: #fff;
  transition: all 0.3s ease;
  border-right: 1px solid var(--border);
}

.service-strip__item:last-child {
  border-right: none;
}

.service-strip__item:hover {
  background: rgba(200, 150, 102, 0.05);
}

.service-strip__item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 150, 102, 0.1);
  border-radius: 12px;
}

.service-strip__item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.service-strip__item span {
  font-size: 0.78rem;
  color: rgba(44, 44, 44, 0.55);
}

.service-strip__item--accent {
  background: linear-gradient(135deg, rgba(200, 150, 102, 0.06), rgba(200, 150, 102, 0.02));
}

.service-strip__item--accent i {
  background: rgba(200, 150, 102, 0.18);
  color: var(--primary);
}

.service-strip__item--accent:hover {
  background: rgba(200, 150, 102, 0.1);
}

.btn {
  border: 1px solid var(--accent);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #d4a574);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(200, 150, 102, 0.3);
}

.btn.secondary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.25);
}

.btn.ghost {
  background: rgba(139, 111, 71, 0.08);
  color: var(--primary);
  border-color: var(--primary);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(139, 111, 71, 0.3);
  filter: brightness(1.08);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.btn.large {
  padding: 1rem 2rem;
  font-size: 0.85rem;
}

.btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.7rem;
}

.btn.full-width {
  width: 100%;
  justify-content: center;
}


.section-header {
  text-align: left;
}

.section-header h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-family: "Playfair Display", serif;
  color: var(--primary);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-header.centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header.centered .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-scripture {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.85);
  font-style: italic;
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: rgba(74, 93, 124, 0.04);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
}

.section-scripture .fa-book-open,
.section-scripture .fa-book {
  color: var(--accent);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* Live Section */
.live-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(200, 150, 102, 0.05));
  border-radius: 28px;
  margin-bottom: 2rem;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.live-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(139, 111, 71, 0.18);
}

.live-card i.fab {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.live-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.live-card p {
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* VIP Class Section */
.vip-class {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem 3rem;
  background: linear-gradient(135deg, #2a1f12 0%, var(--primary) 50%, var(--secondary) 100%);
  border-radius: 28px;
  color: #fff;
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(42, 31, 18, 0.35);
}

.vip-class__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.vip-class__content,
.vip-class__form {
  position: relative;
  z-index: 1;
}

.vip-class__content h2 {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.vip-class__content .section-scripture {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: var(--accent);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vip-class__content p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
}

.vip-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.vip-feature {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.75rem;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.vip-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vip-feature i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.vip-feature h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: #fff;
  font-weight: 600;
}

.vip-feature p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}

.vip-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Coming Soon Card */
.vip-coming-soon {
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem;
  border-radius: 24px;
  color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vip-coming-soon__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 150, 102, 0.12), rgba(200, 150, 102, 0.04));
  border: 2px solid rgba(200, 150, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: pulseGlow 3s ease-in-out infinite;
}

.vip-coming-soon__badge i {
  font-size: 2rem;
  color: var(--accent);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 150, 102, 0.15); }
  50% { box-shadow: 0 0 0 14px rgba(200, 150, 102, 0); }
}

.vip-coming-soon h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vip-coming-soon > p {
  color: rgba(44, 44, 44, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem;
}

.vip-coming-soon__features {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.vip-coming-soon__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  background: linear-gradient(135deg, rgba(200, 150, 102, 0.08), rgba(139, 111, 71, 0.04));
  border: 1px solid rgba(200, 150, 102, 0.15);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

.vip-coming-soon__item i {
  color: var(--accent);
  font-size: 0.95rem;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about__image {
  min-height: 550px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px rgba(139, 111, 71, 0.2);
  border: none;
  position: relative;
}

.about__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 31, 18, 0.3));
}

.about__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  line-height: 1.3;
}

.about__text p {
  line-height: 1.7;
  color: rgba(44, 44, 44, 0.85);
}

.about__text ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.about__text ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(139, 111, 71, 0.04);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.about__text ul li:hover {
  transform: translateX(4px);
  background: rgba(139, 111, 71, 0.08);
}

.about__text ul li i {
  color: var(--accent);
  font-size: 1.2rem;
  min-width: 24px;
}

/* Music Ministry Section */
.music-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #8b6f47, #a0826d);
  border-radius: 28px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.music-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.music-text {
  color: #fff;
}

.music-text h2 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.music-text .section-scripture {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--accent);
  color: rgba(255, 255, 255, 0.95);
}

.music-text p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.music-features {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}

.music-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.music-feature:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.15);
}

.music-feature i {
  font-size: 1.8rem;
  color: var(--accent);
  min-width: 32px;
}

.music-feature strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.music-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.music-video {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
}

.video-placeholder i {
  font-size: 5rem;
  color: #ff0000;
  margin-bottom: 1.5rem;
  display: block;
}

.video-placeholder h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.video-placeholder p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* VIP Lessons Section */
.vip-lessons {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.02), rgba(255, 255, 255, 1));
  margin-bottom: 2rem;
}

.lessons-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.lesson-card {
  background: #fff;
  border-radius: 20px;
  border: 2px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lesson-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(139, 111, 71, 0.15);
}

.lesson-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 1.5rem 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lesson-number {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.lesson-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0;
  flex: 1;
}

.lesson-content {
  padding: 2rem;
}

.lesson-content > p {
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.lesson-video {
  background: rgba(139, 111, 71, 0.04);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 2rem;
  border: 2px dashed var(--border);
}

.lesson-video i {
  font-size: 3rem;
  color: #ff0000;
  margin-bottom: 1rem;
  display: block;
}

.lesson-video p {
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 1.5rem;
}

.lesson-test {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.06), rgba(200, 150, 102, 0.08));
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.lesson-test h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lesson-test h4 i {
  color: var(--accent);
}

/* Test Modal */
.test-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.test-modal-content {
  background-color: #fff;
  margin: 3% auto;
  padding: 3rem;
  border-radius: 24px;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  color: #aaa;
  float: right;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover,
.close-modal:focus {
  color: var(--primary);
}

.quiz-instructions {
  background: rgba(139, 111, 71, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  margin-bottom: 2rem;
  color: rgba(44, 44, 44, 0.85);
}

.quiz-form h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.quiz-question {
  background: rgba(139, 111, 71, 0.03);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.quiz-question h3 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.quiz-question p {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.quiz-options {
  display: grid;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-option:hover {
  border-color: var(--accent);
  background: rgba(139, 111, 71, 0.04);
  transform: translateX(5px);
}

.quiz-option input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.quiz-option span {
  flex: 1;
  color: rgba(44, 44, 44, 0.9);
}

.quiz-results {
  text-align: center;
}

.quiz-result {
  padding: 3rem 2rem;
}

.result-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.quiz-result.passed .result-icon {
  color: #28a745;
}

.quiz-result.failed .result-icon {
  color: #dc3545;
}

.quiz-result h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.quiz-result.passed h2 {
  color: #28a745;
}

.quiz-result.failed h2 {
  color: #dc3545;
}

.result-score {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.result-message {
  font-size: 1.1rem;
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.result-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pastor Section */
.pastor-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.03), rgba(255, 255, 255, 1));
  margin-bottom: 2rem;
}

.pastor-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pastor-bio h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.pastor-bio p {
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 1.5rem;
}

.pastor-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(139, 111, 71, 0.12);
}

.highlight-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.highlight-item h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.75);
  margin: 0;
}

.pastor-media {
  background: linear-gradient(135deg, #2a1f12, var(--primary));
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
  box-shadow: 0 16px 40px rgba(42, 31, 18, 0.3);
}

.pastor-youtube h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pastor-youtube h3 i {
  color: #ff0000;
  font-size: 1.8rem;
}

.pastor-youtube p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.youtube-btn {
  background: #ff0000;
  border-color: transparent;
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.youtube-btn:hover {
  background: #cc0000;
}

/* Pastor Image */
.pastor-image-container {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.pastor-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Event Images */
.event-image-container {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 8px 20px rgba(74, 93, 124, 0.15);
  border: 2px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(74, 93, 124, 0.25);
}

.event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.worship-image-placeholder {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 1rem;
}

.worship-image-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
  display: block;
}

.worship-image-placeholder p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
}

.event-card .worship-image-placeholder {
  background: rgba(139, 111, 71, 0.05);
  border: 2px dashed var(--border);
  padding: 2rem;
  margin-top: 1rem;
}

.event-card .worship-image-placeholder i {
  color: var(--accent);
  font-size: 2.5rem;
}

.event-card .worship-image-placeholder p {
  color: rgba(44, 44, 44, 0.6);
}

.events {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.04), rgba(200, 150, 102, 0.06));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.events article {
  padding: 2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(139, 111, 71, 0.18);
  border-color: var(--accent);
}

.event-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(139, 111, 71, 0.25);
}

.event-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.event-scripture {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--secondary);
  margin: 0.75rem 0;
  padding: 0.5rem 0;
  border-left: none;
}

.event-scripture i {
  color: var(--accent);
  margin-right: 0.25rem;
}

.event-card.highlighted {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff, rgba(200, 150, 102, 0.08));
  position: relative;
}

.event-card.highlighted::before {
  content: "Featured";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.event-card.highlighted:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff, rgba(200, 150, 102, 0.12));
  box-shadow: 0 16px 40px rgba(200, 150, 102, 0.25);
  transform: translateY(-6px);
}

.events h3 {
  margin-top: 0;
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  color: var(--primary);
}

.events p {
  color: rgba(44, 44, 44, 0.8);
  line-height: 1.6;
}

.events .note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
}

.bank-info {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.bank-info div {
  background: linear-gradient(135deg, rgba(74, 93, 124, 0.08), rgba(212, 165, 116, 0.08));
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(74, 93, 124, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bank-info div:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.bank-info strong {
  color: var(--primary);
}

.bank-info span {
  display: block;
  font-size: 1.05rem;
  margin-top: 0.3rem;
  font-weight: 600;
  color: var(--secondary);
}

/* Give Section */
.give-section {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.give-image {
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 3px solid rgba(212, 165, 116, 0.2);
  position: relative;
}

.give-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(74, 93, 124, 0.1), transparent);
}

.give-content {
  max-width: 900px;
}

.give-text h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.bank-info-section {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(74, 93, 124, 0.04);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.bank-info-section h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bank-info-section h3 i {
  color: var(--accent);
}

.bank-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.bank-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  border: 2px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bank-card:hover {
  transform: translateX(5px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(139, 111, 71, 0.15);
}

.bank-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.bank-card strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.account-number {
  background: rgba(74, 93, 124, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.account-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.account-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
}

.bank-note {
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.8);
  padding: 0.75rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bank-note i {
  color: var(--accent);
}

.give-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(212, 165, 116, 0.2);
}

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

.values {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.values__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  line-height: 1.3;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
}

.values-list li:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.1);
}

.values-list li i {
  font-size: 1.8rem;
  color: var(--accent);
  min-width: 32px;
  margin-top: 0.25rem;
}

.values-list li div {
  flex: 1;
}

.values-list li strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: rgba(44, 44, 44, 0.95);
}

.values-list li span {
  font-size: 0.9rem;
  color: rgba(44, 44, 44, 0.75);
  line-height: 1.5;
}

.values__image {
  min-height: 420px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 3px solid rgba(212, 165, 116, 0.2);
  position: relative;
}

.values__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, transparent, rgba(74, 93, 124, 0.1));
}

.connect {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.connect__card,
.connect__panel {
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 30px rgba(139, 111, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect__card:hover,
.connect__panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(139, 111, 71, 0.12);
}

.connect__card h2 {
  margin: 0.75rem 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: "Playfair Display", serif;
  color: var(--primary);
  line-height: 1.3;
}

.connect__panel h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.connect__panel > p {
  color: rgba(44, 44, 44, 0.7);
  line-height: 1.7;
}

.contact-details {
  display: flex;
  gap: 2rem;
  margin: 1rem 0 1.5rem;
}

.location-info {
  margin: 2rem 0;
}

.location-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(200, 150, 102, 0.06), rgba(139, 111, 71, 0.03));
  border-radius: 16px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(200, 150, 102, 0.1);
}

.location-item i {
  font-size: 1.1rem;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #d4a574);
  border-radius: 12px;
  flex-shrink: 0;
}

.location-item strong {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  opacity: 0.7;
}

.location-item p {
  margin: 0;
  color: var(--primary);
  line-height: 1.6;
  font-weight: 500;
}

.contact-phones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(200, 150, 102, 0.06), rgba(139, 111, 71, 0.03));
  border-radius: 14px;
  border: 1px solid rgba(200, 150, 102, 0.1);
}

.phone-item i {
  font-size: 0.95rem;
  color: #fff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  flex-shrink: 0;
  line-height: 1;
}

.phone-item span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.15rem;
  font-weight: 600;
}

.phone-item strong {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
}

.social-links {
  margin: 2rem 0;
}

.social-links h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-btn.facebook {
  background: #1877f2;
  color: #fff;
}

.social-btn.youtube {
  background: #ff0000;
  color: #fff;
}

.connect__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.connect__panel form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect__panel input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: inherit;
  font-size: 0.95rem;
}

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

.connect__panel button {
  border: none;
  border-radius: 12px;
  padding: 0.9rem;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.connect__panel button:hover {
  background: var(--accent);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(200, 150, 102, 0.06);
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.1);
}

.contact-method i {
  font-size: 1.2rem;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #d4a574);
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-method.whatsapp i {
  background: linear-gradient(135deg, #25D366, #20bd5a);
}

.contact-method strong {
  display: block;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.contact-method span {
  display: block;
  font-size: 0.82rem;
  color: rgba(44, 44, 44, 0.55);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #2a1f12, #3d2e1a, var(--primary));
  color: rgba(255, 255, 255, 0.9);
  padding: 5rem 4vw 2rem;
  margin-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.footer-logo h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

.footer-phone {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-phone i {
  color: var(--accent);
  margin-right: 0.5rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .top-bar__content {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }

  .top-bar__live-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .top-bar__live-pulse {
    display: none;
  }

  .countdown__segment {
    min-width: 28px;
    padding: 0.15rem 0.35rem;
  }

  .countdown__number {
    font-size: 0.8rem;
  }

  .site-header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2vw;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .logo-image {
    height: 50px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .nav-links a {
    border-radius: 999px;
    padding: 0.45rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  }

  .nav-links a:hover {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 2rem;
  }

  .hero__text {
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__card {
    padding: 1.5rem;
  }

  .hero__card-logo {
    width: 90px;
    height: 90px;
  }

  .hero__card-logo .hero-logo-image {
    width: 60px;
  }

  .service-strip {
    grid-template-columns: 1fr;
    margin-top: -1rem;
  }

  .service-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .service-strip__item:last-child {
    border-bottom: none;
  }

  .music-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .music-video {
    order: -1;
  }

  .vip-class {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .vip-features {
    grid-template-columns: 1fr;
  }

  .vip-coming-soon {
    padding: 2rem 1.5rem;
  }

  .vip-coming-soon__features {
    flex-direction: column;
    align-items: stretch;
  }

  .give-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .give-image {
    order: -1;
    min-height: 300px;
  }

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

  .connect__card,
  .connect__panel {
    padding: 2rem 1.5rem;
  }

  .contact-phones {
    grid-template-columns: 1fr;
  }

  .social-buttons {
    flex-direction: column;
  }

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

  .connect__cta {
    flex-direction: column;
  }

  .connect__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bank-cards {
    grid-template-columns: 1fr;
  }

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

.values__image {
    order: -1;
    min-height: 300px;
  }

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

  .pastor-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pastor-highlights {
    grid-template-columns: 1fr;
  }

}

/* Leadership Section */
.leadership-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.02), rgba(255, 255, 255, 1));
  margin-bottom: 2rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.leader-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.1);
  border: 2px solid var(--border);
  transition: all 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 111, 71, 0.22);
  border-color: var(--accent);
}

.leader-card.featured {
  grid-column: span 1;
}

.leader-card.featured .leader-info {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.03), rgba(200, 150, 102, 0.05));
}

.leader-image-slot {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.06), rgba(200, 150, 102, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.leader-image-slot::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.5));
  pointer-events: none;
}

.leader-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.leader-info {
  padding: 2rem;
}

.leader-info h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.leader-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.leader-bio {
  color: rgba(44, 44, 44, 0.8);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Salvation Section */
.salvation-section {
  background: linear-gradient(135deg, #2a1f12, var(--primary), var(--secondary));
  color: white;
  padding: 5rem 2rem;
  margin-bottom: 2rem;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.salvation-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 150, 102, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.salvation-content {
  max-width: 900px;
  margin: 0 auto;
}

.salvation-header h2 {
  font-family: "Playfair Display", serif;
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.salvation-header .section-scripture {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--accent);
  color: rgba(255, 255, 255, 0.95);
}

.salvation-message {
  margin: 2rem 0;
}

.salvation-message p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.scripture-quote-box {
  background: rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
}

.scripture-quote-box p {
  margin: 0 0 0.5rem 0;
}

.salvation-prayer {
  margin-top: 3rem;
}

.salvation-prayer h3 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.prayer-box {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.prayer-box p {
  color: rgba(44, 44, 44, 0.9);
  line-height: 2;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.salvation-response {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.salvation-response h3 {
  font-family: "Playfair Display", serif;
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.salvation-response p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.salvation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Branches Page Styles */
.branches-hero {
  position: relative;
  min-height: 50vh;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.08), rgba(200, 150, 102, 0.12));
  box-shadow: var(--shadow);
  border: 2px solid rgba(212, 165, 116, 0.15);
  margin-bottom: 3rem;
}

.headquarters-section {
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.headquarters-card {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
  border: 2px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.headquarters-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(200, 150, 102, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.headquarters-info {
  padding: 3rem;
}

.headquarters-info h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.location-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.address-box {
  background: rgba(139, 111, 71, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.address-box i {
  color: var(--accent);
  font-size: 1.5rem;
  min-width: 24px;
}

.address-box strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.address-box p {
  color: rgba(44, 44, 44, 0.85);
  line-height: 1.6;
  margin: 0;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(139, 111, 71, 0.05);
  border-radius: 12px;
}

.contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

.branch-description {
  color: rgba(44, 44, 44, 0.8);
  line-height: 1.7;
  font-style: italic;
}

.branches-section {
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.branch-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 111, 71, 0.1);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
  border-color: var(--accent);
}

.branch-pastor-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(200, 150, 102, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.branch-pastor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.branch-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.branch-info h3 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.pastor-name-section {
  padding: 1rem;
  background: rgba(139, 111, 71, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.pastor-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.pastor-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0;
}

.branch-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.branch-contact-info .contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.branch-contact-info .contact-item i {
  color: var(--accent);
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.branch-contact-info .contact-item p {
  color: rgba(44, 44, 44, 0.85);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.branch-cta {
  background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(200, 150, 102, 0.05));
  padding: 4rem 2rem;
  border-radius: 24px;
  margin: 0 2rem 2rem;
}

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

.cta-content h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(44, 44, 44, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card.featured {
    grid-column: span 1;
  }

  .headquarters-card {
    grid-template-columns: 1fr;
  }

  .headquarters-image {
    height: 300px;
  }

  .headquarters-info {
    padding: 2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

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

  .salvation-actions {
    flex-direction: column;
  }

  .salvation-actions .btn {
    width: 100%;
  }

  .prayer-box {
    padding: 1.5rem;
  }

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

  .cta-actions .btn {
    width: 100%;
  }
}

/* ============================================
   SKIP TO CONTENT (Accessibility)
   ============================================ */
.skip-to-content {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 12px 12px;
  z-index: 9999;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================
   FOCUS VISIBLE (Accessibility)
   ============================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 40;
  flex-direction: column;
  gap: 5px;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    z-index: 35;
    overflow-y: auto;
  }

  .nav-links.nav-open {
    right: 0;
  }

  .nav-links a {
    padding: 1rem 0.5rem;
    border: none;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .nav-links a:hover {
    background: rgba(139, 111, 71, 0.06);
    border-color: var(--border);
    transform: none;
    padding-left: 1rem;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ============================================
   PROGRESS SUMMARY (VIP Lessons)
   ============================================ */
.progress-summary {
  max-width: 1000px;
  margin: 3rem auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.08);
}

.progress-summary h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.progress-summary h3 i {
  color: var(--accent);
}

.progress-items {
  display: grid;
  gap: 1rem;
}

.progress-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(139, 111, 71, 0.04);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.progress-label {
  font-weight: 600;
  color: var(--primary);
}

.progress-status {
  font-size: 0.95rem;
}

.completion-message {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(40, 167, 69, 0.15));
  border-radius: 16px;
  border: 2px solid rgba(40, 167, 69, 0.3);
}

.completion-message i.fa-trophy {
  font-size: 3rem;
  color: #c89666;
  margin-bottom: 1rem;
}

.completion-message h4 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.completion-message p {
  color: rgba(44, 44, 44, 0.85);
  margin-bottom: 1.5rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
