/* Life Grace Ministries - Custom Styles (converted from React/Tailwind) */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

section[id] {
  scroll-margin-top: 6rem;
}

body {
  cursor: default;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Utility */
.container-main {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Cursor Glow Trail */
.cursor-glow-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
}

body.custom-cursor-active,
body.custom-cursor-active * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  opacity: 1;
  transition: opacity 0.12s ease;
}

.custom-cursor.is-hidden {
  opacity: 0;
}

/* Legacy particle helpers (unused) */
.cursor-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.cursor-particle-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: #fde047;
  box-shadow: 0 0 20px #facc15;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

@keyframes pulse {
  50% { opacity: 0.5; }
}

.animate-bounce { animation: bounce 1s infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.site-logo {
  font-size: clamp(0.9rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.site-logo:hover { color: #facc15; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  color: #e5e7eb;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  color: #e5e7eb;
  text-decoration: none;
  transition: all 0.3s;
}

.desktop-nav a:hover { color: #facc15; }

.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #facc15;
  transition: all 0.3s;
}

.desktop-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-donate-header {
  background: linear-gradient(to right, #f97316, #ea580c);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-donate-header:hover {
  background: linear-gradient(to right, #fb923c, #f97316);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.875rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 500;
  border-radius: 0 0 0.75rem 0.75rem;
}

.mobile-nav.show { display: flex; }

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0 0.5rem;
  transition: all 0.3s;
}

.mobile-nav a:hover { color: #facc15; }

@media (min-width: 992px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* Hero */
.hero-section {
  min-height: 100vh;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0d1a26;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-bg-img.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 1;
  box-sizing: border-box;
}

.hero-welcome {
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #facc15;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.1;
  animation: fadeUp 1s ease;
}

.hero-title-white {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero-title-gradient {
  background: linear-gradient(to right, #fef08a, #fb923c, #eab308);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb;
  animation: fadeIn 1s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeIn 1.5s ease;
}

.btn-join {
  background: #dc2626;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-join:hover { background: #b91c1c; transform: scale(1.1); }

.btn-donate-hero {
  background: #fff;
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-donate-hero:hover { transform: scale(1.1); }

@media (min-width: 768px) {
  .hero-title { font-size: 6rem; }
  .hero-subtitle { font-size: 1.5rem; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Our Church */
.section-our-church { padding: 6rem 0; background: #f8f8f8; }

.about-images {
  position: relative;
  height: 450px;
}

.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  height: 340px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.about-img-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 25px;
  border: 4px solid #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.about-deco-circle {
  position: absolute;
  top: 2.5rem;
  left: 5rem;
  width: 8rem;
  height: 8rem;
  background: #fed7aa;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.4;
}

@media (min-width: 768px) {
  .about-images { height: 650px; }
  .about-img-main { width: 500px; height: 600px; border-radius: 50px; }
  .about-img-small { width: 260px; height: 340px; border-radius: 40px; border-width: 8px; }
}

.label-orange {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f97316;
  font-weight: 600;
}

.heading-xl {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 1rem;
  line-height: 1.1;
}

.text-orange { color: #f97316; }

.text-body {
  color: #4b5563;
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 2.25rem;
}

.text-body-mt { color: #4b5563; margin-top: 1.5rem; font-size: 1.125rem; line-height: 2.25rem; }

@media (min-width: 992px) {
  .heading-xl { font-size: 4.5rem; }
}

.mission-card {
  background: linear-gradient(to bottom right, #f97316, #ea580c);
  color: #fff;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}

.mission-card:hover { transform: translateY(-8px); }

.vision-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-left: 8px solid #f97316;
  transition: all 0.3s;
}

.vision-card:hover { transform: translateY(-8px); }

.worship-img-wrap {
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
}

.worship-img-wrap img,
.worship-img-wrap .worship-img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: all 0.7s;
}

.worship-img-wrap img:hover { transform: scale(1.1); }

/* Leadership */
.section-leadership {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff7ed, #fff, #eff6ff);
}

.section-heading-center { text-align: center; margin-bottom: 5rem; }

.label-orange-wide {
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
}

.leader-img-wrap {
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.leader-img-wrap img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: all 0.7s;
}

.leader-img-wrap img:hover { transform: scale(1.05); }

.stat-card {
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
}

.stat-number { font-size: 1.875rem; font-weight: 900; color: #f97316; }

.rev-card {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.rev-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: all 0.7s;
}

.rev-card:hover img { transform: scale(1.1); }

.rev-card-info { padding: 2rem; text-align: center; }

.btn-learn-more {
  margin-top: 2.5rem;
  background: #f97316;
  border: none;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-learn-more:hover { background: #ea580c; transform: scale(1.05); }

.learn-more-content {
  margin-top: 2.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffedd5;
}

.learn-more-content h4 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 1.25rem;
}

/* Gallery */
.section-gallery {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, #eff6ff, #fff);
}

.label-red {
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
}

.heading-gallery {
  font-size: 3.75rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-top: 1rem;
}

.gallery-slide-card {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #fff;
  background: #fff;
  transition: all 0.5s;
}

.gallery-slide-card:hover { transform: translateY(-8px); }

.gallery-slide-card img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  transition: all 0.7s;
}

.gallery-slide-card img:hover {
  transform: scale(1.1) rotate(1deg);
}

/* Main Services */
.section-services {
  padding: 6rem 0;
  background: linear-gradient(to right, #581c87, #1e3a8a, #312e81);
}

.services-intro {
  margin-bottom: 3rem;
}

.services-tagline {
  color: #d1d5db;
  margin-top: 1rem;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.services-schedule-row {
  margin-bottom: 2.5rem;
}

.service-schedule-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-schedule-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.service-schedule-badge {
  display: inline-block;
  align-self: flex-start;
  background: #facc15;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
}

.service-schedule-badge-alt {
  background: #f97316;
  color: #fff;
}

.service-schedule-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.service-schedule-desc {
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-schedule-time-stacked {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.service-time-from,
.service-time-to {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 700;
}

.service-time-to-label {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-schedule-time {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-left: 4px solid #facc15;
}

.service-schedule-thursday .service-schedule-time {
  border-left-color: #f97316;
}

.service-time-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}

.service-schedule-time strong {
  font-size: 1.35rem;
  color: #fff;
  font-weight: 700;
}

.service-schedule-link {
  align-self: flex-start;
  background: none;
  border: none;
  color: #fde047;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.service-schedule-link:hover {
  color: #fff;
}

/* Events */
.section-events {
  padding: 6rem 0;
  background: #fff;
}

.events-heading {
  color: #111827;
  margin-top: 0.75rem;
}

.events-content-required {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f8f1e6;
  border: 1px dashed #f97316;
}

.events-required-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ea580c;
  text-transform: capitalize;
  margin: 0 0 1rem;
}

.events-required-text {
  color: #4b5563;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}

.lordscity-official-copy {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.lordscity-location-line,
.lordscity-overseers-line {
  font-size: 1.05rem;
  color: #334155;
  margin: 0 0 0.75rem;
  line-height: 1.7;
}

.lordscity-donate-line {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #334155;
  font-weight: 500;
}

.lordscity-donate-link {
  color: #f97316;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lordscity-donate-link:hover {
  color: #ea580c;
}

.events-intro-text {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.event-card {
  height: 100%;
  background: #f8f1e6;
  border-left: 4px solid #f97316;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.event-date {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 700;
}

.event-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.event-card p {
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.event-card-link {
  align-self: flex-start;
  background: none;
  border: none;
  color: #ea580c;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.event-card-link:hover {
  color: #c2410c;
}

.events-cta-text {
  color: #64748b;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* Lord's City enhanced */
.lordscity-inner {
  position: relative;
  z-index: 10;
}

.lordscity-intro {
  margin-bottom: 3rem;
}

.lordscity-info-card {
  background: #fff;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.lordscity-info-card h3 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.lordscity-info-card p {
  color: #1e293b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.lordscity-info-detail {
  font-size: 0.95rem !important;
  color: #64748b !important;
  margin-top: 0.35rem !important;
}

.lordscity-info-card hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1.25rem 0;
}

.lordscity-funding strong {
  font-size: 1.5rem;
  color: #f97316;
}

.lordscity-lead {
  font-size: 1.2rem;
  line-height: 1.85;
  color: #334155;
  font-weight: 500;
}

.lordscity-copy .text-body-mt {
  color: #475569;
}

.label-yellow {
  color: #facc15;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4px;
}

.heading-services {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .heading-services { font-size: 3.75rem; }
}

.service-card {
  cursor: pointer;
  background: linear-gradient(to bottom right, #fff, #fefce8, #ffedd5);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-16px) scale(1.1) rotate(1deg);
}

.service-icon { font-size: 3.75rem; margin-bottom: 1.5rem; }

.service-title { font-size: 1.5rem; font-weight: 700; color: #ea580c; }

.service-desc { color: #374151; margin-top: 1rem; line-height: 1.625; }

.service-link { margin-top: 1.25rem; color: #ea580c; font-weight: 600; }

/* Youth Services */
.section-youth { padding: 6rem 0; background: #fff; }

.youth-img { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); width: 100%; }

.label-red-narrow {
  color: #ef4444;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
}

.heading-youth { font-size: 3rem; font-weight: 700; color: #1e3a8a; margin-top: 1rem; }

.btn-youth-join {
  background: #dc2626;
  border: none;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-youth-join:hover { background: #b91c1c; transform: scale(1.05); }

.btn-youth-learn {
  background: transparent;
  border: 2px solid #1e3a8a;
  color: #1e3a8a;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-youth-learn:hover { background: #1e3a8a; color: #fff; }

.youth-expand {
  margin-top: 2rem;
  background: #eff6ff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.youth-expand h3 { font-size: 1.5rem; font-weight: 700; color: #1e3a8a; margin-bottom: 1rem; }

.youth-expand ul { list-style: none; padding: 0; margin: 0; }

.youth-expand li { margin-bottom: 0.75rem; color: #374151; }

/* Sunday / Thursday Service */
.section-sunday {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #000, #111827);
}

.service-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-hero-card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: all 0.7s;
}

.service-hero-card:hover img { transform: scale(1.1); }

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.service-hero-overlay-dark { background: rgba(0, 0, 0, 0.6); }

.badge-float {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
}

.service-hero-content {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  max-width: 42rem;
}

.badge-red {
  background: #dc2626;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}

.time-badge {
  background: #eab308;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.btn-join-service {
  background: #fff;
  color: #000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-join-service:hover { transform: scale(1.05); }

.section-thursday {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0d1326, #000);
}

/* GoFundMe */
.section-gofundme {
  padding: 6rem 0;
  background: linear-gradient(to right, #0f172a, #1e3a8a, #581c87);
}

.gofundme-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 40px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.label-cyan {
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #67e8f9;
  font-weight: 600;
}

.heading-gofundme {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .heading-gofundme { font-size: 4.5rem; }
}

.gofundme-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 2rem auto 0;
  line-height: 2.25rem;
}

.donate-card {
  cursor: pointer;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.donate-card:hover {
  transform: translateY(-12px) scale(1.05);
}

.donate-card.cyan:hover { box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4); }
.donate-card.purple:hover { box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.4); }
.donate-card.blue:hover { box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.4); }

.donate-card-icon { font-size: 3rem; margin-bottom: 1rem; }

.donate-card h3 { font-size: 1.5rem; font-weight: 700; }
.donate-card.cyan h3 { color: #06b6d4; }
.donate-card.purple h3 { color: #a855f7; }
.donate-card.blue h3 { color: #3b82f6; }

.btn-donate-support {
  background: #fff;
  color: #1e3a8a;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-donate-support:hover { transform: scale(1.05); background: #67e8f9; }

/* Donation paths */
.donate-path-card {
  height: 100%;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.donate-path-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #67e8f9;
  font-weight: 600;
}

.donate-path-church .donate-path-label { color: #fdba74; }

.donate-path-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.donate-path-desc {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.donate-path-bank {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
}

.btn-donate-path {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.modal-box-donate { max-width: 32rem; }

.donate-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.donate-modal-option {
  width: 100%;
  text-align: left;
  border: 2px solid #e5e7eb;
  background: #f8fafc;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.donate-modal-option:hover {
  transform: translateY(-2px);
  border-color: #f97316;
  background: #fff7ed;
}

.donate-modal-option strong {
  display: block;
  font-size: 1.15rem;
  color: #1e3a8a;
  margin: 0.2rem 0;
}

.donate-modal-option-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 700;
}

.donate-modal-option-desc {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.modal-overlay.show { display: flex; }

.modal-box {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  margin: 0 1rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.875rem;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover { color: #000; }

.modal-title { font-size: 1.875rem; font-weight: 700; text-align: center; color: #1e3a8a; }

.modal-desc { margin-top: 1rem; color: #4b5563; text-align: center; }

.amount-btn {
  background: #dbeafe;
  border: none;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-proceed-donate {
  width: 100%;
  margin-top: 1.5rem;
  background: #2563eb;
  border: none;
  color: #fff;
  padding: 1rem;
  border-radius: 9999px;
  font-weight: 700;
  cursor: pointer;
}

.btn-proceed-donate:hover { background: #1d4ed8; }

/* Lord's City */
.section-lordscity {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: linear-gradient(to bottom right, #e0f2fe, #ecfeff, #e0e7ff);
}

.lordscity-blur-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(103, 232, 249, 0.3);
  border-radius: 9999px;
  filter: blur(120px);
}

.lordscity-blur-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(196, 181, 253, 0.3);
  border-radius: 9999px;
  filter: blur(120px);
}

.label-sky {
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #0284c7;
  font-weight: 700;
}

.heading-lordscity {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 1.25rem;
  line-height: 1.1;
  color: #0f172a;
}

@media (min-width: 992px) {
  .heading-lordscity { font-size: 4.5rem; }
}

.lordscity-divider {
  width: 10rem;
  height: 6px;
  background: linear-gradient(to right, #06b6d4, #8b5cf6);
  margin: 1.5rem auto 0;
  border-radius: 9999px;
}

/* Lord's City Video Carousel */
.video-carousel {
  max-width: 100%;
}

.video-main-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #000;
}

/* 16:9 frame — full video visible at 100% zoom */
.video-ratio-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-fade-layer {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.video-fade-layer.is-fading {
  opacity: 1;
}

.carousel-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  z-index: 4;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-play-overlay.hidden {
  opacity: 0;
}

.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--main-600, #ee5428);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(238, 84, 40, 0.6);
}

.video-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  bottom: auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-radius: 0;
  z-index: 6;
  max-width: calc(100% - 2rem);
}

.video-label h3 {
  color: #fff;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  font-family: var(--heading-font, sans-serif);
}

.video-label p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.video-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 6;
}

.video-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--main-600, #ee5428);
  transition: width 0.2s linear;
}

.video-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.video-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(13, 26, 38, 0.15);
  background: #fff;
  color: var(--heading-color, #0d1a26);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-nav-btn:hover {
  background: var(--main-600, #ee5428);
  color: #fff;
  border-color: var(--main-600, #ee5428);
}

.video-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.video-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 26, 38, 0.2);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.video-dot.active {
  background: var(--main-600, #ee5428);
  transform: scale(1.25);
}

.video-thumbs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.video-thumb {
  cursor: pointer;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.35s ease;
  opacity: 0.65;
  border: 3px solid transparent;
  position: relative;
  width: 140px;
  height: 90px;
  flex-shrink: 0;
}

.video-thumb:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.video-thumb.active {
  opacity: 1;
  border-color: var(--main-600, #ee5428);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(238, 84, 40, 0.3);
}

.video-thumb img,
.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-thumb-num {
  position: absolute;
  bottom: 4px;
  right: 6px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
}

@keyframes videoPulse {
  0%, 100% { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 25px 50px -12px rgba(238, 84, 40, 0.35); }
}

.video-main-wrap.is-playing {
  animation: videoPulse 2s ease infinite;
}

@media (max-width: 575px) {
  .video-ratio-box {
    aspect-ratio: 16 / 9;
  }

  .video-label {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .video-play-btn {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
  }
}

.location-card {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
}

.btn-visit-lordscity {
  background: linear-gradient(to right, #06b6d4, #8b5cf6);
  border: none;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-visit-lordscity:hover { transform: scale(1.05); }

/* Counselling */
.section-counselling {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #f7f2eb, #fdfaf5, #f5efe6);
}

.heading-counselling {
  font-size: 3rem;
  font-weight: 900;
  color: #071B34;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  .heading-counselling { font-size: 3.75rem; }
}

.counselling-left {
  background: #fff;
  padding: 2.5rem;
  border-radius: 35px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffedd5;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.help-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #ffedd5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.counselling-right {
  background: linear-gradient(to bottom right, #f97316, #ea580c);
  color: #fff;
  padding: 2.5rem;
  border-radius: 35px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

.stat-box h4 { font-size: 2.25rem; font-weight: 900; margin: 0; }

.btn-request-counselling {
  background: #fff;
  color: #ea580c;
  border: none;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 2.5rem;
}

.btn-request-counselling:hover { transform: scale(1.05); }

/* Contact */
.section-contact { padding: 6rem 0; background: #F5EFE8; }

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.contact-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.contact-form-wrap {
  background: #fff;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-input {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

.form-input-highlight {
  border-color: #f97316 !important;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2) !important;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #f97316;
}

.contact-form-status {
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 4px solid #f97316;
  background: #fff7ed;
  color: #9a3412;
}

.contact-form-status--success {
  border-left-color: #16a34a;
  background: #f0fdf4;
  color: #166534;
}

.btn-request-counselling {
  display: inline-flex;
  text-decoration: none;
}

.btn-send {
  background: #f97316;
  border: none;
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-send:hover { background: #ea580c; transform: scale(1.05); }

.map-wrap {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.map-wrap iframe { display: block; border: 0; width: 100%; height: 650px; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #071B34, #0A2547, #0F3D6E);
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-blur {
  position: absolute;
  border-radius: 9999px;
  filter: blur(150px);
}

.footer-blur-1 { top: -8rem; left: -8rem; width: 400px; height: 400px; background: rgba(249, 115, 22, 0.1); animation: pulse 2s infinite; }
.footer-blur-2 { bottom: -8rem; right: -8rem; width: 400px; height: 400px; background: rgba(6, 182, 212, 0.1); animation: pulse 2s infinite; }
.footer-blur-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 250px; height: 250px; background: rgba(255, 255, 255, 0.05); filter: blur(100px); }
.footer-blur-4 { top: 0; left: 0; width: 500px; height: 500px; background: rgba(249, 115, 22, 0.1); filter: blur(180px); }
.footer-blur-5 { bottom: 0; right: 0; width: 500px; height: 500px; background: rgba(6, 182, 212, 0.1); filter: blur(180px); }

.footer-content { position: relative; z-index: 10; }

.footer-brand { font-size: 1.875rem; font-weight: 900; color: #f97316; }

.footer-desc { margin-top: 1.5rem; color: #d1d5db; line-height: 2rem; }

.footer-heading { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 1rem; }

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover { color: #f97316; }

.social-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #f97316;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.7);
}

.btn-scroll-top {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #f97316, #ea580c);
  border: none;
  color: #fff;
  font-size: 1.875rem;
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.5);
  animation: bounce 1s infinite;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-scroll-top:hover { transform: scale(1.1); }

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #9ca3af;
}

.footer-credit {
  text-align: center;
  margin-top: 1.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  color: #6b7280;
  line-height: 2rem;
}

.footer-credit a {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0.25rem;
}

.footer-credit a:hover { color: #fb923c; }

.d-none { display: none !important; }
