@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;
}

/* ===== 1. Layout dasar ===== */
.gondola-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 .3s ease;
}
/* Navbar setelah di‑scroll */
.gondola-navbar.gondola-scrolled{
  position:fixed;
  background:#fff;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.gondola-nav-container{
  max-width:1600px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== 2. Logo ===== */
.gondola-nav-left{flex-shrink:0; align-self:center;}
.gondola-company-logo{
  height:45px;
  object-fit:contain;
  display:block;
  margin-left:-10px;
}

/* ===== 3. Menu tengah ===== */
.gondola-nav-center{
  display:flex;
  gap:75px;
  align-items:center;
}
.gondola-nav-center a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:color .3s ease;
  position:relative;
  display:inline-block;
  white-space:nowrap;
}
/* hover / active pada navbar transparan */
.gondola-nav-center a:hover,
.gondola-nav-center a.active{color:#fff;}
.gondola-nav-center a:hover::after,
.gondola-nav-center a.active::after{
  content:"";
  position:absolute;
  bottom:-8px; left:0;
  width:100%; height:2px;
  background:#fff;
}
/* link saat navbar scrolled */
.gondola-navbar.gondola-scrolled .gondola-nav-center a{color:#333;}
.gondola-navbar.gondola-scrolled .gondola-nav-center a:hover,
.gondola-navbar.gondola-scrolled .gondola-nav-center a.active{color:#0047BB;}
.gondola-navbar.gondola-scrolled .gondola-nav-center a:hover::after,
.gondola-navbar.gondola-scrolled .gondola-nav-center a.active::after{background:#0047BB;}

/* ===== 4. Tombol kanan ===== */
.gondola-nav-right{display:flex; align-items:center;}
.gondola-try-btn{
  display:flex; align-items:center; justify-content:center;
  gap:6px;
  border:1px solid #fff;
  color:#fff;
  padding:13px 31px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700; font-size:17px;
  transition:all .2s ease;
}
.gondola-try-btn:hover{background:#0047BB; color:#fff;}
.gondola-navbar.gondola-scrolled .gondola-try-btn{border-color:#0047BB; color:#0047BB;}
.gondola-navbar.gondola-scrolled .gondola-try-btn:hover{background:#0047BB; color:#fff;}

/* ===== 5. Hamburger ===== */
.gondola-hamburger{display:none; cursor:pointer;}
.gondola-hamburger img{width:30px; height:30px;}

/* ===== 6. Mobile panel ===== */
.gondola-nav-menu{
  display:none;
  list-style:none;
  position:absolute;
  top:75px; right:10px;
  width:90vw; max-width:300px;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(10px);
  border-radius:8px;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  padding:10px 0;
  flex-direction:column;
  z-index:1000;
  transition:all .3s ease;
}
.gondola-nav-menu ul{margin:0; padding:0; list-style:none;}
.gondola-nav-menu li{width:100%;}
.gondola-nav-menu a{
  display:block; width:100%;
  padding:14px 20px;
  font-size:16px; font-weight:700;
  color:#fff;
  text-decoration:none;
  transition:background .2s,color .2s;
  border-radius:4px;
}
.gondola-nav-menu a:hover{background:rgba(255,255,255,.25); color:#fff;}
/* panel terlihat */
#gondola-nav-menu.show, /* fallback jika class ditempel di id */
.gondola-nav-menu.show{display:flex;}

/* ===== 7. Desktop dropdown ===== */
.gondola-dropdown-menu{
  position:absolute;
  left:50%; top:100%;
  transform:translateX(-50%) translateY(10px);
  gap:50px 24px;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  border-radius:12px;
  padding:32px 40px;
  display:flex;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
  visibility:hidden; opacity:0;
  transition:all .3s ease;
  z-index:998;
  white-space:nowrap;
}
.gondola-dropdown:hover .gondola-dropdown-menu{
  visibility:visible; opacity:1;
  transform:translateX(-50%) translateY(0);
}
/* link dropdown */
.gondola-dropdown-menu a{
  display:block; margin:10px 0;
  font-weight:500; line-height:1.4;
  color:#333; text-decoration:none;
  position:relative; transition:color .2s;
}
.gondola-dropdown-menu a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px;
  height:1px; background:currentColor;
  opacity:0; transition:opacity .2s;
}
.gondola-dropdown-menu a:hover{color:#0047BB;}
.gondola-dropdown-menu a:hover::after{opacity:1;}
/* judul kolom */
.gondola-dropdown-title,
.gondola-mobile-group-title{
  font-weight:700; font-size:14px;
  margin:12px 0 6px;
  text-transform:uppercase; letter-spacing:.5px;
  color:#333;
}

/* dropdown di navbar transparan */
.gondola-navbar:not(.gondola-scrolled) .gondola-dropdown-menu{background:rgba(0,0,0,.5);}
.gondola-navbar:not(.gondola-scrolled) .gondola-dropdown-menu a{color:#fff;}
.gondola-navbar:not(.gondola-scrolled) .gondola-dropdown-menu a::after{background:#fff;}
.gondola-navbar:not(.gondola-scrolled) .gondola-dropdown-title{color:#fff;}

/* ===== 8. Mobile & breakpoint ===== */
@media(max-width:768px){
  /* sembunyikan menu tengah & kanan, tampilkan hamburger */
  .gondola-nav-center, .gondola-nav-right{display:none!important;}
  .gondola-hamburger{
    display:block;
    position:fixed; top:18px; right:20px; z-index:1001;
  }
  /* navbar lebih ramping */
  .gondola-navbar{padding:12px 20px;}
  .gondola-company-logo{height:35px;}

  /* panel slide‑down */
  #nav-menu{
    position:fixed;
    top:70px; left:0; right:0;
    z-index:1000;
    max-height:calc(100vh - 70px);
    overflow-y:auto;
    background:#fff; color:#000;
    transform:translateY(-120%);
    transition:transform .3s ease-in-out;
  }
  #nav-menu.show{transform:translateY(0);}
  #nav-menu ul li>a{color:#000!important;}
  #nav-menu ul li>a:hover{color:#000!important; background:rgba(0,0,0,.05);}

  /* trigger & submenu */
  .gondola-dropdown-mobile .gondola-mobile-trigger{
    display:block;
    padding:14px 20px;
    font-weight:700; color:#000;
    cursor:pointer; user-select:none;
  }
  .gondola-dropdown-mobile-menu{
    display:none; flex-direction:column;
    background:#fff;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .gondola-dropdown-mobile.active .gondola-dropdown-mobile-menu{display:flex;}

  .gondola-mobile-group-title{
    padding:10px 20px 4px;
    font-size:16px; font-weight:600;
    color:#000; opacity:.8;
  }
  .gondola-dropdown-mobile-menu a{
    padding:12px 30px;
    color:#000; text-decoration:none;
    transition:background .2s,color .2s;
  }
  .gondola-dropdown-mobile-menu a:hover{
    background:rgba(255,255,255,.06); color:#fff;
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  width: 100%;
  background: url('/image/GONDOLA.png') no-repeat center center/cover; /* Ganti bg.jpg dengan background kamu */
  display: flex;
  justify-content: flex-end; /* Konten ke kanan */
  align-items: center;
  padding: 0 5%;
  position: relative;
}

/* Overlay opsional */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* sedikit gelap biar teks terlihat jelas */
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 500px;
  text-align: left;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-button {
  background-color: #0047BB;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
   font-size: 1.1rem; /* Tambahan agar teks tombol ikut besar */
  transition: background 0.3s;
}

.hero-button:hover {
  background-color: rgb(5, 5, 130);
}

/**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;
  }
}

/**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;
  }
}

/* --- 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;
  }
}


