/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0b2d48;
  --navy-light: #0f3a5c;
  --red: #c80202;
  --red-hover: #a50101;
  --cream: #fbe7c6;
  --cream-light: #fdf3e4;
  --white: #ffffff;
  --gray-light: #f7f8fa;
  --gray: #6b7280;
  --text-dark: #1a1a2e;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Amiko', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Raleway', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 80px; }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  background: rgba(11, 45, 72, 0.97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.nav-logo:hover .nav-logo-icon { transform: rotate(-5deg) scale(1.05); }

.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  font-family: 'Amiko', sans-serif;
  color: rgba(251, 231, 198, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 20px; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-hover) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200, 2, 2, 0.35); }

.nav-give { background: #1a7a3c !important; }
.nav-give:hover { background: #155f2f !important; box-shadow: 0 6px 20px rgba(26, 122, 60, 0.35) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 4px;
  transition: all 0.35s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, rgba(11,45,72,0.90) 0%, rgba(11,45,72,0.78) 100%),
              url('grounded-banner.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 2, 2, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 231, 198, 0.04) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite 2s;
}

/* Geometric accents */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border: 1px solid rgba(251, 231, 198, 0.06);
  border-radius: 4px;
}

.hero-shapes .shape:nth-child(1) {
  width: 120px; height: 120px;
  top: 15%; right: 12%;
  transform: rotate(35deg);
  animation: float 7s ease-in-out infinite;
}

.hero-shapes .shape:nth-child(2) {
  width: 80px; height: 80px;
  bottom: 25%; left: 8%;
  transform: rotate(-20deg);
  animation: float 9s ease-in-out infinite 1s;
}

.hero-shapes .shape:nth-child(3) {
  width: 60px; height: 60px;
  top: 40%; right: 30%;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 2, 2, 0.12);
  border: 1px solid rgba(200, 2, 2, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-text {
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  line-height: 1.05;
}

.hero h1 .accent {
  color: var(--red);
  position: relative;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(200, 2, 2, 0.25);
  border-radius: 3px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(251, 231, 198, 0.75);
  margin-bottom: 44px;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 2, 2, 0.3);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 2, 2, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(251, 231, 198, 0.25);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(251, 231, 198, 0.08);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.hero-scroll span {
  color: rgba(251, 231, 198, 0.4);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(251, 231, 198, 0.2);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--cream);
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  border-radius: 4px;
  margin: 0 auto 20px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 16px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-accent-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 3px solid var(--red);
  border-radius: 20px;
  z-index: -1;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-text h2 .highlight {
  color: var(--red);
}

.about-text > p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(11, 45, 72, 0.08);
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
}

.about-stat-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
}

.pastor-card {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 28px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pastor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 45, 72, 0.08);
}

.pastor-avatar {
  width: 120px;
  height: 136px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.pastor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pastor-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pastor-info p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   BELIEFS SECTION
   ============================================ */
.beliefs {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.beliefs::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(200, 2, 2, 0.06) 0%, transparent 70%);
}

.beliefs .section-label { color: var(--cream); opacity: 0.6; }
.beliefs .section-title { color: var(--white); }
.beliefs .section-desc { color: rgba(251, 231, 198, 0.5); }

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.belief-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(251, 231, 198, 0.08);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.belief-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.belief-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(251, 231, 198, 0.15);
  transform: translateY(-6px);
}

.belief-card:hover::before { opacity: 1; }

.belief-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200, 2, 2, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.belief-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.belief-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.belief-card p {
  color: rgba(251, 231, 198, 0.55);
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================
   WHAT TO EXPECT
   ============================================ */
.expect {
  background: var(--gray-light);
}

.expect-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.expect-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--navy));
  border-radius: 3px;
}

.expect-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.expect-step:last-child { margin-bottom: 0; }

.expect-step-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  z-index: 1;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(200, 2, 2, 0.1);
}

.expect-step:hover .expect-step-dot {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.expect-step-content {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  flex: 1;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.expect-step:hover .expect-step-content {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.expect-step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.expect-step-content p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   MINISTRIES
   ============================================ */
.ministries {
  background: var(--white);
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ministry-card {
  background: var(--white);
  border: 1px solid rgba(11, 45, 72, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.ministry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ministry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(11, 45, 72, 0.1);
  border-color: transparent;
}

.ministry-card:hover::after { transform: scaleX(1); }

.ministry-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.ministry-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ministry-icon.blue svg { stroke: var(--navy); fill: none; }
.ministry-icon.red svg { stroke: var(--red); fill: none; }
.ministry-icon.cream svg { stroke: var(--navy); fill: none; }

.ministry-card:hover .ministry-icon { transform: scale(1.1) rotate(-5deg); }

.ministry-icon.blue { background: rgba(11, 45, 72, 0.06); }
.ministry-icon.red { background: rgba(200, 2, 2, 0.06); }
.ministry-icon.cream { background: rgba(251, 231, 198, 0.4); }

.ministry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.ministry-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   SERVICE TIMES
   ============================================ */
.times {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.times::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 2, 2, 0.08) 0%, transparent 60%);
}

.times .section-label { color: var(--cream); opacity: 0.6; }
.times .section-title { color: var(--white); }
.times .section-desc { color: rgba(251, 231, 198, 0.5); }

.times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .times-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .times-grid { grid-template-columns: 1fr; }
}

.time-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(251, 231, 198, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.time-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-8px);
  border-color: rgba(200, 2, 2, 0.3);
}

.time-card-day {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.time-card-name {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.time-card-time {
  font-size: 36px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 4px;
}

.time-card-period {
  font-size: 14px;
  color: rgba(251, 231, 198, 0.5);
}

.time-card-divider {
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  margin: 16px auto;
}

/* ============================================
   CONTACT / VISIT SECTION
   ============================================ */
.contact {
  background: var(--gray-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info > p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 2, 2, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-detail-text p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.map-actions {
  background: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-actions span {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.map-actions a {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: color 0.3s ease;
}

.map-actions a:hover { color: var(--red-hover); }

.area-served {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 14px;
}

.area-served h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.area-served p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251, 231, 198, 0.08);
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(251, 231, 198, 0.45);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: rgba(251, 231, 198, 0.45);
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--cream);
  transform: translateX(6px);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(251, 231, 198, 0.3);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(251, 231, 198, 0.3);
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--cream); }

.footer-credit {
  border-top: 1px solid rgba(251, 231, 198, 0.08);
  padding-top: 16px;
  margin-top: 4px;
  text-align: center;
}

.footer-credit p {
  font-size: 12px;
  color: rgba(251, 231, 198, 0.25);
}

.footer-credit a {
  color: rgba(251, 231, 198, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover { color: var(--cream); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual { max-width: 400px; margin: 0 auto; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(11, 45, 72, 0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 18px;
    padding: 12px 24px;
  }

  .nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
  }

  .nav-hamburger { display: flex; background: none; border: none; }

  .hero-scroll { display: none; }

  .section { padding: 80px 0; }

  .beliefs-grid { grid-template-columns: 1fr; }

  .expect-timeline::before { left: 28px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   PAGE LOAD ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  animation: scaleIn 0.5s ease both;
}

.loader-logo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 16px;
  animation: pulse 1.2s ease-in-out infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.loader-text {
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: var(--red);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  border-radius: 12px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  background: var(--white);
  color: var(--red);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.cta .btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.cta-sub {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  border: 1px solid rgba(251, 231, 198, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200, 2, 2, 0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(251, 231, 198, 0.06);
  border: 1px solid rgba(251, 231, 198, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
}

/* ============================================
   ACCESSIBILITY - FOCUS STATES
   ============================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--red);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-nav:focus {
  top: 0;
  outline: none;
}

a:focus-visible,
button:focus-visible,
.nav-hamburger:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.belief-card:focus-within,
.ministry-card:focus-within,
.time-card:focus-within {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* ============================================
   PLAN YOUR VISIT
   ============================================ */
.visit {
  background: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.visit-interior {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
}

.visit-interior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.visit-interior:hover img { transform: scale(1.03); }

.visit-interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,45,72,0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.visit-interior-label {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.visit-details h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.1;
}

.visit-details h2 .highlight { color: var(--red); }

.visit-details > p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.visit-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.visit-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.visit-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(200,2,2,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-check-item p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

.visit-check-item p strong { color: var(--navy); }

/* ============================================
   LIVESTREAM
   ============================================ */
.livestream {
  background: var(--gray-light);
}

.livestream-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: 0 auto;
}

.livestream-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.livestream-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray);
}

.live-dot.live {
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

.livestream-meta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(11,45,72,0.08);
}

.livestream-meta p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.livestream-meta a {
  color: var(--red);
  font-weight: 600;
  transition: color 0.3s ease;
}

.livestream-meta a:hover { color: var(--red-hover); }

/* ============================================
   SERMON ARCHIVE
   ============================================ */
.sermons {
  background: var(--white);
}

.sermons-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(11,45,72,0.12);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.sermon-card {
  background: var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.sermon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11,45,72,0.1);
  border-color: rgba(11,45,72,0.06);
}

.sermon-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sermon-thumbnail-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.sermon-play-btn {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(200,2,2,0.4);
}

.sermon-card:hover .sermon-play-btn {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(200,2,2,0.5);
}

.sermon-play-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-left: 3px;
}

.sermon-series-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.sermon-info {
  padding: 20px 24px;
}

.sermon-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.sermon-scripture {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-top: 4px;
}

.sermon-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--gray);
  margin-top: 10px;
  flex-wrap: wrap;
}

.sermon-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sermon-meta svg {
  width: 12px;
  height: 12px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.sermons-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   STAFF
   ============================================ */
.staff {
  background: var(--gray-light);
}

.staff-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.staff-card {
  max-width: 420px;
  width: 100%;
}

.staff-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(11,45,72,0.1);
}

.staff-avatar {
  width: 180px;
  height: 204px;
  border-radius: 16px;
  background: var(--navy);
  margin: 0 auto 24px;
  overflow: hidden;
  border: 4px solid var(--cream);
}

.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.staff-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.staff-card > p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75;
}

.staff-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(11,45,72,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.staff-detail-item {
  font-size: 13px;
  color: var(--gray);
}

.staff-detail-item strong { color: var(--navy); }

/* ============================================
   PRAYER REQUESTS
   ============================================ */
.prayer {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.prayer::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,2,2,0.06) 0%, transparent 60%);
}

.prayer .section-label { color: var(--cream); opacity: 0.6; }
.prayer .section-title { color: var(--white); }
.prayer .section-desc { color: rgba(251,231,198,0.5); }

.prayer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.prayer-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.prayer-info > p {
  color: rgba(251,231,198,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.prayer-verse {
  background: rgba(255,255,255,0.04);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.prayer-verse p {
  color: var(--cream);
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 8px;
}

.prayer-verse cite {
  font-size: 13px;
  color: rgba(251,231,198,0.5);
  font-style: normal;
  font-weight: 700;
}

.prayer-promise {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.prayer-promise-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,2,2,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prayer-promise-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prayer-promise-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.prayer-promise-text p {
  font-size: 13px;
  color: rgba(251,231,198,0.5);
  line-height: 1.5;
}

/* ============================================
   SHARED FORM STYLES
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-dark label { color: rgba(251,231,198,0.7); }
.form-light label { color: var(--navy); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid;
  font-family: 'Amiko', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-dark input,
.form-dark textarea,
.form-dark select {
  border-color: rgba(251,231,198,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.form-dark input::placeholder,
.form-dark textarea::placeholder { color: rgba(251,231,198,0.3); }

.form-dark input:focus,
.form-dark textarea:focus,
.form-dark select:focus {
  border-color: rgba(200,2,2,0.5);
  background: rgba(255,255,255,0.08);
}

.form-light input,
.form-light textarea,
.form-light select {
  border-color: rgba(11,45,72,0.12);
  background: var(--gray-light);
  color: var(--text-dark);
}

.form-light input::placeholder,
.form-light textarea::placeholder { color: var(--gray); }

.form-light input:focus,
.form-light textarea:focus {
  border-color: var(--red);
  background: var(--white);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-group select { appearance: none; cursor: pointer; }

.form-dark select option { background: var(--navy); color: var(--white); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  accent-color: var(--red);
  margin-top: 2px;
}

.form-check label {
  font-size: 14px;
  color: rgba(251,231,198,0.65);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.prayer-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(251,231,198,0.1);
  border-radius: 24px;
  padding: 48px;
}

/* ============================================
   CONTACT FORM (added to contact section)
   ============================================ */
.contact-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.contact-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

/* ============================================
   RESPONSIVE — NEW SECTIONS
   ============================================ */
@media (max-width: 968px) {
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .prayer-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .staff-grid { grid-template-columns: 1fr; max-width: 400px; }
  .prayer-form-wrap { padding: 32px 24px; }
  .contact-form-box { padding: 28px 20px; }
  .sermons-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NAVBAR SOLID (for sub-pages without dark hero)
   ============================================ */
.navbar-solid {
  background: rgba(11, 45, 72, 0.97) !important;
  backdrop-filter: blur(20px);
  padding: 10px 0 !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   PAGE HEADER (sub-page hero replacement)
   ============================================ */
.page-header {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,2,2,0.07) 0%, transparent 70%);
}

.page-header-content { position: relative; z-index: 1; }

.page-header .section-label { color: rgba(251,231,198,0.6); }

.page-header h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-header p {
  font-size: 18px;
  color: rgba(251,231,198,0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   QUICK NAV BOXES (homepage)
   ============================================ */
.quick-nav {
  background: var(--gray-light);
  padding: 80px 0;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-nav-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(11,45,72,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.quick-nav-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-nav-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(11,45,72,0.12);
  border-color: transparent;
}

.quick-nav-card:hover::after { transform: scaleX(1); }

.quick-nav-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.quick-nav-card:hover .quick-nav-icon { transform: scale(1.1) rotate(-5deg); }

.quick-nav-icon.red { background: rgba(200,2,2,0.08); }
.quick-nav-icon.blue { background: rgba(11,45,72,0.07); }
.quick-nav-icon.cream { background: rgba(251,231,198,0.5); }

.quick-nav-icon svg {
  width: 32px; height: 32px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.quick-nav-icon.red svg { stroke: var(--red); }
.quick-nav-icon.blue svg { stroke: var(--navy); }
.quick-nav-icon.cream svg { stroke: var(--navy); }

.quick-nav-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.quick-nav-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quick-nav-arrow {
  font-size: 22px;
  color: var(--red);
  font-weight: 700;
  margin-top: auto;
  transition: transform 0.3s ease;
  line-height: 1;
}

.quick-nav-card:hover .quick-nav-arrow { transform: translateX(6px); }

@media (max-width: 968px) {
  .quick-nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .quick-nav-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SALVATION VIDEO SECTION
   ============================================ */
.salvation {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.salvation::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,2,2,0.07) 0%, transparent 65%);
}

.salvation .section-label { color: rgba(251,231,198,0.6); }
.salvation .section-title { color: var(--white); }
.salvation .section-desc { color: rgba(251,231,198,0.6); }

.salvation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.salvation-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.salvation-video iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

.salvation-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.salvation-text h2 .accent { color: var(--red); }

.salvation-text > p {
  color: rgba(251,231,198,0.65);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.salvation-verse {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.salvation-verse p {
  color: var(--cream);
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.salvation-verse cite {
  font-size: 12px;
  color: rgba(251,231,198,0.5);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 968px) {
  .salvation-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   PLAN YOUR VISIT
   ============================================ */
.visit { background: var(--white); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.visit-interior {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
}

.visit-interior img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.visit-interior:hover img { transform: scale(1.03); }

.visit-interior-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,45,72,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 32px;
}

.visit-interior-label {
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--cream); letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.85;
}

.visit-details h2 {
  font-size: 38px; font-weight: 800;
  color: var(--navy); margin-bottom: 20px; line-height: 1.1;
}

.visit-details h2 .highlight { color: var(--red); }

.visit-details > p {
  color: var(--gray); font-size: 16px;
  line-height: 1.8; margin-bottom: 32px;
}

.visit-checklist { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }

.visit-check-item { display: flex; align-items: flex-start; gap: 14px; }

.visit-check-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(200,2,2,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

.visit-check-icon svg {
  width: 14px; height: 14px; stroke: var(--red); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

.visit-check-item p { color: var(--text-dark); font-size: 15px; line-height: 1.6; }
.visit-check-item p strong { color: var(--navy); }

@media (max-width: 968px) {
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   LIVESTREAM
   ============================================ */
.livestream { background: var(--gray-light); }

.livestream-player {
  position: relative; aspect-ratio: 16/9;
  border-radius: 20px; overflow: hidden;
  background: #000; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  max-width: 900px; margin: 0 auto;
}

.livestream-player iframe { width: 100%; height: 100%; border: 0; display: block; }

.livestream-status {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 24px; font-size: 14px;
  font-weight: 600; color: var(--gray);
}

.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray); }
.live-dot.live { background: #22c55e; animation: pulse 2s ease-in-out infinite; }

.livestream-meta {
  text-align: center; margin-top: 40px; padding-top: 40px;
  border-top: 1px solid rgba(11,45,72,0.08);
}

.livestream-meta p { color: var(--gray); font-size: 15px; line-height: 1.7; }
.livestream-meta a { color: var(--red); font-weight: 600; transition: color 0.3s ease; }
.livestream-meta a:hover { color: var(--red-hover); }

/* ============================================
   SERMON ARCHIVE
   ============================================ */
.sermons { background: var(--white); }

.sermons-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 600;
  border: 1.5px solid rgba(11,45,72,0.12); background: transparent;
  color: var(--gray); cursor: pointer; transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}

.sermons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.sermon-card {
  background: var(--gray-light); border-radius: 16px;
  overflow: hidden; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.sermon-card:hover {
  transform: translateY(-6px); box-shadow: 0 16px 48px rgba(11,45,72,0.1);
  border-color: rgba(11,45,72,0.06);
}

.sermon-thumbnail {
  position: relative; aspect-ratio: 16/9;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}

.sermon-thumbnail-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.sermon-thumbnail img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sermon-card:hover .sermon-thumbnail img { transform: scale(1.05); }

/* Make sermon-card work as a link */
a.sermon-card { color: inherit; text-decoration: none; cursor: pointer; }

.sermon-play-btn {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(200,2,2,0.4);
}

.sermon-card:hover .sermon-play-btn {
  transform: scale(1.12); box-shadow: 0 8px 30px rgba(200,2,2,0.5);
}

.sermon-play-btn svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }

.sermon-series-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--red); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
}

.sermon-info { padding: 20px 24px; }

.sermon-info h3 {
  font-size: 17px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px; line-height: 1.3;
}

.sermon-scripture { font-size: 13px; color: var(--red); font-weight: 600; margin-top: 4px; }

.sermon-meta {
  display: flex; align-items: center; gap: 14px; font-size: 12px;
  color: var(--gray); margin-top: 10px; flex-wrap: wrap;
}

.sermon-meta span { display: flex; align-items: center; gap: 4px; }

.sermon-meta svg {
  width: 12px; height: 12px; stroke: var(--gray);
  fill: none; stroke-width: 2; stroke-linecap: round;
}

.sermons-more { text-align: center; margin-top: 48px; }

/* ============================================
   STAFF
   ============================================ */
.staff { background: var(--gray-light); }

.staff-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

.staff-card {
  background: var(--white); border-radius: 20px; padding: 40px 32px;
  text-align: center; max-width: 420px; width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.staff-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(11,45,72,0.1); }

.staff-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--navy); margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--cream); overflow: hidden;
}

.staff-avatar svg { width: 52px; height: 52px; fill: var(--cream); }

.staff-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }

.staff-title {
  font-size: 12px; font-weight: 700; color: var(--red);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}

.staff-card > p { color: var(--gray); font-size: 14px; line-height: 1.75; }

.staff-details {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(11,45,72,0.06);
  display: flex; flex-direction: column; gap: 8px;
}

.staff-detail-item { font-size: 13px; color: var(--gray); }
.staff-detail-item strong { color: var(--navy); }

/* ============================================
   PRAYER REQUESTS
   ============================================ */
.prayer { background: var(--navy); position: relative; overflow: hidden; }

.prayer::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,2,2,0.06) 0%, transparent 60%);
}

.prayer .section-label { color: var(--cream); opacity: 0.6; }
.prayer .section-title { color: var(--white); }
.prayer .section-desc { color: rgba(251,231,198,0.5); }

.prayer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start; position: relative; z-index: 1;
}

.prayer-info h3 {
  font-size: 28px; font-weight: 800; color: var(--white);
  margin-bottom: 20px; line-height: 1.2;
}

.prayer-info > p {
  color: rgba(251,231,198,0.6); font-size: 15px;
  line-height: 1.8; margin-bottom: 36px;
}

.prayer-verse {
  background: rgba(255,255,255,0.04); border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0; padding: 24px 28px; margin-bottom: 36px;
}

.prayer-verse p {
  color: var(--cream); font-size: 15px; font-style: italic;
  line-height: 1.8; margin-bottom: 8px;
}

.prayer-verse cite {
  font-size: 13px; color: rgba(251,231,198,0.5);
  font-style: normal; font-weight: 700;
}

.prayer-promise { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }

.prayer-promise-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(200,2,2,0.12); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}

.prayer-promise-icon svg {
  width: 20px; height: 20px; stroke: var(--red); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.prayer-promise-text h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.prayer-promise-text p { font-size: 13px; color: rgba(251,231,198,0.5); line-height: 1.5; }

/* ============================================
   SHARED FORM STYLES
   ============================================ */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px;
}

.form-dark label { color: rgba(251,231,198,0.7); }
.form-light label { color: var(--navy); }

.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid;
  font-family: 'Amiko', sans-serif; font-size: 15px;
  transition: border-color 0.3s ease, background 0.3s ease; outline: none;
}

.form-dark input, .form-dark textarea, .form-dark select {
  border-color: rgba(251,231,198,0.12); background: rgba(255,255,255,0.05); color: var(--white);
}

.form-dark input::placeholder, .form-dark textarea::placeholder { color: rgba(251,231,198,0.3); }

.form-dark input:focus, .form-dark textarea:focus, .form-dark select:focus {
  border-color: rgba(200,2,2,0.5); background: rgba(255,255,255,0.08);
}

.form-light input, .form-light textarea, .form-light select {
  border-color: rgba(11,45,72,0.12); background: var(--gray-light); color: var(--text-dark);
}

.form-light input::placeholder, .form-light textarea::placeholder { color: var(--gray); }

.form-light input:focus, .form-light textarea:focus {
  border-color: var(--red); background: var(--white);
}

.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-dark select option { background: var(--navy); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }

.form-check input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px; border-radius: 4px;
  accent-color: var(--red); margin-top: 2px;
}

.form-check label {
  font-size: 14px; color: rgba(251,231,198,0.65); line-height: 1.5;
  cursor: pointer; text-transform: none; letter-spacing: 0;
}

.prayer-form-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(251,231,198,0.1);
  border-radius: 24px; padding: 48px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact { background: var(--gray-light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-info h3 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }

.contact-info > p { color: var(--gray); font-size: 16px; margin-bottom: 40px; line-height: 1.7; }

.contact-detail { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }

.contact-detail-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(200,2,2,0.08); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 24px; height: 24px; stroke: var(--red); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.contact-detail-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-detail-text p { color: var(--gray); font-size: 14px; line-height: 1.6; }

.contact-map { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

.map-actions {
  background: var(--white); padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.map-actions span { font-size: 14px; font-weight: 600; color: var(--navy); }
.map-actions a { font-size: 13px; font-weight: 700; color: var(--red); transition: color 0.3s ease; }
.map-actions a:hover { color: var(--red-hover); }

.area-served { margin-top: 20px; padding: 20px 24px; background: var(--white); border-radius: 14px; }
.area-served h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.area-served p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.contact-form-box {
  background: var(--white); border-radius: 20px;
  padding: 36px; box-shadow: 0 4px 30px rgba(0,0,0,0.06); margin-top: 24px;
}

.contact-form-box h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }

/* ============================================
   404 PAGE
   ============================================ */
.not-found-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.not-found-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(200,2,2,0.06);
}

.not-found-content {
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.not-found-number {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(251,231,198,0.2);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.not-found-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.not-found-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.not-found-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.not-found-links .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.not-found-links .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.not-found-pages > p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.not-found-page-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.not-found-page-links a {
  color: rgba(251,231,198,0.7);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
  padding: 6px 14px;
  border: 1px solid rgba(251,231,198,0.15);
  border-radius: 20px;
}

.not-found-page-links a:hover { color: var(--cream); border-color: rgba(251,231,198,0.4); }

/* ============================================
   BOOKSTORE
   ============================================ */
.bookstore { background: var(--white); }

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 16px;
}

.book-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(11,45,72,0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(11,45,72,0.05);
}

.book-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(11,45,72,0.12);
  border-color: transparent;
}

.book-cover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-cover.book-cover-img {
  height: 320px;
  background: var(--gray-light);
}

.book-cover.book-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.book-card:hover .book-cover.book-cover-img img { transform: scale(1.04); }

.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,2,2,0.15) 0%, transparent 60%);
}

.book-cover.book-cover-img::after { display: none; }

.book-cover-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: rgba(251,231,198,0.4);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.book-info {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-tag {
  display: inline-block;
  background: rgba(200,2,2,0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  width: fit-content;
}

.book-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.book-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}

.book-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  margin-left: 4px;
}

.book-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

.book-btn {
  width: 100%;
  justify-content: center;
}

.bookstore-order {
  background: var(--gray-light);
}

.order-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(11,45,72,0.08);
}

.order-icon {
  width: 72px;
  height: 72px;
  background: rgba(11,45,72,0.06);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.order-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-box h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.order-box > p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.order-address {
  background: var(--gray-light);
  border-left: 4px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
}

.order-note {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.order-note a {
  color: var(--red);
  font-weight: 600;
}

.order-note a:hover { text-decoration: underline; }

.order-pay-btn { margin: 24px 0 16px; }

.bookstore-giving { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%); }

.giving-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.giving-box .order-icon { background: rgba(255,255,255,0.1); }
.giving-box .order-icon svg { stroke: var(--cream); }

.giving-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.giving-box > p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .order-box { padding: 40px 24px; }
  .books-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AMERICA FOR CHRIST MINISTRY
   ============================================ */
.america-ministry {
  background: var(--white);
  overflow: hidden;
}

.america-banner {
  background: linear-gradient(165deg, rgba(11,45,72,0.88) 0%, rgba(11,45,72,0.72) 100%),
              url('america-2.png') center / cover no-repeat;
  padding: 110px 0;
  text-align: center;
  color: var(--white);
}

.america-banner .section-label { color: rgba(251,231,198,0.65); }

.america-banner h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  margin: 14px 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.america-banner > .container > p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.america-text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0 56px;
}

.america-text h3 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 22px;
}

.america-text h3 .highlight {
  color: var(--red);
}

.america-text > p {
  color: var(--gray);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 14px;
}

.america-photos-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}

.america-photos-single {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

.america-cta {
  text-align: center;
  padding-bottom: 90px;
}

.america-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,45,72,0.14);
}

.america-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.america-photo:hover img { transform: scale(1.04); }

.america-verse {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  background: var(--gray-light);
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.america-verse p {
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.65;
}

.america-verse cite {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================
   SERMONS — COMING SOON
   ============================================ */
.sermons-coming {
  background: var(--gray-light);
}

.sermons-coming-box {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(11,45,72,0.08);
}

.sermons-coming-icon {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.sermons-coming-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sermons-coming-box h2 {
  font-size: clamp(24px, 4vw, 34px);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.sermons-coming-box > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}

.sermons-coming-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sermons-times {
  border-top: 1px solid rgba(11,45,72,0.1);
  padding-top: 40px;
  margin-top: 40px;
}

.sermons-times h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.sermons-times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sermons-time-item {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sermons-time-day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.sermons-time-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.sermons-time-clock {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-head);
}

@media (max-width: 768px) {
  .sermons-coming-box { padding: 40px 24px; }
  .sermons-times-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .sermons-times-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — ALL PAGES
   ============================================ */
@media (max-width: 968px) {
  .prayer-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .salvation-grid { grid-template-columns: 1fr; gap: 48px; }
  .america-photos-row { grid-template-columns: 1fr; gap: 24px; }
  .america-banner { padding: 80px 0; }
}

@media (max-width: 768px) {
  .staff-grid { max-width: 400px; margin: 0 auto; }
  .prayer-form-wrap { padding: 32px 24px; }
  .contact-form-box { padding: 24px 16px; }
  .sermons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
