:root {
  --orange: #f97316;
  --orange-2: #fb923c;

  --ink: #0f172a;
  --text: #111827;
  --muted: #6b7280;

  --bg: #ffffff; /* ✅ white body */
  --card: #ffffff;

  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 18px 45px rgba(2, 6, 23, 0.1);
  --radius: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* ✅ reduce section gaps */
.section {
  padding: 30px 0;
}
@media (max-width: 760px) {
  .section {
    padding: 20px 0;
  }
}

.title {
  font-family: "Plus Jakarta Sans", system-ui;
  font-size: 30px;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.4px;
}
.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 820px;
  font-weight: 700;
  font-size: 15px;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  font-family: "Plus Jakarta Sans", system-ui;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.22);
}
.brand-text b {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui;
  letter-spacing: -0.2px;
}
.brand-text span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  width: max-content;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 800;
  color: #374151;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav-links a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: white;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
  transition: 0.15s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.22);
}
.btn.ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.16);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: white;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.06);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111827;
  margin: 4px auto;
  border-radius: 2px;
}

/* HERO (Swiper) */
.hero {
  padding: 0;
  margin: 0;
}
.hero-swiper {
  width: 100%;
  height: 80vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero-slide {
  position: relative;
  height: 100%;
}
.hero-slide img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  /* transform: scale(1.03); */
  filter: saturate(1.08) contrast(1.03);
}
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1) 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  top: 0%;
  transform: translateY(-5%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  pointer-events: none;
}
.hero-box {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-text {
  max-width: 740px;
  color: white;
  animation: floatIn 0.7s ease both;
  pointer-events: auto;
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.92);
  color: white;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 16px 30px rgba(249, 115, 22, 0.22);
}
.hero-title {
  font-family: "Plus Jakarta Sans", system-ui;
  font-size: 44px;
  line-height: 1.1;
  margin: 14px 0 10px;
  letter-spacing: -0.8px;
}
.hero-desc {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  opacity: 0.95;
  max-width: 660px;
}
.hero-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper controls */
.swiper-button-next,
.swiper-button-prev {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: #fff !important;
  transition: 0.15s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 900;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--orange);
  transform: scale(1.15);
}

/* Quick cards BELOW hero (better showcase) */
.quick-wrap {
  margin-top: -44px;
  position: relative;
  z-index: 10;
}
.quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.card .ic {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.2);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
}
.card b {
  display: block;
  font-family: "Plus Jakarta Sans", system-ui;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.35;
}

/* Content grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.06);
}
.badge {
  display: inline-flex;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: #7c2d12;
  border: 1px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 10px;
}
.box h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-family: "Plus Jakarta Sans", system-ui;
  letter-spacing: -0.2px;
}
.box p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.list {
  margin: 10px 0 0;
  padding: 0 0 0 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.list li {
  margin: 6px 0;
}

/* Gallery (images + videos) */
.gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.g {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.06);
  transition: 0.15s;
}
.g:hover {
  transform: translateY(-2px);
}
.g .thumb {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
}
.g .cap {
  padding: 12px 14px;
  color: #374151;
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tag {
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: #111827;
  background: #fff;
}

/* Lightbox (image/video) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 80;
}
.lightbox.open {
  display: flex;
}
.lb-card {
  width: min(980px, 96vw);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}
.lb-top b {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui;
}
.lb-body {
  padding: 12px;
}
.lb-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(15, 23, 42, 0.1);
}
.lb-body img {
  width: 100%;
  height: 60vh;
  object-fit: contain;
  display: block;
}
.lb-body video {
  width: 100%;
  height: 60vh;
  object-fit: contain;
  display: block;
  background: #000;
}
.lb-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  flex-wrap: wrap;
}

/* Form */
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 900;
  margin-bottom: 6px;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: var(--text);
  outline: none;
  font-weight: 700;
  font-family: "DM Sans", system-ui;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Donate */
.donate {
  margin-top: 16px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.12),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}
.mono {
  font-size: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.92);
  white-space: pre-wrap;
}

/* WhatsApp floating */
.wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.12);
  cursor: pointer;
  user-select: none;
}
.wa .bubble {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  display: grid;
  place-items: center;
  box-shadow: 0 14px 22px rgba(249, 115, 22, 0.22);
}
.wa b {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui;
}
.wa span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%);
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  display: none;
  z-index: 95;
  box-shadow: var(--shadow);
  max-width: min(92vw, 520px);
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-title {
    font-size: 38px;
  }
  .quick {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .gallery .g {
    grid-column: span 6;
  }
  .donate {
    grid-template-columns: 1fr;
  }
  .hero-swiper {
    height: 80vh;
    min-height: 460px;
  }
}

@media (max-width: 1140px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 66px;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 12px;
  }
}
@media (max-width: 1140px) {
  .menu-btn {
    display: block;
  }
}
@media (max-width: 760px) {
  .admission {
    display: none;
  }

  .row {
    grid-template-columns: 1fr;
  }
  .gallery .g {
    grid-column: span 12;
  }
  .wa span {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-swiper {
    height: 82vh;
    min-height: 520px;
  }
}
