body {
  margin: 0 auto;
  font-family:
    "Inter",
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f7f9fc;
  max-width: 1350px;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */
/* NAVBAR */

/* NAVBAR AWAL (MENYATU) */
.jf-navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: all 0.3s ease;
  z-index: 999;
}

/* SAAT SCROLL */
.jf-navbar.scrolled {
  top: 20px;
  width: calc(100% - 40px);
  padding: 14px 24px;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* LOGO */
.jf-logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.3s;
}

/* warna berubah saat scroll */
.jf-navbar.scrolled .jf-logo {
  color: #065f46;
}

/* MENU */
.jf-menu {
  list-style: none;
  display: flex;
  gap: 28px;
}

.jf-menu li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.jf-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #10b981;
  transition: 0.3s;
}

.jf-menu li a:hover::after {
  width: 100%;
}

/* warna menu saat scroll */
.jf-navbar.scrolled .jf-menu li a {
  color: #374151;
}

.jf-navbar.scrolled .jf-menu li a:hover {
  color: #065f46;
}

/* MOBILE */
.jf-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .jf-navbar {
    display: none;
  }

  .jf-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  }

  .jf-bottom-nav a {
    text-decoration: none;
    color: #6b7280;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .jf-bottom-nav a span {
    font-size: 20px;
  }

  .jf-bottom-nav a.active {
    color: #065f46;
    font-weight: 600;
  }
}

/* ================= HERO ================= */
/* ================= HERO ================= */
/* ================= HERO ================= */
.jannah-firdaus-hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(250, 204, 21, 0.25),
      transparent 45%
    ),
    linear-gradient(135deg, #064e3b 0%, #0f766e 45%, #022c22 100%);
  color: #fff;
  padding: 10% 5% 10% 5%;
  position: relative;
  overflow: hidden;
}

.jannah-firdaus-hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* ================= HERO TOP BADGE ================= */
.jannah-firdaus-hero-top {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.jannah-firdaus-hero-top .jannah-firdaus-badge {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #1f2937;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.jannah-firdaus-hero-top .jannah-firdaus-badge svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin: -5px;
}

/* ================= TEXT ================= */
.jannah-firdaus-hero h1 {
  font-size: 3.5rem;
  margin: 15px 0;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.jannah-firdaus-text-gold {
  background: linear-gradient(90deg, #facc15, #f59e0b, #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.jannah-firdaus-hero p {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #fff;
}

/* ================= BUTTON ================= */
.jannah-firdaus-hero-btn {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.jannah-firdaus-hero-btn a {
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.jannah-firdaus-btn-primary {
  background: #facc15;
  color: #1f2937;
}

.jannah-firdaus-btn-primary:hover {
  background: #f5c211;
  box-shadow: 0 5px 15px rgba(250, 204, 21, 0.4);
}

.jannah-firdaus-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.jannah-firdaus-btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ================= STATS ================= */
.jannah-firdaus-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  text-align: center;
}

.jannah-firdaus-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #facc15;
}

.jannah-firdaus-stat-box span {
  font-size: 1rem;
}

/* ================= HERO IMAGES (FIXED SCALE) ================= */
.jannah-firdaus-hero-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.jannah-firdaus-hero-images img {
  width: 100%;
  aspect-ratio: 64 / 25;
  object-fit: cover;
  object-position: center; /* ini sudah benar */
  border-radius: 16px;
  display: block; /* penting biar gak ada spasi aneh */
}

.jannah-firdaus-hero-images img:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 64 / 25;
}

/* ================= PIN BADGE ================= */
.jannah-firdaus-pin-badge {
  position: absolute;
  top: -45px;
  right: -10px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #1f2937;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.jannah-firdaus-pin-badge span {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.jannah-firdaus-pin-badge strong {
  font-size: 20px;
}

.jannah-firdaus-pin-badge::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #f59e0b;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .jannah-firdaus-hero-wrap {
    grid-template-columns: 1fr;
  }

  .jannah-firdaus-hero h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .jannah-firdaus-hero-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 12px;
  }
  .jannah-firdaus-hero-images {
    gap: 8px;
  }
  .jannah-firdaus-hero-top .jannah-firdaus-badge:nth-child(1) {
    grid-column: span 2;
    justify-content: center;
  }

  .jannah-firdaus-hero-btn {
    justify-content: center;
  }

  .jannah-firdaus-hero-btn a {
    padding: 12px 18px;
    font-size: 14px;
  }

  .jannah-firdaus-stat-number {
    font-size: 2rem;
  }

  .jannah-firdaus-stat-box span {
    font-size: 0.8rem;
  }

  .jannah-firdaus-pin-badge {
    top: -45px;
    right: -5px;
    padding: 10px 14px;
  }

  .jannah-firdaus-pin-badge strong {
    font-size: 16px;
  }
}

/* ================= Produk ================= */
/* ================= Produk ================= */
/* ================= Produk ================= */
.produk-umroh-section {
  padding: 30px 3% 20px 3%;
}

.produk-umroh-container {
  max-width: 1920px;
  margin: auto;
}

/* HEADER */
.produk-umroh-header {
  text-align: center;
  margin-bottom: 60px;
}

.produk-umroh-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.produk-umroh-header p {
  color: #555;
  margin-bottom: 20px;
}

.produk-btn-selengkapnya {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, #c9a227, #f5d76e);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
}

/* GRID */
.produk-umroh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* AUTO CENTER jika sisa 1 card di 3 kolom */
.produk-umroh-card:nth-last-child(1):nth-child(3n + 1) {
  grid-column: 2 / 3;
}

/* CARD */
.produk-umroh-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
/* IMAGE */
.produk-umroh-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.produk-umroh-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.produk-umroh-content {
  padding: 25px;
}

.produk-umroh-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* DETAIL LIST */
.produk-umroh-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}

.produk-detail-item {
  display: grid;
  grid-template-columns: 20px 110px 1fr;
  align-items: start;
  gap: 5px;
  font-size: 14px;
}

/* ICON SVG */
.produk-detail-item svg {
  width: 19px;
  height: 19px;
  fill: #c9a227;
  flex-shrink: 0;
}

/* LABEL */
.produk-detail-item strong {
  font-weight: 600;
  color: #111;
}

/* VALUE */
.produk-detail-item span {
  color: #444;
}

/* HARGA */
.produk-umroh-harga {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 16px;
  padding: 18px 20px;
  font-family: "Segoe UI", sans-serif;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.produk-umroh-harga small {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.harga-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.harga-awal {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.diskon {
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.harga-final {
  font-size: 24px;
  font-weight: bold;
  color: #16a34a;
  margin: 0;
}

/* BUTTON */
.produk-btn-detail {
  display: block;
  text-align: center;
  padding: 13px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.produk-btn-detail:hover {
  background: linear-gradient(135deg, #c9a227, #f5d76e);
  color: #000;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

/* TABLET */
@media (max-width: 1024px) {
  .produk-umroh-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* AUTO CENTER jika sisa 1 di 2 kolom */
  .produk-umroh-card:nth-last-child(1):nth-child(2n + 1) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 420px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .produk-umroh-grid {
    grid-template-columns: 1fr;
  }
}
/*Kenapa Jannah Firdaus*/
/*Kenapa Jannah Firdaus*/
/*Kenapa Jannah Firdaus*/
section.kenapa-jannah-firdaus-section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 30px 5% 50px 5%;
}

section.kenapa-jannah-firdaus-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #000;
  font-family: "Playfair Display", serif;
}

.kenapa-jannah-firdaus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.kenapa-jannah-firdaus-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.kenapa-jannah-firdaus-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #bfa34a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kenapa-jannah-firdaus-feature-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* ikon jadi putih */
}

.kenapa-jannah-firdaus-feature-text h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #000;
}

.kenapa-jannah-firdaus-feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}

/* ✅ Responsive untuk mobile */
@media (max-width: 600px) {
  .kenapa-jannah-firdaus-feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  section.kenapa-jannah-firdaus-section h2 {
    font-size: 2rem;
  }
}
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
a {
  text-decoration: none;
}

/* Section About Travel */
.about-jannah-firdaus-travel {
  background-color: #003739;
  line-height: 1.7;
  background-image:
    linear-gradient(90deg, rgba(0, 79, 76, 0.5) 1px, transparent 1px),
    linear-gradient(rgba(0, 79, 76, 0.5) 1px, transparent 1px),
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.2), transparent 60%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.2), transparent 60%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.2), transparent 60%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2), transparent 60%);
  background-size: 80px 80px;
  padding: 50px 5% 50px 5%;
}

.about-jannah-firdaus-travel .about-jannah-firdaus-travel-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  gap: 20px;
}

.about-jannah-firdaus-travel .about-jannah-firdaus-travel-content {
  flex: 1 1 480px;
  text-align: left;
}

.about-jannah-firdaus-travel h2 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
}

.about-jannah-firdaus-travel p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ffffff;
  text-align: left;
}
.about-jannah-firdaus-travel h3 {
  font-size: 1.2rem;
  margin-bottom: 0px;
  color: #ffffff;
  text-align: left;
}
.about-jannah-firdaus-travel .about-jannah-firdaus-travel-highlight {
  color: #66bb6a;
  font-weight: 600;
}

.about-jannah-firdaus-travel .about-jannah-firdaus-travel-btn-primary {
  display: inline-block;
  background: #047857;
  color: #fcfcfc;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
  border: 2px solid #fcfcfc;
}

.about-jannah-firdaus-travel .about-jannah-firdaus-travel-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-jannah-firdaus-travel .about-jannah-firdaus-travel-image img {
  max-width: 100%;
  border-radius: 15px;
}

@media (max-width: 900px) {
  .about-jannah-firdaus-travel .about-jannah-firdaus-travel-container {
    flex-direction: column;
  }

  .about-jannah-firdaus-travel .about-jannah-firdaus-travel-content,
  .about-jannah-firdaus-travel .about-jannah-firdaus-travel-image {
    flex: 1 1 100%;
  }

  .about-jannah-firdaus-travel .about-jannah-firdaus-travel-image {
    margin-top: 20px;
  }

  /* Tombol di mobile tetap di tengah */
  .about-jannah-firdaus-travel .about-jannah-firdaus-travel-btn-wrapper {
    text-align: center;
    margin-top: 15px;
  }
}
.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  margin-top: 6px;
}

.feature-text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

/*promo paket Haji*/
/*promo paket Haji*/
/*promo paket Haji*/
/*promo paket Haji*/
/*promo paket Haji*/
/*promo paket Haji*/
/*promo paket Haji*/
/*promo paket Haji*/
.paket-haji-jannah-fridaus-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 60px 8%;
  background: #fff;
}

.paket-haji-jannah-fridaus-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.paket-haji-jannah-fridaus-images img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4.2; /* tetap jaga rasio */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.paket-haji-jannah-fridaus-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #006400; /* hijau daun */
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.paket-haji-jannah-fridaus-text p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.paket-haji-jannah-fridaus-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* jarak antara ikon dan teks */
  background: #006400;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.paket-haji-jannah-fridaus-btn:hover {
  background: #228b22;
}

.paket-haji-jannah-fridaus-btn .btn-icon {
  width: 20px; /* ukuran ikon */
  height: 20px; /* biar konsisten */
  display: inline-block;
}

/* Responsif */
@media (max-width: 900px) {
  .paket-haji-jannah-fridaus-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .paket-haji-jannah-fridaus-images {
    grid-template-columns: 1fr;
  }
  .paket-haji-jannah-fridaus-text h2 {
    font-size: 1.8rem;
  }
}
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1920px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: gold;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: gold;
}

.social-icons a {
  display: inline-block;
  margin-right: 8px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}
.kontak-icons p {
  display: flex;
  align-items: center; /* sejajarkan ikon dan teks secara vertikal */
  font-size: 15px;
  color: #fff; /* sesuaikan warna teks */
}
.footer p {
  margin: 8px 0; /* atas 10px, kanan 15px, bawah 8px, kiri 5px */
}
.kontak-icons img {
  margin-right: 8px; /* jarak antara ikon dan teks */
  width: 20px; /* ukuran ikon seragam */
  height: 20px;
}
.center-footer {
  text-align: center; /* bikin gambar di tengah */
}

.circle-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block; /* biar bisa ditengah pakai text-align */
  margin-bottom: 10px;
}

/* Wrapper */
.cta-daftar-wrapper {
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tombol */
.btn-daftar-digital {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 50px;

  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Hover */
.btn-daftar-digital:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.45);
  background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* Active */
.btn-daftar-digital:active {
  transform: scale(0.97);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-daftar-wrapper {
    padding: 30px 5%;
  }

  .btn-daftar-digital {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
}
/* ===============================
   Jannah Firdaus News Section
================================ */

.jannah-firdaus-news {
  padding: 30px 5%;
  background: #ffffff;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

.jannah-firdaus-news__header {
  text-align: center;
  max-width: 1920px;
  margin: 0 auto 50px;
}

.jannah-firdaus-news__header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1f1f1f;
  font-family: "Playfair Display", serif;
}

.jannah-firdaus-news__header p {
  color: #555;
  line-height: 1.6;
}

/* Grid */
.jannah-firdaus-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card */
.jannah-firdaus-news__card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.jannah-firdaus-news__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.12);
}

/* Image */
.jannah-firdaus-news__image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

/* Content */
.jannah-firdaus-news__content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.jannah-firdaus-news__date {
  font-size: 0.85rem;
  color: #785a00;
  margin-bottom: 5px;
  font-weight: bold;
}

.jannah-firdaus-news__content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.jannah-firdaus-news__content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===============================
   BUTTON GOLD MEWAH (ANTI BENTROK)
================================ */
.jannah-firdaus-news__btn {
  margin-top: auto;
  align-self: flex-start;

  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;

  background: linear-gradient(135deg, #f9e28c 0%, #d4a100 45%, #b88a00 100%);

  color: #1f1f1f !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .jannah-firdaus-news {
    padding: 20px 5%;
  }

  .jannah-firdaus-news__btn {
    align-self: center;
  }
}

/* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */
/* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */
/* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */ /* Agen */

#form-adyawuri-wrapper {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 20px 2%;
  background: #fff;
}

#form-adyawuri-wrapper .adyawuri-form-container {
  background: #ffffff;
  padding: 35px;
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  font-family: "Segoe UI", sans-serif;
}

#form-adyawuri-wrapper span {
  text-align: center;
  margin-bottom: 25px;
  color: #1e293b;
  font-size: 1.5rem;
  font-weight: bold;
}

#form-adyawuri-wrapper label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  margin-top: 15px;
}

#form-adyawuri-wrapper input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: 0.3s;
}

#form-adyawuri-wrapper input:focus {
  border-color: #16a34a;
  outline: none;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

#form-adyawuri-wrapper button {
  width: 100%;
  margin-top: 25px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

#form-adyawuri-wrapper button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-wa-text {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-family: sans-serif;
  font-size: 14px;
  z-index: 9999;
  transition: all 0.3s ease;
  border: 1px solid #f2f2f2;
}
.adyawuri-benefit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
}

.adyawuri-benefit-list li {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #2c2c2c;
}
