:root {
  --black-font: #333333;
  --dark-blue: #003399;
}

hr {
  border: none;
  width: 90%;
  height: 2px;
  background-color: #ddd;
  display: block;
  margin: auto;
}

/* --- SECTION HEADLINE STYLE --- */
.headline-section {
  padding: 2rem 0;
  background-color: #ffffff;
  text-align: center;
}

.headline-content-wrapper {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}

.headline-title {
  font-family: "Urbanist-blackBold";
  font-weight: 700;
  font-size: 3rem;
  color: var(--black-font);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.headline-title-highlight {
  color: #ffffff;
  background: linear-gradient(to right, #003399, #326cff);
  padding: 0 10px;
  border-radius: 4px;
  display: inline-block;
}

.headline-desc {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
}

.headline-desc-bold {
  font-weight: 750;
}

/* --- GALLERY STYLE (Perbaikan Struktur Grid) --- */
.headline-gallery-container {
  width: 90%;
  margin: 0 auto 1rem auto; /* Dipastikan terpusat sempurna */
}

.headline-gallery-box {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  width: 100%; /* Memastikan box memenuhi kolom Bootstrap */
}

.headline-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  /* object-position: left bottom; a */
}
.headline-overlay {
  position: absolute;
  text-align: left;
  top: 20px;
  /* left: 16px; */

  padding: 0px 70px 5px 20px;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 90%,
    rgba(0, 0, 0, 0) 100%
  );

  /* border-radius: 10px; */
  width: auto; /* Biarkan menyesuaikan teks */
  max-width: 75%; /* Batas maksimal agar tidak keluar card */
}

.mendangir {
  top: 40%;
}

.headline-overlay h5 {
  display: block;
  width: auto;
  color: #ffffff;
  font-size: 1.25rem; /* Diperbesar dari 1rem */
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin: 0;

  white-space: normal;
  word-break: keep-all; /* Tidak memotong di tengah kata */
  overflow-wrap: normal;
}
/* --- CTA BUTTON STYLE --- */
.headline-cta-wrapper {
  margin-top: 2rem;
}

.btn-cta-headline {
  background: linear-gradient(to right, #ff6600, #ff0900);
  color: white !important; /* Memaksa warna teks tetap putih */
  font-weight: 600;
  /* 1. FONT: Maksimal 1.2rem (sesuai kodemu), mengecil otomatis hingga minimal 0.85rem */
  font-size: clamp(0.85rem, 3.8vw, 1.2rem);

  /* 2. PADDING: Atas-bawah tetap 1.2rem, Kiri-kanan maksimal 4rem (sesuai kodemu) dan mengecil di HP */
  padding: 1.2rem clamp(1.5rem, 8vw, 4rem);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(237, 21, 33, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  /* 3. AMANKAN UKURAN TOMBOL */
  max-width: 100%; /* Tombol tidak akan pernah lebih lebar dari layar/kontainer */
  box-sizing: border-box; /* Memastikan padding tidak merusak ukuran maksimal */
  text-wrap: nowrap; /* Sekarang aman digunakan karena font & padding ikut mengecil */
}

.btn-cta-headline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 55, 0, 0.4);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .headline-title {
    font-size: 2rem;
  }
  .headline-desc {
    font-size: 1rem;
    line-height: 1.3;
  }
  .headline-gallery-container {
    width: 100%;
    gap: 10px;
  }

  /* Semua kolom jadi full width, baris menurun */
  .headline-gallery-container .col-6,
  .headline-gallery-container .col-8,
  .headline-gallery-container .col-gallery-third {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Semua box tinggi sama */
  .headline-gallery-box {
    width: 100%;
    height: 100%;
  }
}

/* --- VIDEO SECTION BASE --- */
.video-section {
  margin-bottom: 3rem;
  padding: 0 2rem;
  text-align: center;
}

.video-player-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.video-frame {
  border-radius: 1.5rem;
  box-shadow: 0 0px 30px rgba(133, 132, 132, 0.763);
}

/* --- OPTIMALISASI LAYAR HP (AGAR TIDAK MEPET) --- */
@media (max-width: 767.98px) {
  .video-section {
    /* Memberikan jarak aman di kiri & kanan video agar tidak menyentuh ujung browser */
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    margin-bottom: 2rem; /* Menyesuaikan margin bawah di HP agar tidak terlalu renggang */
  }

  .video-frame {
    border-radius: 1rem; /* Sedikit mengecilkan sudut kelengkungan agar pas di layar kecil */
  }
}

/* --- FEATURE SECTION BASE --- */
.feature-section {
  padding: 1rem 2rem 5rem 2rem;
  background-color: #ffffff;
  position: relative;
}

.feature-container {
  position: relative;
  padding: 1rem 3.5rem 2rem 3.5rem;
  background: linear-gradient(to bottom, #ffffff 0%, #b8dcff 100%);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 50px rgba(146, 146, 152, 0.584);
}

/* --- TEXT STYLE --- */
.feature-text-wrapper {
  align-self: stretch; /* ✅ Rentangkan penuh lebar container */
  max-width: none; /* ✅ Hapus batasan lebar sebelumnya */
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 1rem; */
  /* max-width: 800px; */
  text-align: center;
}

.feature-title {
  font-family: "Urbanist-blackBold";
  font-weight: 700;
  font-size: 2.5rem;
  color: #093da4;
  margin-bottom: 1rem;
}

.feature-desc {
  text-align: center;
  color: var(--black-font);
  font-family: "Urbanist-medium";
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}

.feature-desc-bold {
  font-weight: 800;
}

.feature-visual-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual-img {
  width: 90%;
  height: auto;
  display: block;
  /* ✅ Biarkan traktor menembus ke bawah container */
  /* margin-bottom: -80px;  */
}

/* --- MEDIA QUERIES (RESPONSIF MOBILE & TABLET) --- */
@media (max-width: 767.98px) {
  .feature-section {
    padding: 1rem 1.25rem 5rem 1.25rem; /* ✅ Tambah padding kiri kanan section */
  }

  .feature-container {
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: hidden; /* ✅ Cegah traktor keluar kontainer */
  }

  .feature-text-wrapper {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    text-align: left;
  }

  .feature-title {
    text-align: left;
    font-size: 1.3rem;
  }

  .feature-desc {
    font-size: 1rem;
    line-height: 1.3;
    text-align: left;
  }
  .feature-visual-img {
    width: 100%; /* ✅ Sesuaikan tembusan di mobile */
    margin-top: -20px;
  }
}

/* --- PHASE SECTION BASE --- */
.phase-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.phase-main-title {
  font-family: "Urbanist-blackBold";
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}

/* --- CARD ARCHITECTURE --- */
.phase-card {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 0px 20px #acaeb4; /* Dihaluskan agar tidak terlalu pekat kotor */
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid #eef2f7;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.phase-img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* EFEK GRADASI MENYAMBUNG KE KARTU BAWAH */
.phase-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 40%; /* Menentukan seberapa tinggi jangkauan pudaran gradasi */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 80%,
    #ffffff 100%
  );
  pointer-events: none; /* Mencegah gradasi menghalangi fungsi klik/hover gambar */
}

.phase-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phase-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: -45px; /* Menarik elemen ke atas memotong foto (Sesuaikan angka ini sesuai selera) */
  position: relative; /* Wajib aktif agar z-index berfungsi */
  z-index: 2; /* Memaksa teks berada di LAYER ATAS, mengalahkan foto */
  background: transparent; /* Membiarkan gradasi putih dari wrappers di bawahnya terlihat */
}
/* --- TEXT ELEMENTS --- */
.phase-title-text {
  font-family: "Urbanist-blackBold";
  color: var(--black-font);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  margin-bottom: 0.25rem;
}
.phase-title-wrapper {
  margin-top: -30px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
}

.phase-subtitle-text {
  font-size: 1.1rem; /* Sebelumnya 15px */
  color: var(--dark-blue);
  font-weight: 700;
  display: block;
}

.phase-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 0;
  text-align: center;
}

/* --- IMPLEMENT BOX STYLING --- */
.implement-box {
  background: linear-gradient(#ffeee1, #fffff2);
  box-shadow: 0px 0px 40px #acaeb4;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.implement-box-title {
  font-family: "Urbanist-blackBold";
  font-size: 12px;
  color: var(--black-font);
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.implement-item-row {
  font-size: 11px;
  font-weight: 700;
  color: #444444;
}

.implement-item {
  width: 30%;
}

.implement-icon {
  height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.implement-badge-red {
  color: #ed1521;
  font-weight: 800;
  font-size: 10px;
}

.implement-status-sub {
  font-size: 8px;
}

.implement-status-sub-red {
  font-size: 8px;
  color: #ed1521;
}

.implement-divider {
  color: #dddddd;
  font-size: 20px;
}

@media (max-width: 767.98px) {
  .phase-section {
    padding: 2.5rem 0;
  }

  .phase-main-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .phase-card {
    border-radius: 1.2rem;
  }

  .phase-img-wrapper::after {
    bottom: -10px;
    left: 0;
    height: 50%; /* Menentukan seberapa tinggi jangkauan pudaran gradasi */
  }

  .phase-card-body {
    padding: 1.5rem;
    margin-top: -30px;
  }

  .phase-title-text {
    font-size: 2.2rem;
  }

  .phase-subtitle-text {
    font-size: 1rem;
  }

  .phase-title-wrapper {
    min-height: 70px;
    margin-bottom: 0;
  }

  /* Implement box */
  .implement-box {
    padding: 1rem;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
  }

  .implement-box-title {
    font-size: 13px;
    margin-bottom: 0.6rem;
  }

  .implement-item-row {
    font-size: 13px;
  }

  .implement-icon {
    height: 45px;
    margin-bottom: 5px;
  }

  .implement-badge-red {
    font-size: 12px;
  }

  .implement-status-sub {
    font-size: 10px;
  }

  .implement-divider {
    font-size: 20px;
  }

  .phase-card-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Efek hover opsional agar lebih interaktif */

.reason-card-img-container {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  overflow: hidden;
  position: relative; /* Tambahkan ini */
}

.reason-card-title {
  font-family: "Urbanist-medium";
  text-align: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  text-shadow: 0px 0px 6px rgb(0, 19, 106);
}

.reason-card-desc {
  font-family: "Urbanist-light";
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  opacity: 0.95;
  text-shadow: 1px 1px 2px black;
}

/* --- REASON SECTION BASE --- */
.reason-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.reason-container {
  background: linear-gradient(to bottom, #002b75, #003399, #3a72ff);
  border-radius: 2rem;
  box-shadow: 0 0px 16px rgb(26, 26, 26);
  padding: 5rem 3rem; /* Standar padding lebar untuk desktop */
}

.reason-main-title {
  font-family: "Urbanist-blackBold";
  color: #ffffff;
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 3rem;
}

/* --- REASON CARD ARCHITECTURE --- */
.reason-card {
  background: linear-gradient(to right, #557dd8, #3b68cc, #557dd8);
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.414);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 0.5px solid #92aade;
}

.reason-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-card-body {
  padding: 0.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* --- OPTIMALISASI RESPONSIF LAYAR HP (MOBILE COMPACT) --- */
@media (max-width: 767.98px) {
  .reason-section {
    padding: 2rem 0; /* Mengurangi ruang kosong section luar di HP */
  }

  .reason-container {
    padding: 2.5rem 1.25rem; /* Container di HP dipersempit agar tidak memakan ruang */
    border-radius: 1.5rem;
  }

  .reason-main-title {
    font-size: 1.4rem; /* Ukuran judul utama diperkecil agar tidak menumpuk berantakan */
    margin-bottom: 2rem;
  }

  .reason-card-body {
    padding: 1.15rem; /* Padding dalam kartu dikurangi agar hemat ruang */
  }

  .reason-card-title {
    font-size: 1.2rem; /* Judul kartu lebih kecil dan padat */
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .reason-card-desc {
    font-size: 1rem; /* Teks deskripsi rapat, proporsional, dan nyaman dibaca di HP */
    line-height: 1.3;
    text-align: left;
  }
}

/* Wadah scroll horizontal */
/* Wrapper baru untuk posisi gradasi */
.testi-scroll-wrapper {
  position: relative;
  overflow: hidden; /* Sembunyikan gradasi yang keluar */
}

/* Gradasi KIRI */
.testi-scroll-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
  z-index: 10;
  pointer-events: none; /* Agar scroll tetap bisa digeser */
}

/* Gradasi KANAN */
.testi-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}
/* CONTAINER: hanya sebagai kolom vertikal */
.testi-scroll-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
  height: auto;
  padding: 0.5rem 0;
}

/* SETIAP BARIS */
.testi-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto !important; /* Matikan smooth scroll bawaan browser */
  -webkit-overflow-scrolling: auto; /* Matikan momentum scroll iOS */
}
.testi-row::-webkit-scrollbar {
  display: none;
}

.testi-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Kartu Utama: Dibuat LEBIH LEBAR dengan width: 340px */
.testi-card-3x4 {
  flex: 0 0 auto;
  width: 200px;
  height: 255px;
  aspect-ratio: unset;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Gambar Background */
.testi-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Efek Gradasi Transparan ke Biru Pekat (Sesuai image_0823c1.png) */
.testi-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

/* Pengaturan teks deskripsi kutipan */
.testi-quote-text {
  font-family: "Urbanist-light";
  color: #ffffff;
  font-size: 15px;
  /* font-weight: 600; */
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

/* Wrapper Nama dan Tanda Kutip bawah */
.testi-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testi-user-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0;
}

.testi-quote-icon-white img {
  width: 25px;
}
.testi-main-title {
  font-family: "Urbanist-blackBold";
  font-weight: 800;
  font-size: 2rem;
  color: var(--black-font);
  margin-bottom: 1rem;
  line-height: 1.3;
}
/* Tampilan Layar Desktop Desktop Besar (Menghilangkan scroll, grid statis) */
@media (max-width: 991.98px) {
  .testi-scroll-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 60px;
    height: calc(100% - 1.5rem);
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
  }

  /* Gradasi KANAN */
  .testi-scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 60px;
    height: calc(100% - 1.5rem);
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
  }
}

/* DESKTOP: Grid statis, tanpa scroll, tanpa gradasi */
@media (min-width: 992px) {
  .testi-scroll-wrapper::before,
  .testi-scroll-wrapper::after {
    display: none; /* Sembunyikan gradasi di desktop */
  }
  .testi-scroll-container {
    gap: 1.5rem;
  }

  .testi-row {
    overflow-x: visible;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 1.5rem; /* Pastikan gap konsisten */
  }

  .testi-card-3x4 {
    flex: 1 1 0;
    max-width: 260px;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 1.5rem;
    width: auto;
  }
}

/* MOBILE: 2 baris, scroll horizontal, urutan benar */
@media (max-width: 991.98px) {
  .testi-main-title {
    font-size: 1.5rem;
  }
  .testi-scroll-wrapper::before,
  .testi-scroll-wrapper::after {
    height: 100%;
  }

  .testi-quote-text {
    font-size: 12px;
    margin-bottom: 0.75rem;
    line-height: 1.35;
  }
  .testi-user-name {
    font-size: 0.75rem;
  }
  .testi-quote-icon-white {
    font-size: 2rem;
  }
  .testi-overlay-content {
    padding: 1rem;
    height: 80%;
  }
}

.firman {
  background: linear-gradient(
    to bottom,
    rgba(11, 97, 0, 0) 0%,
    #0b6161 40%,
    #1da5a5 100%
  );
}

.prawito {
  background: linear-gradient(
    to bottom,
    rgba(0, 77, 122, 0) 0%,
    #003399 35%,
    #0071e1 100%
  );
}

.joko {
  background: linear-gradient(
    to bottom,
    rgba(0, 77, 122, 0) 0%,
    #663399 40%,
    #ba336f 100%
  );
}

.jim {
  background: linear-gradient(
    to bottom,
    rgba(0, 77, 122, 0) 0%,
    #ef0c04 40%,
    #ff7f29 100%
  );
}

/* --- FAQ SECTION BASE --- */
.faq-section {
  color: var(--black-font);
  padding: 5rem 0 0 0;
  background-color: #ffffff; /* Menyesuaikan bg-light bawaan Bootstrap */
}

.faq-title-wrapper {
  font-family: "Urbanist-blackBold";
  max-width: 700px;
  margin: 0 auto 3rem auto; /* mb-5 */
  text-align: center;
}

.faq-title {
  font-family: "Urbanist-blackBold";
  font-weight: 700; /* fw-bold */
  font-size: calc(1.375rem + 1.5vw); /* Pendekatan display-6 responsif */
  color: var(--black-font);
  margin-bottom: 0.5rem;
}

.faq-subtitle {
  color: #6c757d; /* text-muted */
  font-size: 1.25rem; /* fs-5 */
}

/* --- ACCORDION CUSTOMIZATION --- */
.faq-accordion-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion-item {
  box-shadow: 0 0 10px rgba(76, 76, 76, 0.585); /* shadow-sm */
  margin-bottom: 1rem; /* mb-3 */
  border: 1px solid #dee2e6;
  border-radius: 0.5rem !important; /* rounded-3 */
  overflow: hidden;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.faq-accordion-item .icon-faq {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

/* Tombol Judul FAQ */
.faq-accordion-btn {
  font-weight: 700; /* fw-bold */
  color: var(--black-font) !important; /* text-dark */
  background-color: #ffffff;
  border: none;
  padding: 1.25rem;
  transition: all 0.3s ease;
  font-family: "Urbanist-medium";
}
/* Hilangkan panah default Bootstrap */
.faq-accordion-btn::after {
  display: none !important;
}

/* Tambah icon > custom di kanan */
.faq-accordion-btn::before {
  content: "\f105"; /* Unicode FA fa-angle-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Wajib untuk solid icons */
  font-size: 2rem;
  color: #003399;
  line-height: 1;
  margin-left: auto;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  order: 99; /* Dorong ke paling kanan */
}

/* Ketika terbuka, rotate jadi menghadap bawah seperti V */
.faq-accordion-btn:not(.collapsed)::before {
  transform: rotate(90deg);
  color: #ed1521; /* Ikut merah saat aktif */
}

/* Mengubah warna panah indikator bawaan bootstrap menjadi merah saat aktif */
.faq-accordion-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ed1521'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Bagian Isi Jawaban */
.faq-accordion-body {
  padding: 1.25rem;
  color: #6c757d; /* text-secondary */
  line-height: 1.6; /* lh-base */
  background-color: #ffffff;
}

.faq-link-highlight {
  color: #dc3545; /* text-danger */
  font-weight: 700; /* fw-bold */
  text-decoration: none;
}

.faq-link-highlight:hover {
  text-decoration: underline;
}

/* --- CTA BANNER SECTION --- */
.cta-boxer-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

/* Wadah Utama Jingga (Sesuai image_137986.png) */
.cta-boxer-container {
  background: #ff5722; /* Warna jingga cerah khas banner */
  background: linear-gradient(to bottom, #ff7f29 0%, #ff4717 100%);
  border-radius: 2rem;
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255, 60, 0, 0.641);
  max-width: 500px; /* Standar default mobile berbentuk kotak */
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* Judul Utama */
.cta-boxer-judul {
  color: #ffffff;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

/* Deskripsi Teks */
.cta-boxer-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* Wrapper Tombol */
.cta-boxer-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Pengaturan Umum Tombol Putih (Sesuai image_137986.png) */
.btn-cta-white {
  background-color: #ffffff;
  color: #ef0c04 !important; /* Warna teks jingga pekat */
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* sesuaikan */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  background-color: #fff5f2; /* Efek sedikit merona saat di-hover */
}

/* --- TAMPILAN KHUSUS DESKTOP (LAYAR LEBAR) --- */
/* --- TAMPILAN MOBILE (HP) --- */
@media (max-width: 991.98px) {
  .cta-boxer-section {
    padding: 3rem 0; /* Kurangi padding section */
  }

  .cta-boxer-container {
    max-width: 92%;
    padding: 2rem 1.5rem; /* Lebih compact */
    border-radius: 1.25rem;
  }

  .cta-boxer-judul {
    font-size: 1.35rem; /* Turun dari 2rem */
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .cta-boxer-desc {
    font-size: 0.9rem; /* Turun dari 1.1rem */
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .cta-boxer-buttons {
    gap: 0.75rem; /* Jarak antar tombol lebih rapat */
  }

  .btn-cta-white {
    font-size: 0.85rem; /* Teks tombol lebih kecil */
    padding: 0.7rem 1.25rem;
    letter-spacing: 0.3px;
  }
}
