@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A1A2F;
  --navy-light: #0f2444;
  --gold: #D4A017;
  --gold-light: #e8b420;
  --cream: #F7F4EF;
  --gray: #E5E5E5;
  --white: #FFFFFF;
  --text-dark: #0A1A2F;
  --text-body: #374151;
  --text-muted: #6B7280;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.04);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: 1.05rem; line-height: 1.8; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,160,23,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,26,47,0.35); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }

/* SECTION HEADERS */
.section-label {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; color: var(--navy); }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* =================== NAVBAR =================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0; transition: all 0.4s ease;
}
.navbar.scrolled { background: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,0.3); padding: 0.8rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy); font-weight: 700;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo-text span { display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; position: relative; padding: 0.25rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 0.6rem 1.5rem !important; border-radius: 50px; font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy); border-radius: var(--radius-md);
  min-width: 210px; padding: 0.5rem 0;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1002;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--navy); border-top: none;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 0.65rem 1.4rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78); white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: var(--transition);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); padding-left: 1.7rem; }
.dropdown-menu a::after { display: none !important; }
/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm);
    padding: 0; margin: 0.25rem 0 0.5rem 1rem; min-width: auto;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a { font-size: 0.85rem; padding: 0.6rem 1rem; border-bottom-color: rgba(255,255,255,0.05); }
}

/* =================== HERO =================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A1A2F 0%, #0d2444 50%, #0A1A2F 100%); z-index: 0; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: url('https://picsum.photos/seed/church1600/1600/900') center/cover no-repeat; opacity: 0.12; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 50%, rgba(212,160,23,0.08) 0%, transparent 65%); }
.hero-content { position: relative; z-index: 1; max-width: 750px; padding: 8rem 0 5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold); padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 1.2rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; max-width: 560px; line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.45); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* =================== PILLARS =================== */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.pillar-card {
  background: var(--white); padding: 2rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); transition: var(--transition); border-bottom: 4px solid transparent;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-bottom-color: var(--gold); }
.pillar-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.pillar-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: var(--navy); }
.pillar-card p { color: var(--text-muted); font-size: 0.95rem; }

/* =================== SERVICE TIMES =================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.service-card {
  background: var(--white); padding: 2rem 1.5rem; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border-top: 4px solid var(--gold);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.service-time { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.4rem; }
.service-desc { font-size: 0.875rem; color: var(--text-muted); }
.map-container {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  height: 380px; background: var(--gray); display: flex; align-items: center; justify-content: center;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-placeholder { text-align: center; color: var(--text-muted); }

/* =================== FEATURED SERMON =================== */
.sermon-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
/* YouTube thumbnail link (embedding disabled → open on YouTube instead) */
.yt-thumb-link {
  position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 16/9; background: #000; text-decoration: none;
}
.yt-thumb-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease, opacity 0.3s ease; }
.yt-thumb-link:hover img { transform: scale(1.04); opacity: 0.75; }
.yt-play-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
}
.yt-play-overlay svg { width: 72px; height: 52px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); transition: transform 0.3s ease; }
.yt-thumb-link:hover .yt-play-overlay svg { transform: scale(1.1); }
.yt-play-overlay span { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; background: rgba(0,0,0,0.45); padding: 0.35rem 0.9rem; border-radius: 50px; }
/* Card-size thumbnail */
.yt-card-thumb { position: relative; display: block; aspect-ratio: 16/9; background: #000; overflow: hidden; text-decoration: none; }
.yt-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.3s ease; }
.yt-card-thumb:hover img { transform: scale(1.05); opacity: 0.65; }
.yt-card-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.yt-card-play svg { width: 52px; height: 38px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: transform 0.3s ease; }
.yt-card-thumb:hover .yt-card-play svg { transform: scale(1.15); }
.sermon-video-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 16/9; background: var(--navy); cursor: pointer;
}
.sermon-video-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: var(--transition); }
.sermon-video-wrap:hover img { opacity: 0.5; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70px; height: 70px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: var(--transition);
  color: var(--navy);
}
.sermon-video-wrap:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 0 10px rgba(212,160,23,0.2); }
.sermon-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.sermon-meta-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: var(--text-muted); }
.sermon-scripture { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--cream); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.875rem; color: var(--navy); font-weight: 600; margin-bottom: 1.25rem; }
.sermon-desc { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }

/* =================== MINISTRIES =================== */
.ministries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.ministry-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.ministry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.ministry-img { height: 200px; overflow: hidden; }
.ministry-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ministry-card:hover .ministry-img img { transform: scale(1.06); }
.ministry-body { padding: 1.75rem; }
.ministry-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.ministry-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--navy); }
.ministry-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* =================== EVENTS =================== */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.event-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; transition: var(--transition); border: 1px solid var(--gray); }
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-date-block { min-width: 80px; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem; text-align: center; }
.event-month { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.event-day { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.event-body { padding: 1.25rem 1.5rem; flex: 1; }
.event-type { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.4rem; }
.event-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--navy); }
.event-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.event-time { font-size: 0.8rem; color: var(--text-muted); }

/* =================== CTA SECTION =================== */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #0d2444 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.cta-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; transition: var(--transition); }
.cta-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.cta-item-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-item h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 0.75rem; }
.cta-item p { font-size: 0.9rem; color: rgba(255,255,255,0.62); margin-bottom: 1.5rem; }

/* =================== FOOTER =================== */
.footer { background: #050e1c; color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; margin: 1.25rem 0; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: var(--transition); color: rgba(255,255,255,0.65); }
.social-link:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.footer-heading { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* =================== PAGE HERO =================== */
.page-hero { background: linear-gradient(135deg, var(--navy), #0d2444); padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero.cream-after::after { background: var(--cream); }
.page-hero-content { text-align: center; position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* =================== ABOUT PAGE =================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; }
.rounded-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); height: 440px; }
.rounded-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; }
.mv-card.mission::before { background: var(--gold); }
.mv-card.vision::before  { background: var(--navy); }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.mv-card p { color: var(--text-muted); line-height: 1.8; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.team-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-img { height: 260px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 1.5rem; }
.team-info h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.3rem; }
.team-role { font-size: 0.875rem; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.team-info p { font-size: 0.875rem; color: var(--text-muted); }
/* Initials avatar fallback when photo not yet added */
.team-avatar-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
}
.visit-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.visit-step { text-align: center; padding: 2rem; }
.step-number { width: 56px; height: 56px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin: 0 auto 1.25rem; }
.visit-step h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--navy); }
.visit-step p { font-size: 0.9rem; color: var(--text-muted); }

/* =================== SERMONS PAGE =================== */
.sermon-filters { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.5rem; }
.filter-btn { padding: 0.5rem 1.25rem; border-radius: 50px; border: 1.5px solid var(--gray); background: var(--white); color: var(--text-muted); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sermon-search { margin-left: auto; position: relative; }
.sermon-search input { padding: 0.6rem 1rem 0.6rem 2.5rem; border: 1.5px solid var(--gray); border-radius: 50px; font-size: 0.875rem; width: 240px; outline: none; transition: var(--transition); font-family: 'Inter', sans-serif; }
.sermon-search input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,26,47,0.08); }
.sermon-search .search-icon { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.875rem; }
.sermons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 2rem; }
.sermon-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray); transition: var(--transition); }
.sermon-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sermon-thumb { position: relative; height: 180px; overflow: hidden; background: var(--navy); cursor: pointer; }
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.5s ease, opacity 0.3s ease; }
.sermon-card:hover .sermon-thumb img { transform: scale(1.05); opacity: 0.5; }
.sermon-thumb .play-btn { width: 50px; height: 50px; font-size: 1rem; }
.sermon-card-body { padding: 1.5rem; }
.sermon-series { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.sermon-card-body h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--navy); line-height: 1.4; }
.sermon-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.sermon-speaker { display: flex; align-items: center; gap: 0.4rem; font-weight: 500; }

/* =================== MINISTRIES PAGE =================== */
.ministry-section { padding: 5rem 0; }
.ministry-section:nth-child(odd) { background: var(--white); }
.ministry-section:nth-child(even) { background: var(--cream); }
.ministry-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ministry-section.reverse .container { direction: rtl; }
.ministry-section.reverse .container > * { direction: ltr; }
.ministry-section-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); height: 400px; }
.ministry-section-img img { width: 100%; height: 100%; object-fit: cover; }
.ministry-section-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
.ministry-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.ministry-detail-item { background: var(--cream); padding: 1rem; border-radius: var(--radius-sm); }
.ministry-section:nth-child(even) .ministry-detail-item { background: var(--white); }
.ministry-detail-item strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.25rem; }
.ministry-detail-item span { font-size: 0.9rem; color: var(--text-body); }

/* =================== EVENTS PAGE =================== */
.events-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.featured-event { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-xl); }
.featured-event img { width: 100%; height: 100%; object-fit: cover; }
.featured-event-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,47,0.95) 0%, rgba(10,26,47,0.25) 65%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.featured-event-overlay .event-type { color: var(--gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.featured-event-overlay h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 0.75rem; }
.featured-event-overlay p { color: rgba(255,255,255,0.68); font-size: 0.9rem; margin-bottom: 1rem; }
.sidebar-events { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-event { background: var(--white); border-radius: var(--radius-md); overflow: hidden; display: flex; box-shadow: var(--shadow-sm); border: 1px solid var(--gray); transition: var(--transition); cursor: pointer; }
.sidebar-event:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

/* =================== GIVING PAGE =================== */
.giving-options { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.giving-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); text-align: center; transition: var(--transition); border-top: 5px solid var(--gray); }
.giving-card.featured { border-top-color: var(--gold); }
.giving-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.giving-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.giving-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--navy); }
.giving-card > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.amount-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.amount-btn { padding: 0.65rem; border: 1.5px solid var(--gray); border-radius: var(--radius-sm); background: var(--white); font-weight: 600; cursor: pointer; transition: var(--transition); font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-body); }
.amount-btn:hover, .amount-btn.selected { background: var(--navy); color: var(--white); border-color: var(--navy); }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.impact-item { text-align: center; padding: 2rem 1rem; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.impact-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.impact-label { font-size: 0.9rem; color: var(--text-muted); }

/* =================== CONTACT PAGE =================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 46px; height: 46px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.contact-detail-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg); }
.contact-form-card h3 { margin-bottom: 1.5rem; color: var(--navy); }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--gray);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text-body); background: var(--white); transition: var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,26,47,0.08); }
textarea { resize: vertical; min-height: 130px; }
.prayer-form { background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem; }
.prayer-form h3 { margin-bottom: 0.5rem; color: var(--navy); }
.prayer-form > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.success-msg { display: none; background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.95rem; margin-top: 1rem; }
.success-msg.show { display: block; }

/* =================== ANIMATIONS =================== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 968px) {
  .sermon-featured, .two-col, .giving-intro, .contact-grid,
  .ministry-section .container, .mission-vision-grid, .giving-options { grid-template-columns: 1fr; gap: 2.5rem; }
  .ministry-section.reverse .container { direction: ltr; }
  .events-hero-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3); z-index: 999; gap: 0;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
  .nav-cta { margin-top: 1rem; text-align: center; border-radius: 8px !important; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-content { padding: 7rem 0 4rem; }
  .ministry-section-img { height: 280px; }
  .rounded-img { height: 300px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .giving-options, .ministry-details, .amount-buttons { grid-template-columns: 1fr; }
  .amount-buttons { grid-template-columns: repeat(2, 1fr); }
}
