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 */

/* ================= 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-badge i {
  color: #f59e0b;
  font-size: 20px;
}

/* ================= TEXT ================= */
.jannah-firdaus-hero h1 {
  font-size: 3.5rem;
  margin: 15px 0;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #ffd700;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(255, 215, 0, 0.25);
}

.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;
  }
}

/* ================= tentang kami ================= */
/* ================= tentang kami ================= */
/* ================= tentang kami ================= */
.ttkm-about-section {
  padding: 40px 5% 20px 5%;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.ttkm-about-title {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 15px;
}

.ttkm-about-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 5px;
}

.ttkm-about-desc {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.ttkm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 13px;
}

.ttkm-gallery-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #f1f1f1;
  transition: all 0.3s ease;
}

.ttkm-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.ttkm-gallery img {
  width: 100%;
  aspect-ratio: 54 / 65;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.ttkm-gallery-content {
  padding: 10px 15px;
  text-align: center;
}

.ttkm-gallery-content h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1d1d1d;
}

/* RIGHT */

.ttkm-program-title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 25px;
}

.ttkm-package-grid {
  display: grid;
  gap: 22px;
}

.ttkm-package-btn {
  display: flex;
  align-items: center;
  gap: 18px;

  min-height: 85px;
  padding: 22px 26px;

  background: #fff;

  border: 3px solid #d4af37;
  border-radius: 22px;

  text-decoration: none;

  box-shadow: 0 10px 0 #b8921e;

  transition: 0.25s ease;

  position: relative;
}

.ttkm-package-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 14px 0 #b8921e;
}

.ttkm-package-btn:active {
  transform: translateY(4px);

  box-shadow: 0 4px 0 #b8921e;
}

.ttkm-package-icon {
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;

  animation: ttkmArrow 1.2s infinite;
}

.ttkm-package-text {
  flex: 1;

  color: #222;
  margin: 0;
  font-size: 17px;
  font-weight: 700;

  text-align: left;
}

@keyframes ttkmArrow {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}

/* TABLET */

@media (max-width: 991px) {
  .ttkm-about-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ttkm-about-title {
    font-size: 36px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .ttkm-about-section {
    padding: 60px 20px;
    gap: 35px;
  }

  .ttkm-about-title {
    font-size: 30px;
  }

  .ttkm-about-subtitle {
    font-size: 20px;
  }

  .ttkm-gallery {
    gap: 10px;
  }

  .ttkm-program-title {
    font-size: 24px;
  }

  .ttkm-package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ttkm-package-btn {
    min-height: 60px;
    padding: 14px;
    gap: 12px;
    border-radius: 18px;
  }

  .ttkm-package-icon {
    font-size: 18px;
    margin-right: 4px;
  }

  .ttkm-package-text {
    font-size: 13px;
    line-height: 1.4;
  }
}
/*Kenapa Jannah Firdaus*/
/*Kenapa Jannah Firdaus*/
/*Kenapa Jannah Firdaus*/
:root {
  --jf-umroh-why-gold: #d4af37;
  --jf-umroh-why-gold-light: #f7e6a3;
  --jf-umroh-why-dark: #0f172a;
  --jf-umroh-why-text: #1e2228;
  --jf-umroh-why-bg: #f8fafc;
  --jf-umroh-why-white: #ffffff;
}

.jf-umroh-why-section {
  font-family: "Poppins", sans-serif;
  background: var(--jf-umroh-why-bg);
  padding: 50px 5%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.jf-umroh-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* Ukuran kotak */
  background-size: 45px 45px;

  /* Grid */
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.15) 1px, transparent 1px);

  /* Shadow tipis agar lebih premium */
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.08));
}

.jf-umroh-why-section > * {
  position: relative;
  z-index: 1;
}

.jf-umroh-why-container {
  max-width: 1300px;
  margin: auto;
}

.jf-umroh-why-heading {
  text-align: center;
  margin-bottom: 70px;
}

.jf-umroh-why-badge h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  color: #a17400;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.jf-umroh-why-heading h3 {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--jf-umroh-why-dark);
  line-height: 1.2;
  margin-bottom: 15px;
}

.jf-umroh-why-heading p {
  max-width: 700px;
  margin: auto;
  color: var(--jf-umroh-why-text);
  line-height: 1.8;
  font-size: 16px;
}

.jf-umroh-why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

.jf-umroh-why-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 35px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: 0.35s ease;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.jf-umroh-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--jf-umroh-why-gold),
    var(--jf-umroh-why-gold-light)
  );
}

.jf-umroh-why-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 5px 15px rgba(212, 175, 55, 0.12);
}

.jf-umroh-why-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.jf-umroh-why-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #d4af37, #f7e6a3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.jf-umroh-why-number {
  margin-left: auto;
  font-size: 42px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.12);
  line-height: 1;
}

.jf-umroh-why-card h4 {
  color: var(--jf-umroh-why-dark);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}

.jf-umroh-why-card p {
  color: var(--jf-umroh-why-text);
  line-height: 1.9;
  font-size: 15px;
}

@media (max-width: 768px) {
  .jf-umroh-why-cards {
    grid-template-columns: 1fr;
  }

  .jf-umroh-why-card {
    padding: 28px;
  }

  .jf-umroh-why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }

  .jf-umroh-why-number {
    font-size: 34px;
  }
}
/*Produk*/
/*Produk*/
/*Produk*/
.umr-title-section {
  background: linear-gradient(180deg, #f6f8f5, #edf2ee);
  width: 100%;
  font-family: "Inter", sans-serif;
}

.umr-title-wrapper {
  max-width: 1500px;
  margin: auto;
  padding: 40px 4% 10px 4%;
}

/* H2 */

.umr-main-title {
  position: relative;

  display: inline-block;

  margin-bottom: 40px;
  padding-bottom: 15px;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f5132;

  line-height: 1.2;
}

.umr-main-title::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 120px;
  height: 5px;

  border-radius: 50px;

  background: linear-gradient(90deg, #b58b35, #efd98e, #b58b35);
}

/* H3 */

.umr-sub-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.umr-sub-title {
  width: 100%;
  max-width: 650px;

  min-height: 50px;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px 30px;

  text-align: center;

  background: linear-gradient(135deg, #0d5c41, #0b7a54);

  border: 2px solid rgba(214, 184, 104, 0.35);

  border-radius: 22px;

  color: #fff;

  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.5;

  transition: 0.3s ease;
}

.umr-sub-title:hover {
  transform: translateY(-4px);
}

/* Corak Islami Simetris */

.umr-sub-title::before {
  content: "✦ ✧ ✦";

  position: absolute;

  left: 22px;
  top: 50%;

  transform: translateY(-50%);

  font-size: 1.2rem;
  letter-spacing: 6px;

  color: rgba(255, 255, 255, 0.15);
}

.umr-sub-title::after {
  content: "✦ ✧ ✦";

  position: absolute;

  right: 22px;
  top: 50%;

  transform: translateY(-50%);

  font-size: 1.2rem;
  letter-spacing: 6px;

  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .umr-main-title {
    margin-bottom: 30px;
  }

  .umr-sub-title {
    min-height: 50px;
    padding: 20px;
    border-radius: 18px;
  }

  .umr-sub-title::before,
  .umr-sub-title::after {
    font-size: 1rem;
    letter-spacing: 4px;
  }
}
.paket-umroh-container {
  max-width: 1500px;
  margin: auto;
  padding: 40px 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.produk-umroh-card {
  width: 100%;
  max-width: 450px;

  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  border: 1px solid #c5bb02;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 12px 35px rgba(28, 40, 35, 0.07),
    0 3px 10px rgba(28, 40, 35, 0.04);
}
@media (max-width: 991px) {
  .paket-umroh-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .paket-umroh-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .produk-umroh-card {
    max-width: 100%;
  }
}
/* IMAGE */

.produk-umroh-image {
  aspect-ratio: 256 / 175;
  overflow: hidden;
  position: relative;
}

.produk-umroh-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */

.produk-umroh-content {
  padding: 10px 24px 20px 24px;
}

.produk-umroh-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.produk-umroh-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

.produk-umroh-meta-left i {
  color: #c89a00;
}

.airline-logo img {
  height: 34px;
}

.produk-umroh-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

/* HOTEL */

.hotel-rating-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #faf8f2;
  border: 1px solid #ece4d1;
  margin-bottom: 16px;
}

.hotel-rating-col {
  padding: 16px;
  text-align: center;
}

.hotel-rating-col:first-child {
  border-right: 1px solid #ece4d1;
}

.hotel-rating-title {
  font-size: 12px;
  font-weight: 700;
  color: #777;
  margin-bottom: 6px;
}

.hotel-rating-star {
  color: #d4a017;
}

.hotel-name-list {
  background: #faf8f2;
  border: 1px solid #ece4d1;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 20px;
}

.hotel-name-item {
  display: flex;
  gap: 10px;
  line-height: 1.7;
}

.hotel-name-item i {
  color: #c89a00;
  margin-top: 4px;
}

.hotel-name-item + .hotel-name-item {
  margin-top: 10px;
}

/* FEATURE */

.paket-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 12px;
  margin-bottom: 20px;
}

.paket-feature-item {
  display: flex;
  align-items: flex-start; /* ikon tetap di atas */
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
}

.paket-feature-item i {
  color: #16a34a;
  font-size: 14px;
  padding-top: 1.2px;
  flex-shrink: 0;
}

/* PRICE */

.program-price-box {
  border-top: 1px solid #eee6d8;
  padding-top: 20px;
  margin-top: auto;
}

.program-price-item {
  background: #faf8f2;
  border: 1px solid #ece4d1;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.program-price-item + .program-price-item {
  margin-top: 16px;
}

.program-period {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;

  padding: 16px 15px;
  margin: 0;

  background: linear-gradient(135deg, #0f766e, #065f46);
  color: #fff;

  font-size: 14px;
  font-weight: 700;
  text-align: left;

  border: none;
  border-radius: 0;

  letter-spacing: 0.5px;
}

.program-period i {
  color: #fff;
  font-size: 15px;
}

.program-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  padding: 22px 18px 18px;
}

@media (max-width: 768px) {
  .program-period {
    font-size: 12px;
    padding: 14px;
  }
}

.price-label {
  font-size: 12px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.old-price {
  color: #999;
  font-size: 15px;
  font-weight: 700;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.new-price {
  font-size: 34px;
  font-weight: 800;
  color: #d40000;
}

.new-price span {
  font-size: 15px;
  color: #666;
}

.discount-text {
  margin-top: 10px;
  color: #c89a00;
  font-size: 13px;
  font-weight: 800;
}

.consult-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 135px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s;
}

.consult-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {
  .produk-umroh-content {
    padding: 18px;
  }

  .program-price-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .new-price {
    font-size: 28px;
  }

  .consult-btn {
    min-width: 120px;
    padding: 12px 14px;
    font-size: 12px;
  }
}
/*about*/
/*about*/
/*about*/
/*about*/
/*========================
      SECTION
    ========================*/
.about-jannah-firdaus-travel {
  position: relative;
  overflow: hidden;
  padding: 90px 20px;
  isolation: isolate;

  background: linear-gradient(135deg, #063b30 0%, #044235 50%, #022a22 100%);
}

/* Corak Islami */
.about-jannah-firdaus-travel::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 2px, transparent 2px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%);

  background-size:
    60px 60px,
    120px 120px,
    120px 120px;

  opacity: 0.9;
  z-index: -2;
}

/* Glow */
.about-jannah-firdaus-travel::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -120px;
  right: -120px;

  background: rgba(16, 185, 129, 0.1);

  filter: blur(90px);
  z-index: -1;
}

.about-jannah-firdaus-travel-container {
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/*========================
      CONTENT
    ========================*/
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #d7e8df;
  font-size: 0.92rem;
  font-weight: 600;

  backdrop-filter: blur(12px);
}

.about-badge i {
  color: #d4af37;
}

.about-jannah-firdaus-travel-content h3 {
  margin: 24px 0 18px;

  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
}

.about-jannah-firdaus-travel-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 650px;
}

.about-jannah-firdaus-travel-highlight {
  color: #e7c565;
  font-weight: 700;
}

/*========================
      FEATURE
    ========================*/
.about-feature-list {
  list-style: none;

  margin-top: 45px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(18px);

  transition: 0.35s ease;
}

.about-feature-item:hover {
  transform: translateY(-6px);

  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.28);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background: linear-gradient(135deg, #d4af37, #f3db8c);

  color: #054338;
  font-size: 1.3rem;
}

.feature-text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

/*========================
      IMAGE
    ========================*/
.about-jannah-firdaus-travel-image {
  position: relative;
}

.image-frame {
  padding: 0px;
}

.image-frame img {
  width: 100%;
  display: block;
}

/*========================
      TABLET
    ========================*/
@media (max-width: 991px) {
  .about-jannah-firdaus-travel-container {
    grid-template-columns: 1fr;
  }

  .about-jannah-firdaus-travel-image {
    order: 2;
  }
}

/*========================
      MOBILE
    ========================*/
@media (max-width: 768px) {
  .about-jannah-firdaus-travel {
    padding: 70px 15px;
  }

  /* Corak lebih jelas di mobile */
  .about-jannah-firdaus-travel::before {
    background-size:
      40px 40px,
      80px 80px,
      80px 80px;
  }

  .about-feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .about-feature-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;

    gap: 14px;

    padding: 18px 10px;
    min-height: 150px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }

  .feature-text {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .about-jannah-firdaus-travel-content h3 {
    font-size: 1.8rem;
  }

  .about-feature-item {
    min-height: 140px;
  }

  .feature-text {
    font-size: 13px;
  }
}
/*dokumntasi*/
/*dokumntasi*/
/*dokumntasi*/
/*dokumntasi*/
/*dokumntasi*/
/*dokumntasi*/
/*dokumntasi*/
/*dokumntasi*/
/* CONTAINER */
.ttkmx-container {
  max-width: 1500px;
  margin: auto;
  padding: 40px 5% 0px 5%;
}

.ttkmx-header {
  text-align: center;
  margin-bottom: 20px;
}

.ttkmx-header h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.ttkmx-header p {
  color: #444;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

/* SWIPER */

.ttkmx-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ttkmx-video img {
  width: 100%;
  aspect-ratio: 16/12;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}

.ttkmx-video:hover img {
  transform: scale(1.05);
}

/* =========================
         PLAY BUTTON FIX (SEGITIGA ASLI)
      ========================= */
.ttkmx-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 55px;
  height: 55px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);

  transition: 0.25s ease;
}

/* SEGITIGA PLAY (ANTI KOTAK) */
.ttkmx-play::before {
  content: "";
  position: absolute;

  width: 0;
  height: 0;

  border-left: 17px solid #ff0000;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;

  transform: translateX(2px);
}

.ttkmx-video:hover .ttkmx-play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* PAGINATION */
.ttkmx-container .ttkmx-pagination {
  position: relative !important;
  margin-top: 25px;
  text-align: center;
}

.ttkmx-container .ttkmx-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.ttkmx-container .ttkmx-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  background: #d4af37;
}

/* MODAL */
.ttkmx-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.ttkmx-modal.ttkmx-active {
  display: flex;
}

.ttkmx-modal-box {
  width: 100%;
  max-width: 1000px;
  position: relative;
}

.ttkmx-modal-box iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  background: #000;
}

.ttkmx-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 768px) {
  .ttkmx-modal-box iframe {
    height: 400px;
  }
}
.jfumroh-heading-wrap {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}
.jfumroh-heading-title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111827;
}

.jfumroh-heading-desc {
  margin: 14px 0 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .jfumroh-heading-wrap {
    padding: 0 16px;
  }

  .jfumroh-heading-title {
    font-size: 28px;
  }

  .jfumroh-heading-desc {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* ===== MODAL (ADA SPACE + TIDAK FULL LAYAR) ===== */
.ttkm-umroh-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
  z-index: 999;
}

.ttkm-umroh-box {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.ttkm-umroh-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.ttkm-umroh-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.ttkm-umroh-close:hover {
  background: rgba(255, 255, 255, 0.35);
}
/* ===== WRAPPER ===== */
.klsw-wrap {
  max-width: 1500px;
  margin: auto;
  padding: 40px 16px;
}

/* ===== TITLE ===== */
.klsw-title {
  text-align: center;
  margin-bottom: 20px;
}

.klsw-title h3 {
  font-size: 26px;
  margin: 0;
  font-weight: 700;
}

.klsw-title p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

/* ===== SWIPER ===== */
.klsw-swiper {
  padding-bottom: 40px;
}

/* ===== GRID ===== */
.klsw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}

.klsw-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background: #eee;
}

.klsw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.klsw-item:hover img {
  transform: scale(1.08);
}

/* layout */
.klsw-1 {
  grid-column: span 2;
  grid-row: span 2;
}
.klsw-2 {
  grid-column: span 2;
  grid-row: span 1;
}

/* pagination */
.swiper-pagination {
  bottom: 0 !important;
}

/* ===== LIGHTBOX MODERN ===== */
.klsw-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.klsw-lightbox.active {
  display: flex;
}

/* MODAL CARD */
.klsw-lightbox-box {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.klsw-lightbox-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

/* CLOSE BUTTON MODERN */
.klsw-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(6px);
}

.klsw-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .klsw-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
}

@media (max-width: 500px) {
  .klsw-grid {
    grid-template-columns: 1fr;
  }
}

/*cta daftar*/
/*cta daftar*/
/*cta daftar*/
/*cta daftar*/
.cta-contact-section {
  padding: 50px 5%;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 175, 55, 0.12),
      transparent 35%
    ),
    #0f1115;
}

.cta-contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */

.cta-contact-title {
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
  font-size: clamp(32px, 3vw, 46px);
  max-width: 620px;
}

.cta-contact-desc {
  color: #b8c0d0;
  font-size: 17px;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 560px;
}

.cta-contact-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-contact-item i {
  width: 26px;
  text-align: center;
  color: #0ea5e9;
  font-size: 20px;
  flex-shrink: 0;
}

.cta-contact-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.cta-contact-item a:hover {
  color: #d4af37;
}

/* RIGHT */

.cta-contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cta-contact-field {
  margin-bottom: 20px;
}

.cta-contact-field label {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.cta-contact-field input {
  width: 100%;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 18px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.cta-contact-field input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.cta-contact-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-contact-btn {
  width: 100%;
  height: 62px;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  background: linear-gradient(135deg, #d4af37, #f3d36d);
  transition: 0.3s;
}

.cta-contact-btn:hover {
  transform: translateY(-3px);
}

.cta-contact-note {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.cta-contact-note span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

@media (max-width: 991px) {
  .cta-contact-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cta-contact-title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .cta-contact-desc {
    font-size: 16px;
  }

  .cta-contact-item a {
    font-size: 16px;
  }

  .cta-contact-card {
    padding: 28px;
  }
}
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
/*Footer Jannah Firdaus*/
.jf-footer {
  background: #000;
  color: #fff;
  padding: 50px 0 0;
}

.jf-footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.jf-footer-logo {
  width: 120px;
  display: block;
  margin-bottom: 5px;
}

.jf-footer-desc {
  color: #a8a8a8;
  line-height: 1.8;
  font-size: 15px;
  max-width: 380px;
}

.jf-footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.jf-footer-links {
  list-style: none;
}

.jf-footer-links li {
  margin-bottom: 14px;
}

.jf-footer-links a {
  color: #a8a8a8;
  text-decoration: none;
  transition: 0.3s ease;
}

.jf-footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.jf-footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.jf-footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  padding: 22px 24px;
  text-align: center;
}

.jf-footer-bottom p {
  color: #777;
  font-size: 14px;
}

@media (max-width: 768px) {
  .jf-footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .jf-footer-logo {
    margin: 0 auto 20px;
  }

  .jf-footer-desc {
    margin: auto;
  }
}
