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: #f9f9f9;
  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;
  color: #fff;
  background-color: #d4a100;
  padding: 10px;
  border-radius: 10px;
}
.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;
  color: #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: 0.5rem;
    right: 0.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 ================= */
/* SECTION */
.jannah-firdaus-about-section {
  background: #fff;
  margin: 0 auto;
  padding: 30px 5% 20px 5%;
}

.jannah-firdaus-about-container {
  max-width: 1920px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.jannah-firdaus-about-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.jannah-firdaus-about-text span {
  color: #eab308;
}

.jannah-firdaus-about-text p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* LIST */
.jannah-firdaus-about-list {
  list-style: none;
  margin-top: 25px;
  padding: 0;
}

.jannah-firdaus-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* SVG VERIFY ICON */
.jannah-firdaus-verify-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.jannah-firdaus-verify-icon svg {
  width: 100%;
  height: 100%;
  fill: #1e88e5;
  display: block;
}

/* SLIDER */
.jannah-firdaus-about-slider {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.jannah-firdaus-slider-track {
  display: flex;
  transition: transform 0.7s ease;
  will-change: transform;
}

.jannah-firdaus-slide {
  min-width: 100%;
}

.jannah-firdaus-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* BUTTON */
.jannah-firdaus-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jannah-firdaus-slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.jannah-firdaus-prev {
  left: 5px;
}

.jannah-firdaus-next {
  right: 5px;
}

/* INDICATOR */
.jannah-firdaus-slider-indicator {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.jannah-firdaus-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.jannah-firdaus-dot.jannah-firdaus-active {
  background: #000;
  transform: scale(1.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .jannah-firdaus-about-container {
    grid-template-columns: 1fr;
  }
}
/* ================= 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: 7 / 5;
  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: #f8f8f8;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.produk-umroh-harga small {
  color: #888;
  font-size: 12px;
}

.produk-umroh-harga p {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: bold;
}

/* 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;

  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;
  }
}

/* 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;
}
