/* ─── Reset & Base ─────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ─── CSS Variables ────────────────────────────── */
:root {
  --brown: #8b4513;
  --brown2: #6b3410;
  --brown3: #4a2009;
  --gold: #c8922a;
  --gold2: #f0c060;
  --cream: #fff8f0;
  --light: #f5e6d3;
  --white: #ffffff;
  --text: #3a2a1a;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(107, 52, 16, 0.15);
  --shadow-lg: 0 16px 48px rgba(107, 52, 16, 0.22);
}

/* ─── Social Top Bar ───────────────────────────── */
.top-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  padding: 0;
  z-index: 101;
  position: relative;
  border-bottom: 2px solid var(--gold);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 7px 5%;
}
.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-contact a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-contact a svg {
  flex-shrink: 0;
}
.top-bar-contact a:hover {
  color: var(--gold2);
}
.top-bar-sep {
  opacity: 0.25;
  font-size: 0.7rem;
  color: var(--gold);
}
.top-bar-social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s,
    filter 0.25s;
}
.top-bar-social a svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  flex-shrink: 0;
}
.top-bar-social a .tb-label {
  display: inline;
}
.top-bar-social a:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.15);
}
.top-bar-social a.tb-youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
}
.top-bar-social a.tb-youtube:hover {
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.45);
}
.top-bar-social a.tb-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}
.top-bar-social a.tb-whatsapp:hover {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}
.top-bar-social a.tb-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bbf 100%);
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.2);
}
.top-bar-social a.tb-facebook:hover {
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.45);
}
.top-bar-social a.tb-instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #feda75 0%,
    #fa7e1e 15%,
    #d62976 40%,
    #962fbf 65%,
    #4f5bd5 100%
  );
  box-shadow: 0 2px 8px rgba(214, 41, 118, 0.2);
}
.top-bar-social a.tb-instagram:hover {
  box-shadow: 0 4px 16px rgba(214, 41, 118, 0.45);
}
@media (max-width: 768px) {
  .top-bar-social a .tb-label {
    display: none;
  }
  .top-bar-social a {
    width: 30px;
    padding: 0;
    border-radius: 8px;
  }
}
@media (max-width: 600px) {
  .top-bar {
    border-bottom: none;
    background: linear-gradient(160deg, #0f1a2e 0%, #162040 50%, #1a2a50 100%);
  }
  .top-bar-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0;
  }
  /* Contact row — full width, centered */
  .top-bar-contact {
    width: 100%;
    justify-content: center;
    gap: 0;
    padding: 8px 5%;
    border-bottom: 1px solid rgba(200, 146, 42, 0.2);
    flex-wrap: nowrap;
  }
  .top-bar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
  }
  .top-bar-contact a:hover {
    background: none;
    color: var(--gold2);
  }
  .top-bar-sep {
    display: inline;
    margin: 0 8px;
    opacity: 0.3;
  }
  /* Social row — full width, centered */
  .top-bar-social {
    width: 100%;
    justify-content: center;
    gap: 6px;
    padding: 7px 5%;
    border-bottom: 2px solid var(--gold);
  }
  .top-bar-social a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .top-bar-social a svg {
    width: 15px;
    height: 15px;
  }
}

/* ─── Navbar ───────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  box-shadow: 0 2px 20px rgba(107, 52, 16, 0.1);
  border-bottom: 1px solid rgba(200, 146, 42, 0.18);
  transition: background 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.2);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand-text .name {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown2);
}
.nav-brand-text .sub {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 4px 14px rgba(139, 69, 19, 0.35);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  flex-direction: column;
  padding: 16px 5%;
  gap: 4px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(107, 52, 16, 0.15);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-mobile a:hover {
  background: var(--light);
  color: var(--brown);
}

/* ─── Hero ─────────────────────────────────────── */
.hero {
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(240, 192, 96, 0.18) 0%,
      transparent 70%
    ),
    linear-gradient(
      155deg,
      var(--brown3) 0%,
      var(--brown2) 45%,
      var(--brown) 75%,
      #a0580a 100%
    );
  color: #fff;
  text-align: center;
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0 L43 37 L80 40 L43 43 L40 80 L37 43 L0 40 L37 37 Z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
}
/* wave bottom */
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70'%3E%3Cpath fill='%23fff8f0' fill-opacity='1' d='M0,40 C360,80 1080,0 1440,40 L1440,70 L0,70 Z'/%3E%3C/svg%3E")
    no-repeat center bottom;
  background-size: cover;
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(240, 192, 96, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border: 2px solid rgba(240, 192, 96, 0.35);
  box-shadow:
    0 0 30px rgba(240, 192, 96, 0.3),
    0 0 60px rgba(240, 192, 96, 0.1);
  animation: floatIcon 3s ease-in-out infinite;
  position: relative;
}
.hero-icon .hero-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero h1 span {
  color: var(--gold2);
}
.hero p.tagline {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.75;
  position: relative;
  font-style: italic;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: none;
  letter-spacing: 0.03em;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--brown3);
  box-shadow: 0 4px 18px rgba(200, 146, 42, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffe090, #d4a040);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: var(--brown2);
  border-color: #fff;
}

/* ─── Section Titles ───────────────────────────── */
.section-label {
  text-align: center;
  margin-bottom: 52px;
}
.section-label .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-label h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: var(--brown2);
  line-height: 1.2;
}
.section-label .divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-label p.sub {
  margin-top: 14px;
  color: #777;
  font-size: 0.95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ─── Feature Cards ────────────────────────────── */
.features {
  background: var(--cream);
  padding: 80px 5% 70px;
}
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card:nth-child(1)::before {
  background: linear-gradient(90deg, #25d366, #128c7e);
}
.card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.card:nth-child(3)::before {
  background: linear-gradient(90deg, #e63946, #c1121f);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 50%;
  background: var(--cream);
}
.card-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--brown);
  font-weight: 700;
}
.card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
}
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 9px 24px;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.card a.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(107, 52, 16, 0.35);
}

/* ─── Zoom Meeting Section ────────────────────── */
.zoom-section {
  background: linear-gradient(135deg, #0b5cff 0%, #2d8cff 50%, #0b5cff 100%);
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
}
.zoom-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.zoom-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.zoom-info {
  flex: 1;
}
.zoom-info .zoom-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.zoom-info .zoom-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.zoom-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.zoom-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}
.zoom-timing {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.zoom-timing strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.zoom-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.zoom-detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.zoom-detail-chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #fff;
  color: #0b5cff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.zoom-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.zoom-btn svg {
  width: 22px;
  height: 22px;
}
.zoom-graphic {
  flex: 0 0 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zoom-icon-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: floatZoom 4s ease-in-out infinite;
}
@keyframes floatZoom {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.zoom-icon-circle svg {
  width: 90px;
  height: 90px;
}
.zoom-icon-circle::after {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .zoom-inner {
    flex-direction: column;
    text-align: center;
  }
  .zoom-info h2 {
    font-size: 1.7rem;
  }
  .zoom-details {
    justify-content: center;
  }
  .zoom-graphic {
    flex: none;
  }
  .zoom-icon-circle {
    width: 160px;
    height: 160px;
  }
  .zoom-icon-circle svg {
    width: 65px;
    height: 65px;
  }
}

/* ─── Sermons / Videos ─────────────────────────── */
.sermons {
  background: linear-gradient(160deg, var(--brown3) 0%, var(--brown) 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.sermons::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E")
    repeat;
}
.sermons .section-label h2 {
  color: #fff;
}
.sermons .section-label .eyebrow {
  color: var(--gold2);
}
.sermons .section-label .divider {
  background: linear-gradient(90deg, var(--gold2), var(--gold));
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #111;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 16px 18px 18px;
}
.video-info h4 {
  font-size: 0.88rem;
  color: var(--brown2);
  font-weight: 700;
  line-height: 1.45;
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.video-meta span {
  font-size: 0.76rem;
  color: #bbb;
}
.video-meta .views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 600;
}
.video-meta .views svg {
  flex-shrink: 0;
}

/* ─── Featured / Sponsors ──────────────────────── */
.sponsors {
  background: var(--cream);
  padding: 80px 5%;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.sponsor-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgba(200, 146, 42, 0.12);
}
.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sponsor-card .video-wrapper {
  padding-bottom: 56.25%;
}

/* ─── About Section ────────────────────────────── */
.about {
  padding: 90px 5%;
  background: #fff;
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--brown));
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}
.about-img-wrap:hover img {
  transform: scale(1.03);
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 32, 9, 0.7) 0%, transparent 50%);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--brown3);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.03em;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--brown2);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.stat {
  text-align: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 10px;
  border: 1px solid rgba(200, 146, 42, 0.2);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.stat .num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--brown);
  font-weight: 700;
  line-height: 1;
}
.stat .lbl {
  font-size: 0.75rem;
  color: #888;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Testimonials ─────────────────────────────── */
.testimonials {
  background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.testimonials::after {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 28rem;
  color: var(--gold);
  opacity: 0.04;
  position: absolute;
  right: -4rem;
  top: -6rem;
  line-height: 1;
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 1020px;
  margin: 0 auto;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border-bottom: 3px solid var(--gold);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
  align-items: center;
}
.testi-card::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -8px;
  left: 18px;
  line-height: 1;
}
.testi-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}
.testi-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brown2);
}
.testi-loc {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 2px;
}

/* ─── Contact / Footer ─────────────────────────── */
footer {
  background: linear-gradient(160deg, var(--brown3) 0%, #2a1008 100%);
  color: #f0e0d0;
  padding: 70px 5% 24px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold2), var(--gold), var(--brown));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.footer-brand .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--gold2);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  opacity: 0.75;
  margin-bottom: 22px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  margin-bottom: 12px;
  opacity: 0.82;
  transition:
    opacity 0.2s,
    gap 0.2s;
}
.footer-contact-item:hover {
  opacity: 1;
  gap: 14px;
}
.footer-contact-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
  color: var(--gold2);
}
.footer-contact-item:hover span {
  background: rgba(200, 146, 42, 0.2);
  border-color: rgba(200, 146, 42, 0.4);
}
.footer-col h4 {
  font-size: 0.88rem;
  color: var(--gold2);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 11px;
  font-size: 0.87rem;
  opacity: 0.75;
  cursor: pointer;
  transition:
    opacity 0.2s,
    padding-left 0.2s,
    color 0.2s;
}
.footer-col ul li:hover {
  opacity: 1;
  padding-left: 4px;
  color: var(--gold2);
}
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s,
    filter 0.3s;
  position: relative;
  overflow: hidden;
}
.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.social-links a svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.social-links a:hover {
  transform: translateY(-4px) scale(1.08);
}
.social-links a:hover svg {
  transform: scale(1.12);
}
.social-links a:active {
  transform: translateY(-1px) scale(1.02);
}

/* ── YouTube ── */
.social-links a.sl-youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}
.social-links a.sl-youtube:hover {
  box-shadow:
    0 6px 24px rgba(255, 0, 0, 0.5),
    0 0px 40px rgba(255, 0, 0, 0.2);
}

/* ── WhatsApp ── */
.social-links a.sl-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.social-links a.sl-whatsapp:hover {
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 0px 40px rgba(37, 211, 102, 0.2);
}

/* ── Facebook ── */
.social-links a.sl-facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5bbf 100%);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}
.social-links a.sl-facebook:hover {
  box-shadow:
    0 6px 24px rgba(24, 119, 242, 0.5),
    0 0px 40px rgba(24, 119, 242, 0.2);
}

/* ── Instagram ── */
.social-links a.sl-instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #feda75 0%,
    #fa7e1e 15%,
    #d62976 40%,
    #962fbf 65%,
    #4f5bd5 100%
  );
  box-shadow: 0 4px 12px rgba(214, 41, 118, 0.25);
}
.social-links a.sl-instagram:hover {
  box-shadow:
    0 6px 24px rgba(214, 41, 118, 0.5),
    0 0px 40px rgba(214, 41, 118, 0.2);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.55;
  max-width: 1100px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

/* ─── Upcoming Events Banner ───────────────────── */
.events {
  background: #fff;
  padding: 80px 5%;
}
.event-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.event-item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 5px solid var(--gold);
  box-shadow: 0 3px 14px rgba(107, 52, 16, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  flex-wrap: wrap;
}
.event-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 22px rgba(107, 52, 16, 0.15);
}
.event-date {
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 62px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(107, 52, 16, 0.25);
}
.event-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.event-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}
.event-details h4 {
  font-size: 1rem;
  color: var(--brown2);
  margin-bottom: 5px;
  font-weight: 700;
  word-break: break-word;
}
.event-details p {
  font-size: 0.87rem;
  color: #777;
  line-height: 1.5;
  word-break: break-word;
}

/* ─── Prayer CTA Banner ────────────────────────── */
.prayer-cta {
  background: linear-gradient(
    160deg,
    #1a1a2e 0%,
    #16213e 40%,
    #0f3460 70%,
    #1a1a2e 100%
  );
  color: #fff;
  text-align: center;
  padding: 80px 5% 70px;
  position: relative;
  overflow: hidden;
}
.prayer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(200, 146, 42, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(200, 146, 42, 0.06) 0%,
      transparent 60%
    );
}
.prayer-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold2),
    var(--gold),
    transparent
  );
}
.prayer-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 14px;
  position: relative;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.prayer-cta p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.prayer-cta .btn-primary {
  font-size: 1rem;
  padding: 15px 38px;
  position: relative;
}

/* ─── Prayer Contact Cards (Redesigned) ────────── */
.prayer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}
.prayer-contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s;
}
.prayer-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
}
.prayer-contact-card:nth-child(1)::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.prayer-contact-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.prayer-contact-card:nth-child(3)::before {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}
.prayer-contact-card:nth-child(4)::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.prayer-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.prayer-contact-icon {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
}
.prayer-contact-icon svg {
  width: 26px;
  height: 26px;
}
.prayer-contact-card:nth-child(1) .prayer-contact-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #3b82f6;
}
.prayer-contact-card:nth-child(2) .prayer-contact-icon {
  background: linear-gradient(135deg, #fff8f0, #f5e6d3);
  color: var(--gold);
}
.prayer-contact-card:nth-child(3) .prayer-contact-icon {
  background: linear-gradient(135deg, #faf5ff, #f3e8ff);
  color: #a855f7;
}
.prayer-contact-card:nth-child(4) .prayer-contact-icon {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  color: #10b981;
}
.prayer-contact-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown2);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.prayer-contact-link {
  display: block;
  font-size: 0.82rem;
  color: #555;
  margin-top: 4px;
  transition: color 0.2s;
  word-break: break-all;
  font-weight: 500;
}
.prayer-contact-link:hover {
  color: var(--brown);
}

@media (max-width: 900px) {
  .prayer-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .prayer-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
  }
  .prayer-contact-card {
    padding: 20px 14px 18px;
  }
  .prayer-contact-icon {
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .prayer-contact-card h4 {
    font-size: 0.82rem;
  }
  .prayer-contact-link {
    font-size: 0.72rem;
  }
}

/* ─── Scroll-Reveal Animation ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Why Visit Section ────────────────────────── */
.why-visit {
  background: #fff;
  padding: 80px 5%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 24px;
  border-left: 4px solid var(--gold);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.why-icon {
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0e6d2 0%, #faf6ef 100%);
  color: var(--brown);
}
.why-icon svg {
  width: 26px;
  height: 26px;
}
.why-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--brown2);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* ─── Visit / Map Section ──────────────────────── */
.visit-section {
  background: var(--cream);
  padding: 80px 5%;
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(200, 146, 42, 0.2);
}
.visit-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}
.visit-details h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--brown2);
  margin-bottom: 22px;
}
.visit-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(107, 52, 16, 0.07);
  transition: box-shadow 0.2s;
}
.visit-info-row:hover {
  box-shadow: var(--shadow);
}
.visit-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.visit-info-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.visit-info-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 3px;
}
.visit-info-text span {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.5;
}
.visit-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  letter-spacing: 0.03em;
}
.visit-directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 52, 16, 0.35);
}

/* Books info row */
.visit-books-row {
  background: linear-gradient(135deg, #fff8f0, #fff3e0);
  border-left: 4px solid var(--gold);
}
.visit-info-text .visit-books-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 22px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.visit-info-text .visit-books-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* ─── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .visit-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-img-wrap img {
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hero {
    padding: 80px 5% 100px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Prayer Form Modal ──────────────────────────── */
.prayer-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.prayer-modal-overlay.active {
  display: flex;
}
.prayer-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.35s ease;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.prayer-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  flex-shrink: 0;
}
.prayer-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.prayer-modal-close {
  background: none;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
  flex-shrink: 0;
  opacity: 0.85;
}
.prayer-modal-close:hover {
  opacity: 1;
  transform: scale(1.15);
}
.prayer-modal-close .close-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}
.prayer-modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.prayer-modal-body iframe {
  display: block;
  width: 100%;
  height: 550px;
  border: none;
}
@media (max-width: 600px) {
  .prayer-modal-overlay {
    padding: 12px;
  }
  .prayer-modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 12px;
  }
  .prayer-modal-body iframe {
    height: 70vh;
  }
}

/* ── Language Toggle Button ───────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 2px solid var(--brown);
  border-radius: 24px;
  background: transparent;
  color: var(--brown);
  font-family: "Inter", "Noto Sans Tamil", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
  margin-left: 8px;
  flex-shrink: 0;
}
.lang-toggle:hover {
  background: var(--brown);
  color: #fff;
}
.lang-toggle .lang-flag {
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
.lang-toggle .lang-label {
  font-size: 0.8rem;
}
.lang-toggle.active-ta {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}

/* Tamil font fallback for translated content */
html[lang="ta"] body,
html[lang="ta"] p,
html[lang="ta"] a,
html[lang="ta"] li,
html[lang="ta"] span,
html[lang="ta"] div,
html[lang="ta"] button,
html[lang="ta"] input,
html[lang="ta"] textarea,
html[lang="ta"] .btn,
html[lang="ta"] .card-link,
html[lang="ta"] .tagline,
html[lang="ta"] .sub,
html[lang="ta"] .eyebrow,
html[lang="ta"] .lang-toggle {
  font-family: "Noto Sans Tamil", "Inter", sans-serif;
}
html[lang="ta"] h1,
html[lang="ta"] h2,
html[lang="ta"] h3,
html[lang="ta"] h4,
html[lang="ta"] .section-title,
html[lang="ta"] .hero-title,
html[lang="ta"] .nav-brand-text .name,
html[lang="ta"] .prayer-modal-title {
  font-family: "Noto Sans Tamil", "Playfair Display", serif;
}

/* Tamil text tends to be longer — prevent overflow and layout breaks */
html[lang="ta"] .card h3,
html[lang="ta"] .card p,
html[lang="ta"] .why-card h4,
html[lang="ta"] .why-card p,
html[lang="ta"] .testi-card p,
html[lang="ta"] .event-details h4,
html[lang="ta"] .event-details p,
html[lang="ta"] .section-label p.sub,
html[lang="ta"] .tagline {
  word-break: break-word;
  overflow-wrap: break-word;
}
html[lang="ta"] .hero h1 {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
}
html[lang="ta"] .hero .tagline {
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
}
html[lang="ta"] .card h3 {
  font-size: 1rem;
}
html[lang="ta"] .card p {
  font-size: 0.85rem;
}
html[lang="ta"] .btn {
  font-size: 0.88rem;
  padding: 12px 24px;
}
html[lang="ta"] .card a.card-link {
  font-size: 0.8rem;
  padding: 8px 18px;
}

@media (max-width: 900px) {
  .lang-toggle {
    margin-left: 0;
    margin-right: 8px;
    padding: 5px 10px;
    font-size: 0.78rem;
  }
  .lang-toggle .lang-label {
    display: none;
  }
}
@media (max-width: 600px) {
  .lang-toggle {
    padding: 4px 8px;
    font-size: 0.75rem;
    border-width: 1.5px;
  }
}

/* ── Give / Bank Details Modal ────────────────────── */
.give-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.give-modal-overlay.active {
  display: flex;
}
.give-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: giveModalIn 0.35s ease;
}
@keyframes giveModalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.give-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--brown), var(--brown2));
  color: #fff;
  flex-shrink: 0;
}
.give-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.give-modal-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}
.give-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.give-modal-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 28px 24px;
}
.give-upi-section {
  text-align: center;
  margin-bottom: 8px;
}
.give-upi-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--brown2);
  margin-bottom: 16px;
  font-weight: 700;
}
.give-upi-img {
  display: block;
  margin: 0 auto;
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  border: 3px solid rgba(200, 146, 42, 0.25);
  box-shadow: 0 4px 20px rgba(107, 52, 16, 0.12);
}
.give-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: #bbb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.give-divider::before,
.give-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
}
.give-bank-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--brown2);
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
}
.give-bank-table {
  background: var(--cream);
  border-radius: 12px;
  padding: 4px 0;
  overflow: hidden;
}
.give-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(200, 146, 42, 0.12);
}
.give-bank-row:last-child {
  border-bottom: none;
}
.give-bank-label {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.give-bank-value {
  font-size: 0.92rem;
  color: var(--brown2);
  font-weight: 700;
  text-align: right;
}
.give-note {
  margin-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.65;
  font-style: italic;
}
@media (max-width: 600px) {
  .give-modal-overlay {
    padding: 12px;
  }
  .give-modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 12px;
  }
  .give-modal-body {
    padding: 20px 16px;
  }
  .give-bank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 16px;
  }
  .give-bank-value {
    text-align: left;
  }
}
