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: 50px 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: 35px;
}

.ttkm-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ttkm-gallery img:hover {
  transform: translateY(-6px);
}

/* 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-gallery img {
    height: 120px;
    border-radius: 14px;
  }

  .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;
  }
}
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
/*about*/
.about-jannah-firdaus-travel {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow: hidden;
  position: relative;
  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-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-jannah-firdaus-travel-content {
  flex: 1;
}

.about-jannah-firdaus-travel-image {
  flex: 1;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #7de07f;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-jannah-firdaus-travel h3 {
  color: #fff;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}

.about-jannah-firdaus-travel p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 680px;
}

.about-jannah-firdaus-travel-highlight {
  color: #7de07f;
  font-weight: 700;
}

.about-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

.about-feature-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.feature-icon i {
  color: #7de07f;
  font-size: 20px;
}

.feature-text {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.image-frame {
  position: relative;
  padding: 12px;
  border-radius: 30px;
  background: none;
  border: none;
  box-shadow: none;
}

.image-frame img {
  width: 100%;
  display: block;
  border-radius: 22px;
}

@media (max-width: 991px) {
  .about-jannah-firdaus-travel {
    padding: 55px 20px;
  }

  .about-jannah-firdaus-travel-container {
    flex-direction: column;
    gap: 35px;
  }

  .about-jannah-firdaus-travel-content {
    order: 1;
  }

  .about-jannah-firdaus-travel-image {
    order: 2;
    width: 100%;
  }

  .about-jannah-firdaus-travel h3 {
    font-size: 1.9rem;
    line-height: 1.35;
  }

  .about-jannah-firdaus-travel p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
  }

  .feature-text {
    font-size: 0.98rem;
  }
}
/*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;
  }
}
