/* ═══════════════════════════════════════════════
   BMC MALANG — style.css  FINAL PUBLISH READY
   WebKreasiAdhi © 2025
   Audit: Mobile-first 360px · Android-safe
   ═══════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ───────────────────── */
:root {
  --navy      : #0D2D62;
  --navy-dk   : #081d42;
  --navy-md   : #122f6b;
  --gold      : #C89B03;
  --gold-lt   : #e0b804;
  --gold-pale : rgba(200,155,3,.12);
  --white     : #FFFFFF;
  --gray-lt   : #F5F7FA;
  --gray-mid  : #7a8aaa;
  --text      : #4a5568;
  --green-wa  : #25D366;

  --ff-serif  : 'Cormorant Garamond', Georgia, serif;
  --ff-sans   : 'Poppins', system-ui, sans-serif;
  --ff-body   : 'Inter', system-ui, sans-serif;

  --sh-xs : 0 2px 8px rgba(13,45,98,.07);
  --sh-sm : 0 4px 20px rgba(13,45,98,.10);
  --sh-md : 0 8px 36px rgba(13,45,98,.16);
  --sh-lg : 0 16px 56px rgba(13,45,98,.22);

  --rad   : 16px;
  --rad-s : 10px;
  --ease  : cubic-bezier(.4,0,.2,1);
  --t     : .28s;

  --nav-h : 64px;
}

/* ── 2. RESET ────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  color: #2b2b2b;
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  min-width: 320px;          /* never break below 320 */
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: inherit; }
address { font-style: normal; }

/* ── 3. ACCESSIBILITY ────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--navy-dk);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* Focus ring for keyboard nav */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 4. UTILITIES ────────────────────────────── */
.sec        { padding: 80px 0; }
.bg-w       { background: var(--white); }
.bg-gl      { background: var(--gray-lt); }
.txt-c      { text-align: center; }
.mt4        { margin-top: 1.5rem; }
.mt5        { margin-top: 2rem; }
.d-mobile-only { display: none; }

/* ── 5. SECTION TYPOGRAPHY ───────────────────── */
.lbl {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(200,155,3,.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.lbl-lt { background: rgba(200,155,3,.15); color: #f0c040; }

.htitle {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.htitle span { color: var(--gold); }
.htitle-lt   { color: var(--white); }
.htitle-lt span { color: var(--gold-lt); }
.htitle em   { font-style: italic; color: var(--gold); }

.sub-p {
  font-size: .93rem;
  color: var(--gray-mid);
  max-width: 500px;
  margin: 8px auto 0;
}
.sub-lt { color: rgba(255,255,255,.58); }

.bdesc {
  font-size: .94rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Section header block */
.sec-hd {
  text-align: center;
  margin-bottom: 48px;
}
.sec-hd .lbl { display: inline-block; }

/* ── 6. BUTTONS ──────────────────────────────── */
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-dk) !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  white-space: nowrap;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.btn-g:hover, .btn-g:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(200,155,3,.45);
}

.btn-ow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--white) !important;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  padding: 13px 26px;
  border-radius: 50px;
  white-space: nowrap;
  transition:
    border-color var(--t),
    color var(--t),
    transform var(--t);
}
.btn-ow:hover, .btn-ow:focus-visible {
  border-color: var(--gold);
  color: var(--gold) !important;
  transform: translateY(-3px);
}

/* ── 7. PAGE LOADER ──────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy-dk);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .55s ease, visibility .55s ease;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }

.ld-box     { text-align: center; }
.ld-emblem  {
  width: 60px; height: 60px;
  background: var(--gold-pale);
  border: 2px solid rgba(200,155,3,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.6rem;
  color: var(--gold);
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,155,3,.35); }
  50%      { box-shadow: 0 0 0 12px rgba(200,155,3,0); }
}
.ld-name {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.ld-track {
  width: 110px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}
.ld-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 3px;
  animation: ldBar 1.1s ease forwards;
}
@keyframes ldBar { to { width: 100%; } }

/* ── 8. NAVBAR ───────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition:
    background var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
#navbar.scrolled {
  background: rgba(8,29,66,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

/* Nav inner row */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: calc(100% - 56px);   /* leave room for hamburger */
}
.nav-emblem {
  width: 36px; height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy-dk);
}
.nav-brandtxt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  overflow: hidden;
}
.nav-bname {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: .8rem;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-bsub {
  font-size: .58rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background var(--t);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Drawer */
.nav-drawer {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 12px; right: 12px;
  background: rgba(8,29,66,.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 14px;
  padding: 12px 10px 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.38);
  border: 1px solid rgba(200,155,3,.18);
}
.nav-drawer.open { display: block; }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-a {
  display: block;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 11px 16px;
  border-radius: 10px;
  transition: color var(--t), background var(--t);
}
.nav-a:hover, .nav-a:focus-visible {
  color: var(--gold);
  background: rgba(200,155,3,.1);
}
.nav-a.active-a { color: var(--gold); }

/* CTA in drawer */
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important;
  color: var(--navy-dk) !important;
  font-weight: 700;
  text-align: center;
  margin-top: 6px;
  border-radius: 50px;
}
.nav-cta:hover { opacity: .88; color: var(--navy-dk) !important; }

/* Desktop nav (≥1024px — show inline) */
@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav-drawer {
    display: flex !important;
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    width: auto;
  }
  .nav-links {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  .nav-a {
    font-size: .82rem;
    padding: 7px 13px;
    color: rgba(255,255,255,.82);
    white-space: nowrap;
  }
  .nav-cta {
    padding: 8px 20px;
    margin-top: 0;
    border-radius: 50px;
  }
}

/* ── 9. HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85svh;          /* safe area on iOS */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=1400&q=80')
    center / cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.09); }
}

.hero-ov {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(8,29,66,.93) 0%,
      rgba(13,45,98,.84) 55%,
      rgba(8,29,66,.96) 100%
    );
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) 20px 20px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

/* Emblem — float+glow, NO spin */
.hero-emblem-wrap { margin-bottom: 24px; }
.hero-emblem {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin: 0 auto;
  animation: floatGlow 4s ease-in-out infinite;
}
@keyframes floatGlow {
  0%,100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 0 rgba(200,155,3,.4),
      0 0 20px rgba(200,155,3,.2);
  }
  50% {
    transform: translateY(-9px);
    box-shadow:
      0 16px 32px rgba(200,155,3,.2),
      0 0 40px rgba(200,155,3,.3);
  }
}
.he-cross {
  font-size: 1.3rem;
  color: var(--navy-dk);
  line-height: 1;
}
.he-label {
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 800;
  color: var(--navy-dk);
  letter-spacing: 2px;
}

.hero-eye {
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--ff-sans);
  font-size: clamp(.9rem, 3.5vw, 1.15rem);
  font-weight: 400;
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.55;
}

.hero-verse {
  font-family: var(--ff-serif);
  font-size: .92rem;
  color: rgba(255,255,255,.48);
  font-style: italic;
  margin-bottom: 32px;
}

.hero-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.38);
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.sh-dot {
  width: 18px; height: 30px;
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 10px;
  position: relative;
}
.sh-dot::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0%   { transform: translate(-50%,0); opacity: 1; }
  100% { transform: translate(-50%,10px); opacity: 0; }
}

/* ── 10. ABOUT ───────────────────────────────── */
.about-img {
  position: relative;
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy-dk);
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 18px rgba(200,155,3,.4);
}

.stats-row {
  display: flex;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  margin-top: 20px;
}
.stat-item { flex: 1; text-align: center; }
.stat-div {
  width: 1px; height: 36px;
  background: #e2e8f0;
}
.stat-n {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: .7rem;
  color: var(--gray-mid);
  font-family: var(--ff-sans);
  font-weight: 500;
}

/* ── 11. JADWAL ──────────────────────────────── */
.sched-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sc-card {
  background: var(--white);
  border-radius: var(--rad);
  padding: 24px 20px;
  border: 1px solid rgba(13,45,98,.07);
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
.sc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

/* Featured card */
.sc-featured {
  background: linear-gradient(145deg, var(--navy-dk), var(--navy-md));
  border-color: transparent;
}
.sc-featured .sc-title,
.sc-featured .sc-desc,
.sc-featured .sc-addr { color: rgba(255,255,255,.9); }
.sc-featured .sc-info li { color: rgba(255,255,255,.62); }
.sc-featured .sc-link   { color: var(--gold-lt); }

/* Location card */
.sc-loc { background: #edf2f7; }

.sc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sc-ico {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}
.sc-featured .sc-ico { background: rgba(200,155,3,.2); }

.sc-badge {
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-dk);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
}

.sc-title {
  font-family: var(--ff-sans);
  font-size: .96rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.sc-info li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray-mid);
  font-family: var(--ff-sans);
}
.sc-info li i { font-size: .85rem; flex-shrink: 0; }

.sc-desc {
  font-size: .83rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.sc-addr {
  font-size: .86rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--t);
}
.sc-link:hover { gap: 9px; color: var(--gold-lt); }

.sc-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-wa);
  color: var(--white) !important;
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  margin-top: 10px;
  width: fit-content;
  transition: transform var(--t), box-shadow var(--t);
}
.sc-wa:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(37,211,102,.4); }

/* ── 12. VISI MISI ───────────────────────────── */
.vm-sec { background: var(--navy-dk); }

.vm-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.vm-left  { background: linear-gradient(155deg, var(--navy-dk), var(--navy-md)); padding: 48px 40px; }
.vm-right { background: linear-gradient(155deg, var(--gold), #b8890a); padding: 48px 40px; }

.vm-ico {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.vm-right .vm-ico { color: var(--navy-dk); }

.vm-lbl {
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.vm-right .vm-lbl { color: rgba(0,0,0,.5); }

.vm-q {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.92);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin: 0 0 16px;
}

.vm-ref {
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
}

.vm-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.vm-list li {
  font-size: .9rem;
  color: var(--navy-dk);
  font-weight: 600;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}
.vm-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--navy-dk);
}

/* ── 13. PASTOR ──────────────────────────────── */
.pastor-card {
  background: var(--white);
  border-radius: var(--rad);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid rgba(13,45,98,.06);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.pastor-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.pastor-top {
  background: linear-gradient(145deg, var(--navy-dk), var(--navy-md));
  padding: 32px 20px 24px;
  display: flex;
  justify-content: center;
}
.pastor-av {
  width: 88px; height: 88px;
  background: rgba(200,155,3,.18);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2.2rem;
}

.pastor-body { padding: 20px 22px 26px; }
.pastor-name {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.pastor-role {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: var(--ff-sans);
}
.pastor-bio { font-size: .86rem; color: var(--text); line-height: 1.7; }

/* ── 14. PELAYANAN ───────────────────────────── */
.min-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.min-card {
  background: var(--gray-lt);
  border-radius: var(--rad);
  padding: 28px 22px;
  border: 1px solid transparent;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease),
    background var(--t);
  display: flex;
  flex-direction: column;
}
.min-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  background: var(--navy);
}
.min-card:hover .min-title { color: var(--white); }
.min-card:hover .min-desc  { color: rgba(255,255,255,.7); }
.min-card:hover .min-ico   { background: rgba(200,155,3,.2); }

.min-ico {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-md));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 18px;
  transition: background var(--t);
}

.min-title {
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--t);
}
.min-desc {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  transition: color var(--t);
}
.min-link {
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t), color var(--t);
  margin-top: auto;
}
.min-card:hover .min-link { color: var(--gold-lt); gap: 8px; }

/* ── 15. KHOTBAH ─────────────────────────────── */
.sermon-sec {
  background: linear-gradient(160deg, var(--navy-dk) 0%, #103070 50%, var(--navy-dk) 100%);
}

.sermon-sw { padding-bottom: 50px !important; }

.sr-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rad);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.sr-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,155,3,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.sr-thumb {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sr-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.sr-card:hover .sr-thumb img { transform: scale(1.06); }

.sr-play {
  position: absolute;
  inset: 0;
  background: rgba(13,45,98,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--t);
}
.sr-card:hover .sr-play { opacity: 1; }

.sr-body { padding: 18px 16px; flex: 1; display: flex; flex-direction: column; }
.sr-spk  {
  font-family: var(--ff-sans);
  font-size: .73rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sr-title {
  font-family: var(--ff-sans);
  font-size: .93rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
}
.sr-date {
  font-size: .73rem;
  color: rgba(255,255,255,.42);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy-dk) !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
  transition: transform var(--t), box-shadow var(--t);
}
.sr-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(200,155,3,.45); }

/* Swiper override — sermon */
.sermon-sw .swiper-button-prev,
.sermon-sw .swiper-button-next {
  color: var(--gold) !important;
  background: rgba(255,255,255,.08);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(200,155,3,.3) !important;
}
.sermon-sw .swiper-button-prev::after,
.sermon-sw .swiper-button-next::after { font-size: 13px !important; font-weight: 800 !important; }

/* Pagination global */
.swiper-pagination-bullet          { background: rgba(0,0,0,.2) !important; }
.swiper-pagination-bullet-active   { background: var(--gold) !important; }
.sermon-sec .swiper-pagination-bullet { background: rgba(255,255,255,.3) !important; }
.sermon-sec .swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ── 16. ACARA ───────────────────────────────── */
.ev-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ev-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--rad);
  padding: 20px 18px;
  box-shadow: var(--sh-xs);
  border: 1px solid rgba(13,45,98,.05);
  transition: transform var(--t), box-shadow var(--t);
}
.ev-item:hover { transform: translateX(5px); box-shadow: var(--sh-sm); }

.ev-date {
  width: 58px;
  min-width: 58px;
  height: 58px;
  background: linear-gradient(145deg, var(--navy-dk), var(--navy-md));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-mon {
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ev-day {
  font-family: var(--ff-sans);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.ev-body { flex: 1; min-width: 0; }
.ev-tag  {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .62rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ev-title {
  font-family: var(--ff-sans);
  font-size: .96rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.35;
}
.ev-desc {
  font-size: .83rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 12px;
}
.ev-reg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t), gap var(--t);
}
.ev-reg:hover { color: var(--gold); border-color: var(--gold); gap: 8px; }

/* ── 17. GALERI ──────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  display: block;
}
.gal-big {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gal-item:hover img { transform: scale(1.07); }

.gal-ov {
  position: absolute;
  inset: 0;
  background: rgba(13,45,98,.52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--t);
}
.gal-item:hover .gal-ov,
.gal-item:focus-visible .gal-ov { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.lb-close:hover { background: var(--gold); color: var(--navy-dk); }

/* ── 18. TESTIMONIAL ─────────────────────────── */
.testi-sw { padding-bottom: 48px !important; }

.ts-card {
  background: var(--white);
  border-radius: var(--rad);
  padding: 28px 24px;
  border: 1px solid rgba(13,45,98,.07);
  box-shadow: var(--sh-xs);
  margin: 5px 3px;
  transition: box-shadow var(--t), transform var(--t);
}
.ts-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }

.ts-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.ts-text {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}
.ts-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ts-av {
  width: 42px; height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-md));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.ts-name {
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
  display: block;
}
.ts-role {
  font-size: .73rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

/* ── 19. KONTAK ──────────────────────────────── */
.ct-info {
  background: linear-gradient(145deg, var(--navy-dk), var(--navy-md));
  border-radius: var(--rad);
  padding: 32px 28px;
  height: 100%;
  min-height: 400px;
}
.ct-htitle {
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ct-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.ct-ico {
  width: 38px; height: 38px;
  min-width: 38px;
  background: rgba(200,155,3,.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.ct-wa-ico { background: rgba(37,211,102,.15); color: var(--green-wa); }

.ct-lbl {
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin: 0 0 3px;
}
.ct-val {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
  display: block;
}
address.ct-val { font-style: normal; }
.ct-link { transition: color var(--t); }
.ct-link:hover { color: var(--gold); }

.ct-social { margin-top: 20px; }
.ct-soc-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.soc {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white) !important;
  transition: transform var(--t), box-shadow var(--t);
}
.soc:hover { transform: translateY(-4px); }
.soc-ig { background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.soc-tt { background: #010101; }
.soc-yt { background: #FF0000; }
.soc-fb { background: #1877f2; }

/* Map */
.map-wrap { margin-bottom: 16px; }
.map-wrap iframe {
  display: block;
  border-radius: 12px;
  width: 100%;
}

/* Form */
.ct-form-wrap {
  background: var(--gray-lt);
  border-radius: var(--rad);
  padding: 24px;
  border: 1px solid rgba(13,45,98,.06);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.fg:last-child { margin-bottom: 0; }

.flbl {
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--gray-mid); }

.finp {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(13,45,98,.1);
  border-radius: var(--rad-s);
  padding: 11px 13px;
  font-size: .9rem;
  color: #2b2b2b;
  font-family: var(--ff-body);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.finp:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,3,.12);
}
.finp::placeholder { color: #b0bac8; }
textarea.finp { resize: vertical; min-height: 90px; }

.fsub-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--ff-sans);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-dk);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border: none;
  padding: 13px 20px;
  border-radius: 50px;
  margin-top: 4px;
  transition: transform var(--t), box-shadow var(--t);
}
.fsub-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,155,3,.4); }

.fsuccess {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #d4edda;
  color: #155724;
  border-radius: var(--rad-s);
  padding: 12px 14px;
  margin-top: 12px;
  font-family: var(--ff-sans);
  font-size: .86rem;
  font-weight: 600;
}
.fsuccess[hidden] { display: none; }

/* ── 20. FOOTER ──────────────────────────────── */
.site-footer { background: var(--navy-dk); }

.ft-main {
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.ft-emblem {
  width: 42px; height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-dk);
}
.ft-name {
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.ft-loc {
  font-size: .62rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 0;
}

.ft-tag {
  font-family: var(--ff-serif);
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
  margin-bottom: 18px;
}

.ft-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ft-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.58);
  font-size: .95rem;
  transition: background var(--t), color var(--t), transform var(--t);
}
.ft-social a:hover {
  background: var(--gold);
  color: var(--navy-dk);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.ft-h {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ft-ul { display: flex; flex-direction: column; gap: 8px; }
.ft-ul a {
  font-size: .83rem;
  color: rgba(255,255,255,.48);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t), padding-left var(--t);
}
.ft-ul a::before { content: '›'; color: var(--gold); font-size: .95rem; }
.ft-ul a:hover { color: var(--gold); padding-left: 4px; }

.ft-sched { display: flex; flex-direction: column; gap: 8px; }
.ft-sched li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.48);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  gap: 8px;
}
.ft-sched li:last-child { border-bottom: none; padding-bottom: 0; }
.ft-sched li span:first-child { flex: 1; }
.ft-sched li span:last-child  { color: var(--gold); white-space: nowrap; font-weight: 600; }

.ft-ct { display: flex; flex-direction: column; gap: 12px; }
.ft-ct li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  line-height: 1.5;
}
.ft-ct li .ri {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .88rem;
}
.ft-ct a { color: rgba(255,255,255,.48); transition: color var(--t); }
.ft-ct a:hover { color: var(--gold); }

.ft-bottom { padding: 18px 0; }
.ft-btm-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-btm-inner p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}
.gold-lnk { color: var(--gold); font-weight: 600; }

/* ── 21. FLOAT WA + SCROLL TOP ───────────────── */
.float-wa {
  position: fixed;
  bottom: 20px; right: 18px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white) !important;
  padding: 13px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 700;
  transition: transform var(--t), box-shadow var(--t);
}
.float-wa .ri { font-size: 1.25rem; }
.float-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,.55);
  color: var(--white) !important;
}

.go-top {
  position: fixed;
  bottom: 76px; right: 18px;
  z-index: 500;
  width: 42px; height: 42px;
  background: var(--navy);
  border: 1.5px solid rgba(200,155,3,.35);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t), visibility var(--t), transform var(--t), background var(--t);
}
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { background: var(--gold); color: var(--navy-dk); }

/* ── 22. RESPONSIVE — TABLET ≤ 1023px ────────── */
@media (max-width: 1023px) {
  :root { --nav-h: 60px; }
  .sec { padding: 64px 0; }

  /* Schedule 2 cols */
  .sched-grid { grid-template-columns: repeat(2, 1fr); }

  /* Ministry 2 cols */
  .min-grid { grid-template-columns: repeat(2, 1fr); }

  /* Visi misi stack */
  .vm-wrap { grid-template-columns: 1fr; }
  .vm-left, .vm-right { padding: 36px 32px; }
}

/* ── 23. RESPONSIVE — MOBILE ≤ 767px ─────────── */
@media (max-width: 767px) {
  :root { --nav-h: 58px; }
  .sec { padding: 52px 0; }

  /* Hero */
  .hero-body { padding: calc(var(--nav-h) + 30px) 16px 52px; }
  .hero-h1   { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-sub  { font-size: .92rem; }
  .hero-acts { flex-direction: column; align-items: center; }
  .hero-acts .btn-g,
  .hero-acts .btn-ow { width: 100%; max-width: 300px; justify-content: center; }

  /* About */
  .about-img img   { height: 260px; }
  .about-badge     { font-size: .72rem; padding: 7px 12px; }

  /* Schedule 1 col */
  .sched-grid { grid-template-columns: 1fr; }

  /* Ministry 1 col */
  .min-grid   { grid-template-columns: 1fr; }

  /* Visi misi */
  .vm-left, .vm-right { padding: 28px 22px; }
  .vm-q { font-size: 1rem; }

  /* Gallery 2-col simple */
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gal-big { grid-column: span 2; grid-row: span 1; }
  .gal-grid .gal-item img { height: 160px; }

  /* Contact form full-width */
  .form-row-2 { grid-template-columns: 1fr; }

  /* Footer bottom */
  .ft-btm-inner { flex-direction: column; text-align: center; }

  /* Float WA icon only */
  .wa-lbl { display: none; }
  .float-wa {
    padding: 14px;
    border-radius: 50%;
  }

  .go-top  { bottom: 74px; right: 16px; }
  .float-wa { bottom: 18px; right: 16px; }

  /* Swiper nav arrows hidden on small */
  .sermon-sw .swiper-button-prev,
  .sermon-sw .swiper-button-next { display: none; }
}

/* ── 24. RESPONSIVE — SMALL MOBILE ≤ 420px ───── */
@media (max-width: 420px) {
  .sec { padding: 44px 0; }
  .htitle { font-size: 1.65rem; }
  .sec-hd { margin-bottom: 32px; }

  /* Hero emblem smaller */
  .hero-emblem { width: 66px; height: 66px; }
  .he-cross    { font-size: 1.1rem; }

  /* Gallery 1 col on very small */
  .gal-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gal-big { grid-column: span 1; }
  .gal-grid .gal-item { height: 200px; }
  .gal-grid .gal-item img { height: 200px; }

  /* Events compact */
  .ev-date { width: 50px; min-width: 50px; height: 50px; }
  .ev-day  { font-size: 1.2rem; }

  /* Schedule cards tighter */
  .sc-card { padding: 20px 16px; }

  /* Footer sched wrap */
  .ft-sched li { flex-direction: column; gap: 2px; align-items: flex-start; }

  /* Form */
  .ct-form-wrap { padding: 18px 14px; }
  .ct-info      { padding: 24px 18px; }

  /* Nav brand text trim */
  .nav-bname { font-size: .72rem; }

  /* Bottom fixed */
  .go-top   { bottom: 72px; right: 14px; width: 38px; height: 38px; font-size: 1rem; }
  .float-wa { bottom: 16px; right: 14px; }
}
