@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');


/* === Global Reset === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica', sans-serif;
  overflow-x: hidden; /* pindah ke body, bukan html */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica', sans-serif;
}

/** Navbar Layout **/ 
.navbar {
  width: 100%;
  padding: 25px 50px;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  z-index: 999;
  transition: all 0.3s ease;
}

/*  Navbar setelah di‑scroll  */
.navbar.scrolled {
  position: fixed;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/** Logo  **/
.nav-left {
  flex-shrink: 0;
  align-self: center;
}

.company-logo {
  height: 45px;
  object-fit: contain;
  display: block;
  margin-left: -10px;
}

/** Menu Tengah **/
.nav-center {
  display: flex;
  gap: 75px;
  align-items: center;
}

/*  Warna link default (navbar transparan)  */
.nav-center a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

/*  Hover / aktif saat navbar transparan  */
.nav-center a:hover,
.nav-center a.active {
  color: #ffffff;
}

/*  Underline  */
.nav-center a:hover::after,
.nav-center a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* ----------  ⬆️  PERBAIKAN: WARNA LINK SAAT SCROLL  ⬆️  ---------- */
.navbar.scrolled .nav-center a {
  color: #333333;              /* teks hitam/gelap */
}

.navbar.scrolled .nav-center a:hover,
.navbar.scrolled .nav-center a.active {
  color: #0047BB;              /* biru brand saat hover/aktif */
}

.navbar.scrolled .nav-center a:hover::after,
.navbar.scrolled .nav-center a.active::after {
  background: #0047BB;         /* underline ikut biru */
}


/* ----------  Tombol Kanan  ---------- */
.nav-right {
  display: flex;
  align-items: center;
}

.try-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 13px 31px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.2s ease;
}

.try-btn:hover {
  background-color: #0047BB;
  color: white;
}

/*  ⬆️  PERBAIKAN: WARNA TOMBOL SAAT SCROLL  ⬆️  */
.navbar.scrolled .try-btn {
  border-color: #0047BB;
  color: #0047BB;
}

.navbar.scrolled .try-btn:hover {
  background-color: #0047BB;
  color: #ffffff;
}


/* ----------  Hamburger  ---------- */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger img {
  width: 30px;
  height: 30px;
}

/* ----------  Mobile Menu (Popup)  ---------- */
.nav-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 75px;
  right: 10px;
  width: 90vw;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu li {
  width: 100%;
}

.nav-menu a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 4px;
}

.nav-menu a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.nav-menu.show {
  display: flex;
}

/* ===== DESKTOP DROPDOWN ===== */
.dropdown-menu {
position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(10px);
  gap: 50px 24px;        /* sama dengan: column-gap:50px; row-gap:24px; */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 32px 40px;    /* top‑bottom 32 px (was 28 px) */
  display: flex;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 998;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- LINK STYLE ---------- */
.dropdown-menu a {
  display: block;
  margin: 10px 0;            /* jarak vertikal nyaman */
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  text-decoration: none;      /* Hapus underline bawaan */
  position: relative;
  transition: color 0.2s ease;
}

/* Garis tipis MENGGANTIKAN underline */
.dropdown-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dropdown-menu a:hover {
  color: #0047BB;
}
.dropdown-menu a:hover::after {
  opacity: 1;                 /* Muncul garis saat hover */
}

/* ---------- SECTION TITLE ---------- */
.dropdown-title,
.mobile-group-title {
  font-weight: 700;
  font-size: 14px;
  margin: 12px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;                /* default hitam */
}

/* ---------- NAVBAR TRANSPARAN ---------- */
.navbar:not(.scrolled) .dropdown-menu {
  background: rgba(0, 0, 0, 0.5);
}
.navbar:not(.scrolled) .dropdown-menu a {
  color: #fff;
}
.navbar:not(.scrolled) .dropdown-menu a::after {
  background: #fff;
}
.navbar:not(.scrolled) .dropdown-title {
  color: #fff;                /* judul putih juga */
}

/* ========================================================= */
/* ================  MOBILE  –  NAV & DROPDOWN  ============ */
/* ========================================================= */
@media screen and (max-width: 768px) {

  /* Sembunyikan menu tengah & kanan, tampilkan hamburger */
  .nav-center,
  .nav-right {
    display: none !important;
  }
  .hamburger {
    display: block;
    position: fixed;          /* selalu ikut viewport */
    top: 18px;
    right: 20px;
    z-index: 1001;
  }

  /* Navbar lebih ramping */
  .navbar {
    padding: 12px 20px;
  }
  .company-logo { height: 35px; }

  /* ---------- PANEL NAV-MENU (slide‐down) ---------- */

  #nav-menu ul li > a {            /* semua <a> langsung di dalam <li> */
  color: #000 !important;        /* hitam */
}
#nav-menu ul li > a:hover {
  color: #000 !important;        /* tetap hitam saat hover */
  background: rgba(0,0,0,0.05);  /* efek sentuh ringan, opsional */
}

  #nav-menu {
    position: fixed;
    top: 70px;                /* di bawah header */
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: #ffffff;         /* warna dasar panel */
    color: #000000;
    transform: translateY(-120%);
    transition: transform 0.3s ease-in-out;
  }
  #nav-menu.show {
    transform: translateY(0); /* muncul saat class .show ditambah JS */
  }

  /* ---------- TRIGGER & SUBMENU ---------- */
  .dropdown-mobile .mobile-trigger {
    display: block;
    padding: 14px 20px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    user-select: none;
  }

  .dropdown-mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .dropdown-mobile.active .dropdown-mobile-menu {
    display: flex;
  }

  .mobile-group-title {
    padding: 10px 20px 4px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    opacity: 0.8;
  }

  .dropdown-mobile-menu a {
    padding: 12px 30px;
    color: #000000;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .dropdown-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
  }
}


/* ---------- HOME SECTION ---------- */
#home.content-section {
  min-height: 100vh;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: 
    linear-gradient(to bottom right, rgba(0, 0, 0, 0.8)),
    url('image/HOME.png'); /* ganti dengan path image kamu */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Poppins', sans-serif;
}

.text-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 100px 20px 60px;
  text-align: center;
  color: white;

  /* Tambahan untuk memastikan teks tetap center */
  margin: 0 auto;
  transform: translateY(40px);
}

/* Kontainer teks */
.text-content {
  max-width: 850px;
  color: #002f6c; /* warna utama brand */
  margin: 0 auto;
}

/* Subtitle kecil */
.section-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Judul utama */
.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Paragraf deskripsi */
.section-text {
  font-size: 19px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Tombol CTA */
.button-header {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button-header-btn {
  padding: 18px 36px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button-header-btn--primary {
  background: #002f6c;
  color: #ffffff;
  border: 2px solid transparent;
}

.button-header-btn--primary:hover {
  background: #ffffff;
  color: #002f6c;
  border: 2px solid #002f6c;
}

/* Partner Section */
.our-partners {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.our-partners-tittle {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #000000;
  text-transform: uppercase;
}

.partners-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
}

.partner-track {
  display: inline-flex;
  gap: 20px;
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-item {
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Optional: scale down specific logos */
.partner-item img[src*="mcdonald"] {
  transform: scale(0.85);
}

/* Responsive */
@media (max-width: 600px) {
  .partner-item {
    width: 120px;
    height: 60px;
  }
  .our-partners-tittle {
    font-size: 22px;
  }
}


/* === CSS UNTUK BAGIAN LAYANAN === */
.section-layanan {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.judul-layanan {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.deskripsi-layanan {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.kategori-layanan {
  margin-bottom: 60px;
}

.subjudul-layanan {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.grid-layanan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
  align-items: stretch;
}

.kartu-layanan {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kartu-layanan img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.kartu-layanan .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 47, 108, 0.85); /* biru navy gelap transparan */
  color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px; /* supaya tinggi konsisten */
  backdrop-filter: blur(2px); /* opsional: efek kaca */
}

.kartu-layanan .overlay h4 {
  font-size: 16px;
  font-weight: 700; 
  margin: 0;
  text-align: left;
}

.kartu-layanan .overlay .arrow {
   font-size: 22px;
  font-weight: 900; /* lebih tebal */
  line-height: 1;
  margin-left: 8px; /* beri sedikit jarak dari teks */
}

.kartu-layanan:hover {
  transform: translateY(-5px);
}

/* Tambahan layanan sebagai satu blok animasi */
.tambahan-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease;
}

.tambahan-wrapper.show {
  max-height: 2000px;
}

.tambahan-layanan {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
  padding-bottom: 20px;
  align-items: stretch;
}

.tombol-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #0047BB;
  color: #0047BB;
  background-color: transparent;
  padding: 13px 31px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.2s ease;
  margin: 30px auto 0;
  cursor: pointer;
}

.tombol-toggle .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.tombol-toggle.active .arrow-icon {
  transform: rotate(180deg);
}

/* Rotasi ikon panah */
.arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.tombol-toggle.active .arrow-icon {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .grid-layanan,
  .tambahan-layanan {
    grid-template-columns: repeat(2, 1fr);
  }
}


/**POP UP PRODUCT DAN JASA**/
.layanan-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.layanan-modal.show {
  display: flex;
}
.layanan-modal-content {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  cursor: pointer;
}
.modal-items {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.item-box {
  background-color: #f1f5f9;
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 30%;
}
.item-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.modal-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-outline {
  border: 1px solid #333;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
}
.btn-solid {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Section -3 WHY CHOOSE US + BOOTSTRAP */

.image-wrapper {
    max-width: 500px;
    margin-top: 30px;
    position: relative;
    z-index: 0;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-wrapper.small-size {
    width: 500px;          
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 0;
    overflow: visible;     /* pastikan gambar tidak terpotong */
}

.image-wrapper.small-size img {
    width: 100%;
    height: auto;
    display: block;
}

.bg-gry{
    background-color: #f9fafb;
}
.feature-item{
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

.feature-item::before{
    content: "";
    position: absolute;
    top: -142px;
    left: 0;
    right: 0;
    margin: auto;
    width: 95%;
    height: 70%;
    background-color: #ebf1fd;
    border-radius: 50%;
}

.feature-item .ft-icon{position: relative;}

.feature-item .ft-icon i {
    color: #0047BB;
    background-color: #fff;
    height: 97px;
    width: 100px;
    line-height: 97px;
    border-radius: 50%;
    font-size: 31px;
    transition: .5s;
}

.finix-text h6 {
    color: #0047BB;
    font-size: 18px;
    font-weight: 400;
}
.finix-text h2 {
    font-size: 37px;
    font-weight: 400;
}
.finix-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #606060;
    font-weight: 400;
    font-size: 16px;
}

.feature-item:hover{
    transform: translateY(-10px);
}
.feature-item:hover .ft-icon i {
    background-color:#0047BB ;
    color: #fff;
}

.top-4{
    margin-top: -30px;
}
.finix-text{
    position: relative;
}
.play-animation-btn {
    height: 90px;
    width: 90px;
    display: inline-block;
    text-align: center;
    line-height: 90px;
    font-size: 55px;
    color: #0047BB;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 262px;
    bottom: 55px;
}
.play-animation-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 90px;
    width: 90px;
    background-color: #0047BB;
    border-radius:50% ;
    animation: playbtn 1.6s ease-out infinite;
}
@keyframes playbtn{
    0%,30%{
        transform: scale(0);
        opacity: 1;
    }
    
    50%{
        transform: scale(1.5);
        opacity: .7;
    }
    100%{
        transform: scale(2);
        opacity: 0;
    }
}

/**PETA**/
.gc-section {
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.gc-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
}

.gc-image img {
  max-width: 100%;
  width: 550px;
  height: auto;
}

.gc-text {
  flex: 1;
  padding-left: 10px;
}

.gc-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #2b2b2b;
}

.gc-text .highlight {
  font-weight: 700;
}

.gc-text p {
  font-size: 20px;
  line-height: 1.6;
  color: #3c3c3c;
  max-width: 500px;
}

.gc-text strong {
  color: #222;
}

    .container {
      width: min(1200px, 90%);
      margin-inline: auto;
      padding-block: 4rem 6rem;
    }

/**WHY CHOOSE US**/
.custom-icon-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
}

.custom-icon-container::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 0;
}

.custom-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.custom-icon-wrapper img {
  max-width: 60%;
  height: auto;
  transition: filter 0.3s ease;
}

/* Hover effect */
.feature-item:hover .custom-icon-wrapper {
  background-color: #0056d2;
}

.feature-item:hover .custom-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.why-choose-us-section {
    background: #f7f8f9;
    padding: 10px 0;
  }

  .why-choose-us-section .container {
    max-width: 1320px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
  padding: 0 30px; /* atau 30px kalau mau lebih luas */
  }
  

  .why-choose-us-section .row {
    display: flex;
    width: 100%;
    gap: 60px;
    flex-wrap: wrap;
  }

  .left-content {
    flex: 1;
    max-width: 600px;
  }

  .left-content h6 {
    font-size: 1rem;
    color: #0056d2;
    margin-bottom: 10px;
  }

  .left-content h2 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 20px;
  }

  .left-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 5px;
    max-width: 90%;
  }

  .image-wrapper img {
    max-width: 80%;
    margin-left: 30px;
    height: auto;
  }

  
  .right-cards {
    flex: 1;
    max-width: 680px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .feature-item {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
  }

  .feature-item .ft-icon {
    width: 120px;
    height: 120px;
    background-color: #e9f0fe;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #0056d2;
  }

  .feature-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
  }

  .feature-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
  }

  @media (max-width: 992px) {
    .container {
      flex-direction: column;
      align-items: center;
    }
    .row {
      flex-direction: column;
      align-items: center;
    }
    .card-grid {
      grid-template-columns: 1fr;
    }
  }

  /*FAQ*/
.faqx-section {
  width: 100%;
  margin-top: 100px;
}

.faqx-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.faqx-col {
  padding: 60px;
}

.faqx-info {
  color: black;
  width: 41.6667%;
  display: flex;
  align-items: center;
}

.faqx-info-content {
  max-width: 450px;
}

.faqx-info-content h6 {
  color: #0047BB;
  font-size: 18px;
  font-weight: 400;
}

.faqx-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.faqx-subtitle {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 40px;
}

.faqx-accordion {
  width: 58.3333%;
}

.faqx-list {
  max-width: 800px;
}

.faqx-item {
  border-bottom: 1px solid #666;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.faqx-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqx-question p {
  font-size: 20px;
  font-weight: 600;
  color: black;
}

.faqx-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faqx-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
  color: black;
}

.faqx-answer p {
  font-size: 17px;
  line-height: 26px;
  padding-top: 10px;
}

.faqx-item.active .faqx-answer {
  max-height: 300px;
}

.faqx-item.active .faqx-toggle-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .faqx-info {
    width: 100%;
    text-align: center;
  }

  .faqx-accordion {
    width: 100%;
  }

  .faqx-info-content {
    margin: 0 auto;
  }

  .faqx-title {
    font-size: 32px;
  }

  .faqx-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .faqx-col {
    padding: 30px;
  }

  .faqx-title {
    font-size: 28px;
  }

  .faqx-subtitle {
    font-size: 15px;
  }

  .faqx-question p {
    font-size: 18px;
  }

  .faqx-answer p {
    font-size: 16px;
  }
}

/**OUR GALERI**/
.our-gallery-title {
  font-size: 28px;            /* seperti semula */
  font-weight: 700;
  color: #002f6c;             /* warna desain lama */
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;         /* pastikan rata tengah */
}

.our-gallery {
  padding: 60px 20px 80px;   /* +20 px extra di bawah */
  background: #fff;
}

.gallery-wrapper {
  position: relative;
  overflow: hidden;
}

.gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge lama */
  scroll-snap-type: x mandatory;
}

.gallery-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.gallery-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 350px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Tombol panah */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* MOBILE MODE */
@media (max-width: 600px) {
  .gallery-container {
    gap: 12px;
    padding: 0 10px;
  }

  .gallery-item {
    width: 300px;
    height: 400px;
  }

  .scroll-btn {
    padding: 8px 10px;
    font-size: 14px;
  }
}


/**FOOTER**/
/* ================= FOOTER STYLE ================= */
.footer {
  background-color: #04144f;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start; /* changed from space-between */
}

.footer-logo{
  flex-shrink: 0;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-left: -10px;
}


.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-left: 40px; /* spacing from brand */
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0 12px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.5;
}

.footer-brand h4 {
  margin-top: 20px;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin: 10px 0 20px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-certification {
  background-color: #04144f;
  color: #d0d0d0;
  padding: 40px 30px 20px;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.cert-divider {
  border: none;
  border-top: 1px solid #1c2d5c;
  margin-bottom: 30px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cert-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cert-text {
  font-size: 16px;
  max-width: 600px;
  line-height: 1.5;
}

.cert-text strong {
  color: #ffffff;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.cert-logos img {
  height: 45px;
  max-width: 100px;
  object-fit: contain;
}

.footer-bottom-text {
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col,
  .footer-group {
    flex: 1 1 100%;
    flex-direction: column;
    margin-left: 0;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .cert-logos img {
    height: 35px;
    max-width: 80px;
  }

  .cert-text {
    font-size: 14px;
  }

  .footer-certification {
    padding: 30px 20px 15px;
  }

  .footer-bottom-text {
    font-size: 12px;
  }
}

/* --- Floating WhatsApp FAB --- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
}

.wa-fab a {
  display: flex;
  align-items: center;
  gap: 14px;                          /* jarak avatar ↔ label */
  background: #0b2e67;                /* biru navy */
  color: #fff;
  font: 600 16px/1 'Inter', sans-serif;
  border-radius: 50px;
  padding: 10px 24px 10px 12px;       /* ruang atas‑bawah & kanan‑kiri */
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s;
}

.wa-fab a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,.25);
}

/* avatar lingkaran + cincin hijau */
.wa-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b4d900;          /* outer ring */
  box-shadow: 0 0 0 2px #fff inset;   /* inner white ring */
}

/* responsif: sedikit lebih kecil di handset sempit */
@media (max-width: 420px){
  .wa-fab a{
    font-size: 14px;
    padding: 8px 20px 8px 10px;
  }
  .wa-avatar{
    width: 42px; height: 42px;
  }
}


