/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

html, body{ max-width:100%; overflow-x:hidden; }
img{ max-width:100%; height:auto; }

/* =========================
   NAVBAR
========================= */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  padding:1px 30px;
  color:#404040;
  box-shadow:0 5px 10px rgba(0,0,0,.1);
  position: relative; /* penting utk nav-links absolute di mobile */
}

.logo img{
  height:100px;
  width:100px;
  position:relative;
  display:inline-block;
}

.nav-links{
  display:flex;
  list-style:none !important;
  gap:30px;
  align-items:center;
  margin:0;
  padding:0;
}

.nav-links li{
  list-style:none !important;
  margin:0;
}

.nav-links a{
  text-decoration:none;
  color:gray;
  font-size:17px;
  transition:.3s;
  position:relative;
}

.nav-links a:hover{ color:blue; }

/* active (kalau dipakai) */
.nav-links li a.navbaractive{ color:blue; }

/* =========================
   DROPDOWN LANGUAGE
========================= */
.dropdown{
  position:relative;
  flex:0 0 auto;
}

.lang-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  background:#fff;
  border:1px solid blue;
  border-radius:8px;
  cursor:pointer;
  white-space:nowrap;
}

.lang-btn img{
  border:1px solid blue;
  width:40px;
  height:auto;
}

.lang-btn span{
  color:blue;
  font-weight:bold;
  font-size:14px;
}

.dropdown-content{
  position:absolute;
  top:calc(100% + 8px);
  right:0;

  width:100%;
  min-width:100%;
  box-sizing:border-box;

  margin:0;
  padding:8px;
  list-style:none;

  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-radius:12px;
  box-shadow:0 12px 25px rgba(0,0,0,.18);
  z-index:9999;

  display:none;
}

.dropdown.open .dropdown-content{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.dropdown-content li{
  border-bottom:none;
  margin:0;
  padding:0;
}

.dropdown-content li a{
  display:flex;
  align-items:center;
  gap:10px;

  width:100%;
  box-sizing:border-box;
  padding:10px 12px;

  text-decoration:none;
  color:#333;
  font-size:14px;

  border-radius:10px;
  border:1px solid transparent;
  background:transparent;
  transition:.2s;
}

.dropdown-content li a img{
  width:40px;
  height:auto;
  border:1px solid #000;
}

.dropdown-content li a span{ flex:1; }

.dropdown-content li:last-child{ border-bottom:none; }

.dropdown-content a:hover{
  background:#D0DCFD;
  color:blue;
  border-color:blue;
}

.dropdown:hover .lang-btn{ background:#e4e6eb; }

/* =========================
   SEARCHBOX (desktop default)
========================= */
.searchbox{
  display:flex;
  align-items:center;
  border:1px solid #000;
  border-radius:20px;
  overflow:hidden;
  padding:5px;
}

.searchbox input{
  border:none;
  outline:none;
  padding:10px 12px;
  width:200px;
  height:30px;
  font-size:13px;
}

.searchbox button{
  border:none;
  background:transparent;
  cursor:pointer;
  padding:6px 10px;
}

/* =========================
   FLOATING ACTION
========================= */
.floating-action{
  position:fixed;
  bottom:10px;
  right:-15px;
  z-index:9999;
  cursor:pointer;
  transition:transform .3s ease-in-out;
}

.floating-action img{
  width:110px;
  height:auto;
  display:block;
}

.floating-action:hover{
  transform:scale(1.1);
  filter:drop-shadow(0 4px 6px rgba(0,0,0,.3));
}

/* =========================
   SERVICE CARD (JAKARTA)
========================= */
.service-card{
  max-width:980px;
  margin:24px auto;
  background:#fff;
  border-radius:14px;
  padding:18px 18px 20px;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
}

.service-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.service-title{
  margin:0;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.2px;
}

.city-badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:#dff1ff;
  color:#1b6aa6;
}

.service-body{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.service-info{
  flex:1;
  min-width:280px;
}

.row{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  padding:10px 0;
}

.label{
  font-weight:700;
  color:#222;
}

.value{
  color:#555;
  line-height:1.5;
}

.service-map{
  flex:1;
  min-width:320px;
  border-radius:12px;
  overflow:hidden;
  background:#f3f3f3;
}

.service-map iframe{
  width:100%;
  height:230px;
  border:0;
  display:block;
}

/* =========================
   SERVICE CARD (CIKARANG)
========================= */
.service-card-cikarang{
  max-width:980px;
  margin:24px auto;
  background:#fff;
  border-radius:14px;
  padding:18px 18px 20px;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
}

.service-head-cikarang{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.service-title-cikarang{
  margin:0;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
}

.city-badge-cikarang{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:#dff1ff;
  color:#1b6aa6;
}

.service-body-cikarang{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.service-info-cikarang{
  flex:1;
  min-width:280px;
}

.row-cikarang{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  padding:10px 0;
}

.label-cikarang{
  font-weight:700;
  color:#222;
}

.value-cikarang{
  color:#555;
  line-height:1.5;
}

.service-map-cikarang{
  flex:1;
  min-width:320px;
  border-radius:12px;
  overflow:hidden;
  background:#f3f3f3;
}

.service-map-cikarang iframe{
  width:100%;
  height:230px;
  border:0;
  display:block;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background:#020B40;
  color:#fff;
  padding:48px 0 20px;
}

.footer-wrap{
  width:90%;
  max-width:1300px;
  margin:0 auto;
  gap:36px;
  grid-template-columns:1.4fr 1.2fr 0.7fr 1fr;
  align-items:start;
  display:grid;
}

.footer-title{
  font-size:22px;
  margin:0 0 14px;
  font-weight:800;
  color:#fff;
}

.footer-text{
  margin:0;
  color:#fff;
  font-size:14px;
}

.footer-text.small{
  font-size:13px;
  color:#fff;
  font-weight:500;
}

.footer-col{ display:grid; }

.footer-col .footer-list{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.footer-list{
  list-style:none;
  display:grid;
  gap:10px;
  text-decoration:none;
}

.footer-list li a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
  font-size:14px;
}

.footer-list a:hover{
  color:blue;
  transition:.1s ease-in-out;
}

.footer-list li a.active{ color:blue; }

.newsletter-box{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:20px;
  box-shadow:0 12px 15px rgba(0,0,0,.25);
}

.newsletter-form input{
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.12);
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  outline:none;
  margin:20px 0;
}

.newsletter-form button{
  border:1px solid #4361EE;
  background:#4361EE;
  border-radius:10px;
  padding:10px 16px;
  cursor:pointer;
  font-weight:700;
}

.newsletter-form button:hover{ filter:brightness(1.08); }

.footer-social{
  margin-top:16px;
  display:flex;
  gap:15px;
  align-items:center;
}

.facebook,.youtube,.tiktok,.linkedin{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  text-decoration:none;
  transition:transform .25s ease, filter .25s ease;
}

.instagram{
  height:40px;
  width:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#fff;
  transition:.3s ease-in-out;
  background: radial-gradient(#feda75,#fa7e1e,#962fbf,#4f5bd5);
}

.facebook:hover,
.youtube:hover,
.instagram:hover,
.tiktok:hover,
.linkedin:hover{
  transform:translateY(-5px);
}

.footer-bottom{
  width:90%;
  max-width:1300px;
  margin:22px auto 0;
  text-align:center;
}

.footer-divider{
  background:#fff;
  height:1px;
  width:1250px;
  display:grid;
  margin-bottom:20px;
  opacity:70%;
}

/* =========================
   HAMBURGER
========================= */
.nav-toggle{ display:none; }

.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:3px;
  background:#333;
  border-radius:3px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 820px){
  .service-body{ flex-direction:column; }
  .service-map iframe{ height:260px; }
  .row{ grid-template-columns:110px 1fr; }

  .service-body-cikarang{ flex-direction:column; }
  .service-map-cikarang iframe{ height:260px; }
  .row-cikarang{ grid-template-columns:110px 1fr; }
}

@media (max-width: 1100px){
  .footer-wrap{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 650px){
  .footer-wrap{ grid-template-columns:1fr; gap:32px; }
}

/* ===== MOBILE MENU + SEARCH DI HAMBURGER ===== */
@media (max-width: 768px){

  .navbar{ padding:8px 14px; }

  .hamburger{
    display:flex !important;
    margin-left:auto;
    z-index:2000;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    right:0;

    background:#fff;
    flex-direction:column;
    gap:16px;
    padding:16px;

    display:none;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    z-index:1999;
  }

  .nav-toggle:checked ~ .nav-links{ display:flex; }

  /* SEARCH kalau sudah dipindah ke dalam nav-links */
  .nav-links .searchbox{
    width:100%;
    border-radius:14px;
    padding:6px 10px;
  }

  .nav-links .searchbox input{
    width:100%;
    height:36px;
    font-size:14px;
  }

  .nav-links .dropdown{ width:100%; }
  .nav-links .lang-btn{
    width:100%;
    justify-content:space-between;
  }

  .dropdown-content{
    width:100%;
    min-width:100%;
    right:0;
  }

  /* divider footer jangan fixed */
  .footer-divider{ width:100%; }

  /* newsletter rapihin (jarak dan tombol) */
  .newsletter-box{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .newsletter-form{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .newsletter-form input{
    width:100%;
    margin:0 !important;
  }

  .newsletter-form button{
    width:110px;
  }

  .floating-action{
  position: fixed !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 999999 !important;  /* naikin biar ga ketutup footer */
}

/* pastiin gambar WA tampil normal */
.floating-action img{
  display: block !important;
  width: 70px;        /* bebas, bisa 80/90 */
  height: auto !important;
}

/* kalau footer/elemen bawah "nahan" klik/ketiban */
.site-footer,
.footer-bottom{
  position: relative;
  z-index: 1;
}
}
