/* ============================================
   NOW International Family Church - Main Stylesheet
   Design inspiration: thepottershouse.org
   ============================================ */

/* NOTE: Fonts are loaded via <link> tags in HTML head (faster, non-blocking) */
/* Google Fonts: Cinzel + Inter loaded as preconnect + stylesheet link */

:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A8882E;
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #1A1A25;
  --dark-4: #222235;
  --text-light: #F5F0E8;
  --text-muted: #9CA3AF;
  --accent-red: #8B1A1A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
}

/* ---------- Content Visibility (speed up initial paint) ---------- */
.content-visibility-auto {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-2);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 5rem 1rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gold-underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.gold-text {
  color: var(--gold);
}

.gold-border {
  border-color: var(--gold);
}

.bg-dark-2 {
  background-color: var(--dark-2);
}

.bg-dark-3 {
  background-color: var(--dark-3);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark-3);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar .social-links a {
  color: var(--text-muted);
  margin-left: 1rem;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.top-bar .social-links a:hover {
  color: var(--gold);
}

.top-bar .top-bar-text {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- Navigation ---------- */
.navbar {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.3s;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.75rem 0;
}

.navbar .logo-img {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.2rem;
}

.navbar .logo-text {
  display: flex;
  flex-direction: column;
}

.navbar .logo-text .logo-name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.2;
}

.navbar .logo-text .logo-tagline {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold);
}

.nav-menu > li > a .dropdown-icon {
  font-size: 0.6rem;
  transition: transform 0.3s;
}

.nav-menu > li:hover > a .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-3);
  min-width: 200px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a0a 50%, var(--dark-2) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, rgba(0,0,0,0.85) 70%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(201, 168, 76, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(201, 168, 76, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(201, 168, 76, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(201, 168, 76, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 40%, rgba(201, 168, 76, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 20% 80%, rgba(201, 168, 76, 0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 40%, rgba(201, 168, 76, 0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 20%, rgba(201, 168, 76, 0.2) 0%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.hero-title span {
  color: var(--gold);
}

.hero-slogan {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.hero-scroll-indicator a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---------- Services Carousel ---------- */
.services-carousel-wrapper {
  background: var(--dark-2);
  padding: 4rem 0;
  overflow: hidden;
}

.services-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  scrollbar-width: none;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15);
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.service-card:hover .icon {
  background: rgba(201, 168, 76, 0.2);
}

.service-card h3 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ---------- Programme Guide ---------- */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.programme-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.programme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}

.programme-card:hover::before {
  transform: scaleY(1);
}

.programme-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(4px);
}

.programme-card .day-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.programme-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.programme-card .time {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.programme-card .location {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- About Section ---------- */
.about-section {
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-left h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.about-left p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-right .accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  letter-spacing: 1px;
}

.accordion-header:hover {
  color: var(--gold);
}

.accordion-header .accordion-icon {
  font-size: 0.8rem;
  transition: transform 0.3s;
  color: var(--gold);
}

.accordion-item.active .accordion-header .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-label {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---------- Statistics Section ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--dark-3) 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- Video Section ---------- */
.video-section {
  background: var(--dark-2);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-placeholder .play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  color: var(--dark);
}

.video-placeholder .play-btn:hover {
  transform: scale(1.1);
  background: var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

.video-placeholder .video-label {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

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

.contact-info-item .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-info-item .contact-detail h4 {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.contact-info-item .contact-detail p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--dark-4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

/* ---------- Page Hero (shared across inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0a0a 50%, var(--dark-2) 100%);
}
.page-hero .hero-overlay { background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.1) 0%, rgba(0,0,0,0.85) 70%); }
.page-hero .hero-content { padding: 3rem 1rem; }
.page-hero .hero-title { font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero .breadcrumb { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.page-hero .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .separator, .page-hero .breadcrumb .current { color: var(--gold); }
.section-dark { background: var(--dark-2); }

/* ---------- Locations Section ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.location-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 10px;
  padding: 1.5rem;
}

.location-card h4 {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.location-card .location-type {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.location-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-3);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 4rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 350px;
}

.footer h4 {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-bottom .design-credit {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-3);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 999;
    overflow-y: auto;
    gap: 0;
  }

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

  .nav-menu > li > a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    border: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    border-radius: 0;
  }

  .nav-menu > li.open .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu a {
    padding-left: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-title {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 70vh;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 2.25rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile nav overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Smooth Count Up ---------- */
.count-up {
  display: inline-block;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float .whatsapp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-tooltip {
  background: #25D366;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ---------- Google Maps Embed ---------- */
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Form Status Messages ---------- */
.form-status {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ---------- YouTube Embed ---------- */
.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  border-radius: 12px;
  overflow: hidden;
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Improved Badge ---------- */
.badge-success {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* ---------- Structured Data (hidden) ---------- */
.structured-data {
  display: none;
}

/* ============================================
   LEADER SPOTLIGHT SECTION - BSP. BITOK
   Fancy landing section with premium styling
   ============================================ */

.leader-spotlight {
  position: relative;
  padding: 6rem 1rem;
  background: linear-gradient(160deg, var(--dark) 0%, #0f0a18 30%, #1a0f0a 60%, var(--dark-2) 100%);
  overflow: hidden;
}

/* Background effects */
.spotlight-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.spotlight-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}

.spotlight-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.spotlight-orb-2 {
  width: 300px;
  height: 300px;
  background: #8B1A1A;
  bottom: -50px;
  right: -50px;
  animation-delay: 3s;
}

.spotlight-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--gold-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.1); }
  50% { transform: translate(-10px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.05); }
}

.spotlight-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  opacity: 0.03;
}

.spotlight-cross::before,
.spotlight-cross::after {
  content: '';
  position: absolute;
  background: var(--gold);
}

.spotlight-cross::before {
  width: 4px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.spotlight-cross::after {
  width: 100%;
  height: 4px;
  top: 30%;
}

/* Grid layout */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Image wrapper */
.spotlight-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.spotlight-image-frame {
  position: relative;
  width: 340px;
  height: 340px;
}

.spotlight-image-glow {
  position: absolute;
  inset: -20px;
  background: conic-gradient(from 0deg, var(--gold), transparent 40%, var(--gold) 50%, transparent 90%, var(--gold));
  border-radius: 50%;
  opacity: 0.3;
  animation: glowRotate 6s linear infinite;
  filter: blur(15px);
}

@keyframes glowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spotlight-image-border {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%);
  z-index: 1;
}

.spotlight-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center -30%;
  display: block;
  transition: transform 0.5s ease;
}

.spotlight-image-frame:hover .spotlight-image {
  transform: scale(1.05);
}

.spotlight-crown {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
  animation: crownPulse 2s ease-in-out infinite;
}

@keyframes crownPulse {
  0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5); }
  50% { transform: translateX(-50%) scale(1.1); box-shadow: 0 6px 30px rgba(201, 168, 76, 0.7); }
}

.spotlight-verse-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
}

.spotlight-verse-badge span {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Image decorations */
.spotlight-image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.deco-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.15;
}

.deco-line-1 {
  width: 1px;
  height: 60%;
  top: -20px;
  left: 15%;
}

.deco-line-2 {
  width: 1px;
  height: 60%;
  bottom: -20px;
  right: 15%;
}

.deco-diamond {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

/* Content */
.spotlight-content {
  padding-right: 2rem;
}

.spotlight-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spotlight-label-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.spotlight-label-text {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

.spotlight-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.spotlight-name span {
  color: var(--gold);
  display: block;
  font-size: 1.1em;
}

.spotlight-role {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.spotlight-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* Quote */
.spotlight-quote {
  position: relative;
  padding: 1.5rem;
  background: rgba(201, 168, 76, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}

.spotlight-quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.3;
}

.spotlight-quote p {
  color: var(--gold-light);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  padding-left: 1rem;
}

.spotlight-quote cite {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  font-style: normal;
}

.spotlight-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Stats */
.spotlight-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.spotlight-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spotlight-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.spotlight-stat-info {
  display: flex;
  flex-direction: column;
}

.spotlight-stat-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spotlight-stat-value {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Actions */
.spotlight-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.spotlight-btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .spotlight-content {
    padding-right: 0;
  }

  .spotlight-label {
    justify-content: center;
  }

  .spotlight-divider {
    margin: 1.5rem auto;
  }

  .spotlight-quote {
    text-align: left;
  }

  .spotlight-stats {
    justify-content: center;
  }

  .spotlight-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .leader-spotlight {
    padding: 4rem 1rem;
  }

  .spotlight-image-frame {
    width: 250px;
    height: 250px;
  }

  .spotlight-stats {
    flex-direction: column;
    align-items: center;
  }

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

  .spotlight-btn {
    width: 100%;
  }
}
