body {
  margin: 0 auto;
  font-family:
    "Inter",
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f7f9fc;
  max-width: 1980px;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */
/* NAVBAR */

/* NAVBAR */
.ut-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
  z-index: 1000;
}

.ut-navbar.desktop {
  background: transparent;
  color: #ffd700;
} /* gold text default */
.ut-navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffd700;
}

.ut-logo {
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffd700;
} /* gold logo */

.ut-navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: auto; /* center menu */
}

.ut-navbar ul li a {
  text-decoration: none;
  color: #ffd700; /* gold text menu */
  font-weight: 500;
  transition: color 0.3s;
}
.ut-navbar ul li a:hover {
  color: #ffa500;
} /* gold-orange hover */

/* HAMBURGER */
.ut-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.ut-hamburger div {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s;
}

/* MOBILE MENU */
.ut-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 220px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 999;
  padding-top: 60px;
}
.ut-mobile-menu.show {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.ut-mobile-menu .ut-mobile-logo {
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.ut-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.ut-mobile-menu ul li a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s;
}
.ut-mobile-menu ul li a:hover {
  background: #f2f2f2;
}
.ut-mobile-menu ul li {
  border-bottom: 1px solid #eee;
}
.ut-mobile-menu ul li:last-child {
  border-bottom: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ut-navbar.desktop {
    display: none;
  } /* desktop navbar hilang di mobile */
  .ut-hamburger {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1.5rem;
  } /* hamburger tetap */
}
/* ================= 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: 90px 5% 50px 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: 10px;
  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 1fr;
  gap: 20px;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.jannah-firdaus-hero-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
}

.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: 900px) {
  .jannah-firdaus-hero-wrap {
    grid-template-columns: 1fr;
  }

  .jannah-firdaus-hero h1 {
    font-size: 2.1rem;
  }
}

@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-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;
  }
}

/* ================= Tentang Kami ================= */
/* ================= Tentang Kami ================= */
/* ================= Tentang Kami ================= */
.nt-container {
  max-width: 1920px;
  margin: 40px auto;
  padding: 30px 5% 0 5%;
}

.nt-container .about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* LEFT */
.nt-container .about-left h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.nt-container .about-left h2 span {
  color: #b38700;
}

.nt-container .about-left p {
  font-size: 16px;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.7;
}

.nt-container .list {
  margin-top: 25px;
  padding: 0;
  color: #222;
}

.nt-container .list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
}

.nt-container .list li::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("https://jannahfirdaus.net/assets/img/icon/verified-symbol-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

/* RIGHT */
.nt-container .about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.nt-container .card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 20px 15px;
  background: #fff;
  transition: 0.3s ease;
}

.nt-container .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nt-container .icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.nt-container .icon svg {
  width: 3.5rem;
  height: 3.5rem;
  color: #d4a100; /* warna icon langsung */
  display: block;
}

.nt-container .card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.nt-container .card p {
  font-size: 16px;
  color: #333;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .nt-container .about {
    grid-template-columns: 1fr;
  }

  .nt-container .about-right {
    grid-template-columns: 1fr;
  }
  .nt-container {
    padding: 0 20px;
  }
}
/* ================= Produk ================= */
/* ================= Produk ================= */
/* ================= Produk ================= */
.umroh-produk-section-header {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.umroh-produk-header-center {
  text-align: center;
  max-width: 1920px;
  padding: 0 5%;
}

.umroh-produk-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  font-family: "Playfair Display", serif;
}

.umroh-produk-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .umroh-produk-title {
    font-size: 2rem;
  }

  .umroh-produk-desc {
    font-size: 14px;
  }
}

.produk-umroh {
  padding: 40px 0;
}

/* Container */
.umroh-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0px;
}

/* Swiper */
.swiper {
  width: 100%;
  padding: 25px 0 55px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.35s ease;
}

/* Card */
.card-umroh {
  width: 320px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
}
.swiper-slide-active .card-umroh {
  transform: scale(1.05);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 100%;
  aspect-ratio: 5 / 4; /* KUNCI 1:1 */
  overflow: hidden;
  border-radius: 14px;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* auto crop rapi */
  display: block;
}
.card-body {
  padding: 18px;
}

.title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Info kiri-kanan 50%-50% */
.info {
  display: flex;
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}

.info-left,
.info-right {
  width: 50%;
  display: flex;
  align-items: center;
}

.info-left img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.info-left span.label {
  font-weight: 500;
}

.info-right {
  font-weight: 500;
  justify-content: flex-start; /* tetap kiri */
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: #d4a100;
  margin: 14px 0;
}

.btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9e28c 0%, #d4a100 45%, #be9003 100%);
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.3s ease;
}
.btn:hover {
  background: #f9dc7c;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 700;
  color: #c62828;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #c62828;
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #fff;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #cfcfcf;
  opacity: 1;
  transition: 0.3s;
}
.swiper-pagination-bullet-active {
  background: #d4a100;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .card-umroh {
    width: 280px;
  }
}
/*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 .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;
  }
}
/*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 30px 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 40px 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;

  box-shadow:
    0 6px 18px rgba(212, 161, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: all 0.35s ease;
}

.jannah-firdaus-news__btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(212, 161, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .jannah-firdaus-news {
    padding: 20px 5%;
  }

  .jannah-firdaus-news__btn {
    align-self: center;
  }
}
