:root {
  --maroon: #800000;
  --maroon-dark: #4f0000;
  --cream: #FDFBD4;
  --cream-soft: #fffef0;
  --gold: #d9a441;
  --ink: #241414;
  --muted: #6f5b4e;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(80, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(253, 251, 212, 0.96);
  border-bottom: 1px solid rgba(128, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--maroon);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes globe-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  clip-path: circle(40% at 50% 50%);
  background: transparent;
  flex: 0 0 auto;
}

.brand span {
  display: block;
  max-width: 330px;
  font-size: 0.95rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 700;
  color: var(--maroon-dark);
}

.nav-links a {
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--gold);
}

.page-hero {
  padding: 5rem 5vw;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(80, 0, 0, 0.95), rgba(128, 0, 0, 0.8)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='620' viewBox='0 0 1400 620'%3E%3Crect width='1400' height='620' fill='%23800000'/%3E%3Cg opacity='0.22' fill='%23FDFBD4'%3E%3Ccircle cx='1180' cy='110' r='210'/%3E%3Ccircle cx='1020' cy='530' r='150'/%3E%3Cpath d='M650 80h84v190h188v84H734v250h-84V354H462v-84h188z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  width: min(920px, 100%);
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 740px;
  color: #fffde4;
  font-size: 1.12rem;
}

section {
  padding: 4.5rem 5vw;
}

.section-title {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-title h2 {
  color: var(--maroon);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
}

.content-band {
  background: var(--cream-soft);
}

.services-slide-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 5vw;
}

.svc-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.svc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.svc-slide.active {
  opacity: 1;
}

.svc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 0, 0, 0.62) 0%,
    rgba(60, 0, 0, 0.52) 100%
  );
}

.cards,
.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.14);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(80, 0, 0, 0.08);
}

.card {
  min-height: 210px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  border: 1px solid rgba(128, 0, 0, 0.16);
}

.card h2,
.card h3,
.contact-card h2,
.contact-card h3 {
  color: var(--maroon);
  margin-bottom: 0.65rem;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(128, 0, 0, 0.16);
}

.service-row strong {
  color: var(--maroon);
}

.maroon-panel {
  background: var(--maroon);
  color: var(--cream);
  border-radius: 8px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.maroon-panel h2,
.maroon-panel h3 {
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.event {
  border: 1px solid rgba(128, 0, 0, 0.14);
  border-radius: 8px;
  padding: 1.4rem;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(80, 0, 0, 0.08);
}

.event time {
  display: inline-block;
  color: var(--maroon);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.featured-event {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.event-feature-card {
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.14);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.event-feature-card time {
  color: var(--maroon);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.event-feature-card h2 {
  color: var(--maroon);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.event-logo {
  width: min(330px, 100%);
  display: block;
  margin-bottom: 1.4rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(128, 0, 0, 0.14);
  box-shadow: 0 12px 30px rgba(80, 0, 0, 0.12);
}

.link-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.link-list a {
  background: var(--cream-soft);
  border: 1px solid rgba(128, 0, 0, 0.18);
  border-radius: 6px;
  color: var(--maroon);
  display: block;
  font-weight: 800;
  padding: 0.9rem 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(128, 0, 0, 0.88), rgba(217, 164, 65, 0.78)),
    var(--maroon);
  color: var(--cream);
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-weight: 800;
}

.testimony-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-card p + p {
  margin-top: 0.65rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 800;
  color: var(--maroon-dark);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(128, 0, 0, 0.25);
  border-radius: 6px;
  padding: 0.85rem;
  font: inherit;
  background: var(--cream-soft);
  color: var(--ink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  font-weight: 800;
  border: 2px solid transparent;
}

.button.primary,
.form-button {
  background: var(--maroon);
  color: var(--cream);
}

.button.secondary {
  border-color: var(--maroon);
  color: var(--maroon);
}

.form-button {
  border: 0;
  cursor: pointer;
}

.live-frame {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: var(--cream);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.live-frame h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.65rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

footer {
  background: var(--maroon-dark);
  color: var(--cream);
  padding: 3rem 5vw 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem 3rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.footer-col p {
  margin: 0.35rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(253,251,212,0.82);
}

.footer-motto {
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 0.75rem !important;
  font-size: 0.88rem !important;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: rgba(253,251,212,0.82);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-copy {
  margin-top: 1.2rem !important;
  font-size: 0.8rem !important;
  color: rgba(253,251,212,0.5) !important;
  border-top: 1px solid rgba(253,251,212,0.15);
  padding-top: 0.8rem;
}

.live-badge {
  display: inline-block;
  background: #e02020;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 1px 5px 1px 6px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  top: -1px;
  animation: live-pulse 1.8s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@media (max-width: 900px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .cards,
  .event-list,
  .featured-event,
  .gallery-grid,
  .testimony-list,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    gap: 0.9rem;
    font-size: 0.9rem;
  }

  section,
  .page-hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .service-row {
    flex-direction: column;
    gap: 0.2rem;
  }
}
