:root {
  --navy: #0a1f3d;
  --navy-2: #0f2c54;
  --navy-3: #153a6b;
  --gold: #cd9f2e;
  --gold-light: #eecf7d;
  --gold-dim: #8a6b22;
  --cream: #faf6ec;
  --cream-2: #f2e9d2;
  --text-dark: #1c2430;
  --text-mute: #606a75;
  --maxw: 1080px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 13.5px;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: "Amiri", serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.7;
}
.eyebrow.dark {
  color: var(--gold-dim);
}
.eyebrow.dark::before,
.eyebrow.dark::after {
  background: var(--gold-dim);
}

.star8 {
  display: inline-block;
  width: 11px;
  height: 11px;
  position: relative;
}
.star8::before,
.star8::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    100% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    0% 35%,
    39% 35%
  );
}
.star8::after {
  transform: rotate(45deg);
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  margin: 0 auto;
}
.divider .line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ================= HERO ================= */
.hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  padding-bottom: 44px;
  background-image:
    linear-gradient(
      180deg,
      rgba(6, 15, 32, 0.72) 0%,
      rgba(8, 20, 42, 0.85) 45%,
      rgba(6, 14, 29, 0.97) 100%
    ),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Kaaba_at_night.jpg");
  background-size: cover;
  background-position: center 30%;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 11px;
  color: var(--gold-light);
}
.brand-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  /* make image appear as a white silhouette */
  filter: brightness(0) invert(1);
  /* ensure transparent backgrounds remain transparent */
  background-color: transparent;
}
.brand .mark {
  width: 22px;
  height: 22px;
  border: 1.2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
}
.permit {
  font-size: 9px;
  color: #b7c3d6;
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.9;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 34px 18px 0;
}
.hero-content h1 {
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 700;
  margin: 12px 0 8px;
  background: linear-gradient(180deg, #fff 20%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.hero-desc {
  font-size: 12.5px;
  color: #c3cede;
  max-width: 440px;
  margin: 0 auto 18px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}
.meta-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(205, 159, 46, 0.4);
  padding: 7px 13px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--cream);
  backdrop-filter: blur(2px);
}
.meta-pill b {
  color: var(--gold-light);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12.5px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #241a05;
  box-shadow: 0 8px 18px -6px rgba(205, 159, 46, 0.55);
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -6px rgba(205, 159, 46, 0.7);
}
.btn.ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 236, 0.4);
  box-shadow: none;
}
.btn.ghost:hover {
  background: rgba(250, 246, 236, 0.08);
}

/* ================= SECTION GENERIC ================= */
section {
  padding: 46px 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 28px;
}
.section-head h2 {
  font-size: clamp(19px, 4vw, 25px);
  margin: 8px 0 6px;
  color: var(--navy);
}
.section-head p {
  color: var(--text-mute);
  font-size: 12.5px;
}

/* ---------- MAKKAH BAND ---------- */
.makkah-band {
  position: relative;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(10, 31, 61, 0.82), rgba(6, 16, 32, 0.9)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Masjid_al-Haram_panorama.JPG");
  background-size: cover;
  background-position: center;
}

.makkah-band .wrap {
  max-width: 600px;
}
.makkah-band .eyebrow {
  justify-content: center;
}
.makkah-band h3 {
  font-size: clamp(18px, 4vw, 24px);
  color: var(--gold-light);
  margin: 10px 0 8px;
}
.makkah-band p {
  font-size: 12.5px;
  color: #cdd8ea;
}

/* ---------- WHY ---------- */
.why {
  background: var(--cream);
  position: relative;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 227, 116, 0.9)
    ),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Masjid_al-Haram_panorama.JPG");
  background-size: cover;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e7d9b8;
  padding: 12px 14px;
  border-radius: 11px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -10px rgba(10, 20, 40, 0.25);
}
.why-icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-3);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.why-item p {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- PEMBIMBING ---------- */
.imam {
  background: linear-gradient(180deg, #0d2748, var(--navy));
  color: var(--cream);
}
.imam .section-head p {
  color: #b7c3d6;
}
.imam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}
.imam-card {
  background: linear-gradient(160deg, #123157, #0b2140);
  border: 1px solid rgba(205, 159, 46, 0.35);
  border-radius: 16px;
  padding: 18px 16px 20px;
  text-align: center;
}
.imam-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 2.5px solid var(--gold);
  padding: 3px;
  background: linear-gradient(160deg, #1a3a63, #0b2140);
  position: relative;
  overflow: hidden;
}
.imam-photo .frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2c4d78, #0f2340);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.imam-photo svg {
  width: 44px;
  height: 44px;
  opacity: 0.85;
}
.imam-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  display: block;
}
.imam-card h3 {
  font-size: 13.5px;
  color: var(--gold-light);
  margin-bottom: 3px;
  line-height: 1.3;
}
.imam-card .role {
  font-size: 10.5px;
  color: #a9b8cc;
  font-weight: 600;
  margin-bottom: 8px;
}
.imam-card p.desc {
  font-size: 11.5px;
  color: #c1cbdc;
}
.imam-note {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 10.5px;
  color: #8fa0b8;
}

/* ---------- FASILITAS ---------- */
.fasilitas {
  background: var(--cream-2);
}
.fas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}
.fas-item {
  background: #fff;
  border-radius: 9px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid #e5d6ae;
}
.fas-item .glyph {
  color: var(--gold-dim);
  font-size: 16px;
  margin-bottom: 5px;
}
.fas-item span {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- HOTEL ---------- */
.hotel {
  background: var(--cream);
}
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}
.hotel-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5d6ae;
  background: #fff;
}
.hotel-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.hotel-card .body {
  padding: 12px 14px 14px;
}
.hotel-card .city-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Amiri", serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  margin-bottom: 4px;
}
.hotel-card .name {
  font-weight: 700;
  color: var(--navy);
  font-size: 12px;
  margin-bottom: 3px;
}
.hotel-card .body p.d {
  font-size: 10.5px;
  color: var(--text-mute);
}
.hotel-card .nights {
  display: inline-block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-dim);
  background: #f2e6c8;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ---------- HARGA ---------- */
.harga {
  background: radial-gradient(ellipse at 50% 0%, #153a6b, var(--navy) 60%);
  color: var(--cream);
}
.harga .section-head p {
  color: #b7c3d6;
}
.price-shell {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(205, 159, 46, 0.4);
}
.price-main {
  background: linear-gradient(160deg, #153a6b, #0d2748);
  padding: 28px 22px 22px;
  text-align: center;
}
.price-main .tag {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.price-main .amount {
  font-family: "Amiri", serif;
  font-weight: 700;
  font-size: clamp(26px, 6vw, 38px);
  color: var(--gold-light);
  margin: 5px 0 1px;
}
.price-main .amount small {
  font-size: 11.5px;
  color: #cdd6e5;
  font-weight: 500;
}
.price-main .note {
  font-size: 10.5px;
  color: #a9b8cc;
  margin-bottom: 14px;
}
.upgrade-list {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.upgrade-list .up {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(205, 159, 46, 0.35);
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 10.5px;
  text-align: left;
  min-width: 112px;
}
.upgrade-list .up b {
  display: block;
  color: var(--gold-light);
  font-size: 11px;
  margin-bottom: 1px;
}
.price-side {
  background: #091d38;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  border-left: 1px solid rgba(205, 159, 46, 0.25);
}
.price-side h4 {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.price-side ul {
  list-style: none;
  font-size: 11px;
  color: #c1cbdc;
}
.price-side ul li {
  padding: 3px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.bank {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(205, 159, 46, 0.3);
  border-radius: 9px;
  padding: 10px 12px;
}
.bank .bname {
  font-weight: 800;
  color: #fff;
  font-size: 11.5px;
  margin-bottom: 3px;
}
.bank .bnum {
  font-family: "Amiri", serif;
  font-size: 15px;
  color: var(--gold-light);
}
.bank .bowner {
  font-size: 9.5px;
  color: #a9b8cc;
  margin-top: 2px;
}

/* ---------- FORM PENDAFTARAN ---------- */
.form-daftar {
  background: var(--cream-2);
}
.form-shell {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5d6ae;
  border-radius: 18px;
  padding: 24px 20px;
}
.field {
  margin-bottom: 13px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.field input[type="text"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid #dccfa9;
  background: #fbf7ec;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  color: var(--text-dark);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(205, 159, 46, 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 56px;
}
.dp-choice {
  display: flex;
  gap: 8px;
}
.dp-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dp-choice label {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: 9px;
  border: 1px solid #dccfa9;
  background: #fbf7ec;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mute);
  cursor: pointer;
  transition: all 0.2s ease;
}
.dp-choice input:checked + label {
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  color: var(--gold-light);
  border-color: var(--gold);
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-note {
  font-size: 10px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 10px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--cream);
}
.faq-list {
  max-width: 560px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #e5d6ae;
  border-radius: 11px;
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 12px;
  gap: 8px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .plus {
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.25s ease;
}
.faq-item[open] summary .plus {
  transform: rotate(45deg);
}
.faq-item .a {
  padding: 0 16px 14px;
  color: var(--text-mute);
  font-size: 11.5px;
}

/* ---------- CLOSING ---------- */
.closing {
  background: linear-gradient(180deg, var(--navy), #050d1e);
  color: var(--cream);
  text-align: center;
}
.closing-card {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(205, 159, 46, 0.4);
  border-radius: 20px;
  padding: 30px 22px;
  background: linear-gradient(160deg, #153a6b, #0d2748);
}
.closing-card h2 {
  font-size: clamp(17px, 4vw, 23px);
  color: var(--gold-light);
  margin: 10px 0 8px;
}
.closing-card p {
  color: #c1cbdc;
  max-width: 400px;
  margin: 0 auto 18px;
  font-size: 11.5px;
}
.closing-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: #050d1e;
  color: #7d8ba0;
  text-align: center;
  padding: 18px 18px;
  font-size: 10.5px;
}
footer b {
  color: var(--gold-light);
}

.wa-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 50;
  background: var(--navy-3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 18px -6px rgba(21, 58, 107, 0.6);
  }
  50% {
    box-shadow: 0 8px 24px -4px rgba(21, 58, 107, 0.95);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  body {
    font-size: 13px;
  }
  section {
    padding: 36px 0;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .imam-grid {
    grid-template-columns: 1fr;
  }
  .fas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-grid {
    grid-template-columns: 1fr;
  }
  .price-shell {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }
  .price-side {
    border-left: none;
    border-top: 1px solid rgba(205, 159, 46, 0.25);
  }
  .dp-choice {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* ================= TAMBAHAN FORM DP ================= */
.dp-details-box {
  background: #f4f8fc;
  border: 1px solid #c9d8eb;
  border-radius: 9px;
  padding: 12px;
  margin-bottom: 13px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.dp-details-box.hidden {
  display: none;
}
.dp-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11.5px;
  color: var(--navy);
}
.dp-info strong {
  color: var(--gold-dim);
  font-size: 14px;
}
.dp-bank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px dashed #c9d8eb;
  margin-bottom: 10px;
}
.dp-bank span {
  display: block;
}
.bank-name {
  font-weight: 800;
  font-size: 11px;
  color: var(--navy);
}
.bank-acc {
  font-family: "Amiri", serif;
  font-size: 15px;
  color: var(--gold-dim);
  margin: 2px 0;
}
.bank-owner {
  font-size: 9.5px;
  color: var(--text-mute);
}
.btn-copy {
  background: var(--cream-2);
  border: 1px solid #dccfa9;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 10.5px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s;
}
.btn-copy:hover {
  background: #e5d6ae;
}
.file-input {
  font-size: 11px;
  padding: 6px !important;
  background: #fff !important;
}
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ================= CUSTOM SUCCESS MODAL ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 61, 0.65); /* Warna Navy transparan */
  backdrop-filter: blur(5px); /* Efek blur latar belakang */
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.show {
  opacity: 1;
}
.modal-content {
  background: #ffffff;
  border: 1px solid var(--gold-light);
  border-radius: 16px;
  max-width: 340px;
  width: 100%;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(6, 15, 32, 0.4);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.show .modal-content {
  transform: scale(1);
}
.success-icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.success-checkmark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #eafaf1;
  color: #2ecc71;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2ecc71;
  animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) delay 0.1s
    both;
}
.modal-content h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-content p {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hidden {
  display: none !important;
}

@keyframes scaleUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
