.slider_img-box {
    opacity: 0;
    transform: translate3d(120px, 0, 0);
    animation: fadeInRight 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.slider_img-box img {
    width: 100%;
    display: block;
    will-change: transform, opacity;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(120px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-down-title {
    opacity: 0;
    animation: fadeInDown 2.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider_item-detail h1 {
    opacity: 0;
    animation: fadeInDown 2.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-circle {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
  
    width: 14px;
    height: 14px;
    border-radius: 50%;
  
    background: #0000dc;
    box-shadow:
      0 0 0 8px rgba(0, 0, 220, 0.15),
      0 0 20px rgba(0, 0, 220, 0.4);
  
    z-index: 9999;
  }

  .reveal-item {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}
  
.section-dots {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;

    background: rgba(255,255,255,.5);
    border: 2px solid #0000dc;

    cursor: pointer;
    transition: .3s ease;
}

.section-dot.active {
    background: #0000dc;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(0,0,220,.4);
}

@media (max-width: 991px) {
    .section-dots {
        display: none;
    }
}

.section-nav {
  position: fixed;
  top: 50%;
  right: 20px;

  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 999999;

  pointer-events: auto;
}

.section-nav button {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #7272f7;
  color: #fff;

  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transition:
    transform .25s ease,
    background .25s ease;
}

.section-nav button:hover {
  transform: scale(1.08);
}

.section-nav button:active {
  transform: scale(0.95);
}

.section-nav button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .section-nav {
    display: none;
  }
}

  .scroll-progress {
    position: fixed;
    left: 0;
    bottom: 0;
  
    width: 100%;
    height: 5px;
  
    background: rgba(0, 0, 0, 0.08);
  
    z-index: 99999;
  }
  
  .scroll-progress-fill {
    width: 0%;
    height: 100%;
  
    background: #0000dc;
  
    transition: width 0.1s linear;
  }

  #cursor-dot{
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: rgba(0,0,0,.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
    #cursor-dot{
        display: none;
    }
}

/* =========================
   Service Section
========================= */

.service_section .row{
  margin-top: 70px;
}

.service_img-box{
  text-align: center;

  opacity: 0;
  transform: translateY(40px);

  transition:
      opacity .7s ease,
      transform .7s ease;

  will-change: opacity, transform;
  backface-visibility: hidden;
}

.service_img-box.show{
  opacity: 1;
  transform: translateY(0);
}

.service_img-box img{
  display: block;
  width: 100%;
  max-width: 220px;   /* kecilkan gambar */
  height: auto;
  margin: 0 auto;
  object-fit: contain;

  transition: transform .35s ease;
}

.service_img-box:hover img{
  transform: scale(1.03);
}

.service_section .reveal-item{
  opacity: 0;
  transform: translateY(40px);

  transition:
      opacity .7s ease,
      transform .7s ease;

  will-change: opacity, transform;
  backface-visibility: hidden;
}

.service_section .reveal-item.show{
  opacity: 1;
  transform: translateY(0);
}

/* PC Only */
@media (min-width: 992px) {

  .navbar-nav .nav-item {
    opacity: 0;
    transform: translateX(100px);
    animation: navFadeRight 0.8s ease forwards;
  }

  .navbar-nav .nav-item:nth-child(1) {
    animation-delay: 0.2s;
  }

  .navbar-nav .nav-item:nth-child(2) {
    animation-delay: 0.4s;
  }

  .navbar-nav .nav-item:nth-child(3) {
    animation-delay: 0.6s;
  }

  .navbar-nav .nav-item:nth-child(4) {
    animation-delay: 0.8s;
  }

  .navbar-nav .nav-item:nth-child(5) {
    animation-delay: 1s;
  }

  .navbar-nav .nav-item:nth-child(6) {
    animation-delay: 1.2s;
  }

  @keyframes navFadeRight {
    from {
      opacity: 0;
      transform: translateX(100px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

}

.mission-list {
  margin: 0;
  padding-left: 20px;
  color: #fff;
}

.mission-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* =========================
   LOGO DEFAULT (SEMUA DEVICE)
========================= */

.header_container .logo-box{
  display: flex;
  align-items: center;
  gap: 15px;

  opacity: 1;
  transform: none;

  transition:
      top .4s ease,
      left .4s ease,
      transform .4s ease,
      width .4s ease,
      color .4s ease;
}

.header_container .logo-box img{
  width: 120px;
  height: auto;
  display: block;
  transition: width .4s ease;
}

.header_container .logo-box span{
  font-size: 32px;
  font-weight: 700;
  color: #0a0057;
  font-family: "Roboto", sans-serif;
  transition:
      color .4s ease,
      font-size .4s ease;
}

/* =========================
 KHUSUS DESKTOP
========================= */

/* =========================
   Desktop Logo Fixed
========================= */

@media (min-width: 992px){

  .header_container .logo-box{
      transition:
          transform .35s ease,
          opacity .35s ease,
          background-color .35s ease,
          border-radius .35s ease,
          box-shadow .35s ease;
  }

  .header_container .logo-box.fixed{
      position: fixed;
      top: 5px;
      left: 0;
      z-index: 9999;

      display: flex;
      align-items: center;
      gap: 12px;

      background: #ffffff;
      border-radius: 0 40px 120px 0;
      border-color: #000080;
      box-shadow: 0 20px 20px rgba(0,0,0,.15);

      overflow: visible;

      animation: logoSlideIn .45s cubic-bezier(.22,1,.36,1);

      transform: translateX(0);
      opacity: 1;
  }

  .header_container .logo-box.fixed img{
      width: 105px;
  }

  .header_container .logo-box.fixed span{
      color: #fff;
  }

  @keyframes logoSlideIn{
      from{
          transform: translateX(-110%);
          opacity: 0;
      }
      to{
          transform: translateX(0);
          opacity: 1;
      }
  }

}

/* =========================
 INFO SECTION
========================= */

.info_logo .logo-box img{
  width: 65px;
}

.info_logo .logo-box span{
  color: #fff;
}

/* =========================
 MOBILE & TABLET
========================= */

@media (max-width: 991px){

  .header_container .logo-box{
      gap: 10px;
  }

  .header_container .logo-box img{
      width: 90px;
  }

  .header_container .logo-box span{
      font-size: 24px;
  }

  /* Abaikan class .fixed di mobile */
  .header_container .logo-box.fixed{
      position: static;
      top: auto;
      left: auto;
      z-index: auto;
  }

}

/* android */

/* =========================
   MAIN LOGO
========================= */

.header_container .main-logo{
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity .6s ease, transform .6s ease;
}

.main-logo{
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-logo img{
  width: 120px;
  height: auto;
  display: block;
  transition: width .4s ease;
}

.main-logo span{
  font-size: 32px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: #0a0057;
  transition: color .4s ease, font-size .4s ease;
}

/* =========================
 AFTER SCROLL (Desktop)
========================= */

@media (min-width: 992px){

  .main-logo.fixed{
      position: fixed;
      top: 25px;
      left: 35px;
      z-index: 9999;
  }

  .main-logo.fixed img{
      width: 135px; /* ubah sesuai kebutuhan */
      padding-top: 5px;
  }

  .main-logo.fixed span{
      color: #fff;
  }

}

/* =========================
 INFO SECTION
========================= */

.info_logo .main-logo{
  margin-top: -10px;
  padding-top: 0;
}

.info_logo .main-logo img{
  width: 65px;
}

.info_logo .main-logo span{
  color: #fff;
}

/* FIX HERO OVERFLOW */

.hero_area,
.slider_section,
.header_container,
.slider_item-container,
.row{
    overflow:hidden;
}

/* ubah animasi awal */
.blu{
  opacity:0;
  transform:translateX(60px);
}

.slider_img-box{
  opacity:0;
  transform:translateX(40px);
}

.blu {
  position: relative;
  width: 100%;
  height: 50px;

  background: url("../images/blu.png") no-repeat;
  background-size: 100% 450px;
  background-position: top center;

  overflow: hidden;
  
}

.blu .nav-item {
  opacity: 0;
  transform: translateY(12px);
}

.slider_item-detail h1 {
  opacity: 0;
  transform: translateY(40px);
}

.slider_item-detail .d-flex > div {
  opacity: 0;
  transform: translateY(30px);
}

/* =========================
   ANIMASI
========================= */

.hero_area.animate .header_container .logo-box {
  animation: logoIn .8s ease forwards;
}

.hero_area.animate .blu {
  animation: bluSlideIn 1s ease-out forwards;
}

.hero_area.animate .blu .nav-item:nth-child(1) {
  animation: menuShow .4s ease forwards 1s;
}

.hero_area.animate .blu .nav-item:nth-child(2) {
  animation: menuShow .4s ease forwards 1.1s;
}

.hero_area.animate .blu .nav-item:nth-child(3) {
  animation: menuShow .4s ease forwards 1.2s;
}

.hero_area.animate .blu .nav-item:nth-child(4) {
  animation: menuShow .4s ease forwards 1.3s;
}

.hero_area.animate .blu .nav-item:nth-child(5) {
  animation: menuShow .4s ease forwards 1.4s;
}

.hero_area.animate .blu .nav-item:nth-child(6) {
  animation: menuShow .4s ease forwards 1.5s;
}

.hero_area.animate .slider_item-detail h1 {
  animation: titleShow .8s ease forwards 1.7s;
}

.hero_area.animate .slider_item-detail .d-flex > div:first-child {
  animation: buttonShow .8s ease forwards 2.2s;
}

.hero_area.animate .slider_item-detail .d-flex > div:last-child {
  animation: buttonShow .8s ease forwards 2.6s;
}

.hero_area.animate .slider_img-box {
  animation: truckShow 1s ease forwards 3.1s;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bluSlideIn {
  from {
    opacity: 0;
    transform: translateX(100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes menuShow {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleShow {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonShow {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes truckShow {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

 /* =========================
   HERO TRUCK FINAL
========================= */

.slider_img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: visible;
}

.slider_img-box img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;

  /* geser sedikit ke kiri agar lebih memenuhi hero */
  margin-left: -100px;
}

@media (max-width: 991px) {
  .slider_img-box img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.features {
  padding-top: 80px;
  padding-bottom: 20px;
  background: #fff;
}

.features .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ===== KIRI ===== */

.left-content {
  flex: 1;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 30px;
  line-height: 1.2;
}

.features-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* ===== KANAN ===== */

.right-content {
  flex: 1.1;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  padding-left: 18px;
  border-left: 4px solid #0A7CFF;
}

.feature-item h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .features .container {
      flex-direction: column;
      gap: 40px;
  }

  .section-title {
      font-size: 30px;
  }

  .right-content {
      gap: 20px;
  }

}

/* ===== ANIMATION ===== */
.section-title{
  position: relative;
  padding-left: 18px;
  font-size: 38px;
}

.section-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
  width: 5px;
  height: 75%;
  
  background: #6ec1ff;
}

.fade-seq{
  opacity:0;
  transform:translateY(-60px);

  transition:
  opacity .9s cubic-bezier(.22,1,.36,1),
  transform .9s cubic-bezier(.22,1,.36,1),
  filter .9s cubic-bezier(.22,1,.36,1);
}

.fade-seq.show{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

/* =========================
   HERO VALUES - DESKTOP ORIGINAL STYLE
========================= */

.hero-values{
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-values {
  overflow: hidden;
}

.hero-values img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateY(0);
  will-change: transform;
}

.hero-values::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.overlay{
  position:absolute;
  inset:0;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  padding:80px 8%;
  z-index:2;
  box-sizing:border-box;
}

/* =========================
 TOP TEXT
========================= */

.hero-content{
  max-width:700px;
  color:#fff;
}

.hero-content h2{
  font-size:52px;
  margin-bottom:20px;
  line-height:1.2;
}

.hero-content p{
  font-size:18px;
  line-height:1.8;
}

/* =========================
 BOTTOM SECTION (2 KOLOM)
========================= */

.bottom-info{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  padding: 30px 60px;

  background: #0b2e59;
  overflow: visible;
  z-index: 2;
}

/* Efek fade di bagian atas */
.bottom-info::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -70px;

  height: 70px;

  background: linear-gradient(
      to bottom,
      rgba(11, 46, 89, 0),
      rgba(11, 46, 89, 1)
  );

  pointer-events: none;
}

.bottom-info::before{
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;

  background: linear-gradient(
    to bottom,
    rgba(11, 46, 89, 0),
    rgba(11, 46, 89, 1)
  );

  pointer-events: none;
}

.info-box{
  position: relative;
  z-index: 1;

  width: 50%;
  color: #fff;
}

.label{
  display: inline-block;
  margin-bottom: 15px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #ffc107;
}

.info-box h3{
  margin: 0 0 15px;

  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;

  color: #fff;
}

.info-box p{
  margin: 0;

  font-size: 16px;
  line-height: 1.8;

  color: rgba(255,255,255,.85);
}

@media (max-width: 768px){
  .bottom-info{
    flex-direction: column;
    gap: 30px;
    padding: 60px 25px;
  }

  .info-box{
    width: 100%;
  }

  .info-box h3{
    font-size: 24px;
  }
}

/* =========================
 TABLET FIX
========================= */

@media (max-width: 992px){

  .overlay{
      padding:70px 6%;
  }

  .hero-content h2{
      font-size:42px;
  }

  .bottom-info{
      gap:30px;
  }

}

/* =========================
 MOBILE FIX (ANTI PECah + RAPIH)
========================= */

@media (max-width: 768px){

  .hero-values{
      height: 100vh; /* tetap full hero di mobile */
  }

  .hero-values img{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .overlay{
      padding: 40px 20px;
      justify-content: space-between;
  }

  .hero-content{
      max-width: 100%;
  }

  .hero-content h2{
      font-size: 28px;
      line-height: 1.2;
  }

  .hero-content p{
      font-size: 15px;
  }

  .bottom-info{
      flex-direction: column;
      gap: 25px;
      margin-top: 30px;
  }

  .info-box{
      width: 100%;
  }
}

/* =========================
 SMALL MOBILE (ANTI KEPEPET)
========================= */

@media (max-width:480px){

  .overlay{
      padding:45px 18px;
  }

  .hero-content h2{
      font-size:28px;
  }

  .hero-content p{
      font-size:15px;
  }

  .info-box h3{
      font-size:22px;
  }

  .info-box p{
      font-size:14px;
      line-height:1.7;
  }

  .label{
      font-size:12px;
      letter-spacing:1.5px;
  }

}

.section-heading{
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2{
  margin-bottom: 18px;
  font-size: 42px;
  color: #0b2e59;
}

.section-heading p{
  max-width: 1000px;
  margin: 0 auto;
  color: #666;
  line-height: 1.8;
  text-align: left;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item{
  overflow: hidden;
}

.gallery-item img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-item:hover img{
  transform: scale(1.05);
}

@media (max-width: 992px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }

  .section-heading h2{
    font-size: 32px;
  }
}

.vision_mission_section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ===== JUDUL ===== */
.vision_mission_heading {
  width: fit-content;
  margin: 0 auto 120px;
  border-left: 12px solid #78cffd;
  padding-left: 8px;

  font-size: 40px;
  font-weight: lighter;
  color: #0a0057;
  line-height: 1;

  opacity: 0;
  transform: translateY(-60px);
  transition: all .8s ease;
}

.vision_mission_heading.show{
  opacity: 1;
  transform: translateY(0);
}

/* ===== BOX ===== */

.vision_box{
  background:#0a1f5c;
  color:#fff;
  height:100%;
  padding:20px;
  border-radius:0;
  border-left:6px solid #78cffd;

  display:flex;
  gap:15px;
  align-items:flex-start;

  box-shadow:0 8px 20px rgba(10,31,92,.15);

  opacity:0;

  transition:
  opacity .8s ease,
  transform .8s ease,
  box-shadow .3s ease;
}


/* BOX VISI → kiri ke kanan */
.vision_box.left-box{
  transform:translateX(-120px);
}


/* BOX MISI → kanan ke kiri */
.vision_box.right-box{
  transform:translateX(120px);
}


/* Saat muncul */
.vision_box.show{
  opacity:1;
  transform:translateX(0);
}


/* Hover setelah muncul */
.vision_box.show:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 28px rgba(10,31,92,.25);
}


/* ===== ICON ===== */

.vision_icon{
  flex-shrink:0;
}

.vision_icon img{
  width:45px;
  height:45px;
  object-fit:contain;
}


/* ===== CONTENT ===== */

.vision_content{
  flex:1;
}


/* ===== TABLET ===== */

@media(max-width:991px){

  .vision_box{
    padding:18px;
    margin-bottom:20px;
  }

}


/* ===== MOBILE ===== */

@media(max-width:767px){

  .vision_box{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }

  .vision_icon{
    width:100%;
  }

  .vision_icon img{
    width:40px;
    height:40px;
  }

  /* Mobile animasi dari bawah */
  /* .vision_box.left-box,
  .vision_box.right-box{
    transform:translateY(50px);
  }

  .vision_box.show{
    transform:translateY(0);
  } */

}

/* ===== ICON ===== */

.vision_icon{
  flex-shrink:0;
}

.vision_icon img{
  width:45px;
  height:45px;
  object-fit:contain;
}


/* ===== RESPONSIVE ===== */

@media(max-width:991px){

  .vision_box{
    padding:18px;
    margin-bottom:20px;
  }

}


@media(max-width:767px){

  .vision_box{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }

  .vision_icon{
    width:100%;
  }

  .vision_icon img{
    width:40px;
    height:40px;
  }

  /* Mobile animasi lebih natural */
  /* .vision_box.left-box,
  .vision_box.right-box{
    transform:translateY(50px);
  } */

}

/* ===== CONTENT ===== */

.vision_content {
  flex:1;
}

/* semua isi awalnya disembunyikan */
.vision_content h5,
.vision_content p,
.vision_content li{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}

.vision_content h5.show,
.vision_content p.show,
.vision_content li.show{
  opacity:1;
  transform:translateY(0);
}

.vision_content h5 {
  font-size:30px;
  font-weight:600;
  margin:0 0 10px;
  color:#78cffd;
}

.vision_content p {
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#fff;
}

.vision_mission_list{
  margin:0;
  padding-left:18px;
}

.vision_mission_list li{
  font-size:13px;
  line-height:1.5;
  margin-bottom:6px;
  color:#fff;
}

.vision_mission_list li:last-child{
  margin-bottom:0;
}


/* ===== TABLET ===== */

@media (max-width:991px){

  .vision_box{
    padding:18px;
    margin-bottom:20px;
  }

  .vision_content h5{
    font-size:20px;
  }

}


/* ===== MOBILE ===== */

@media (max-width:767px){

  .vision_box{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }

  .vision_icon{
    width:100%;
  }

  .vision_icon img{
    width:40px;
    height:40px;
  }

  .vision_mission_list{
    text-align:left;
  }

  /* mobile animasi lebih pendek */
  .vision_box.left-box,
  .vision_box.right-box{
    transform:translateY(50px);
  }

}

/* ===== SECTION ===== */

.fcl-section{
  padding:30px 20px;
  background:#f6f6f6;
  font-family:Poppins,sans-serif;
  overflow:hidden;
}

.fcl-wrapper{
  display:flex;
  gap:40px;
  align-items:stretch;
}


/* ========================================= */
/* ANIMATION */
/* ========================================= */

.fcl-animate{
  opacity:0;
  visibility:hidden;
  transform:translateY(50px);
  transition:
      opacity .8s ease,
      transform .8s cubic-bezier(.22,1,.36,1),
      visibility 0s linear .8s;
  will-change:opacity,transform;
}

.fcl-animate.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  transition:
      opacity .8s ease,
      transform .8s cubic-bezier(.22,1,.36,1),
      visibility 0s;
}


/* ========================================= */
/* KIRI */
/* ========================================= */

.fcl-table-area{
  flex:1.5;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  align-items:stretch;
}


/* BOX TABEL */

.coverage-table{
  width:100%;
  height:100%;

  background:#fff;
  border:1px solid #dcdcdc;
  overflow:hidden;

  transform-origin:top left;
  box-shadow:0 4px 15px rgba(0,0,0,.05);
}


/* TABLE */

.coverage-table table{
  width:100%;
  height:100%;
  border-collapse:collapse;
  table-layout:fixed;
}


/* HEADER */

.coverage-table th{
  background:#002d95;
  color:#fff;

  padding:8px 6px;
  font-size:11px;
  font-weight:600;
  text-align:center;
}


/* BODY */

.coverage-table td{
  border:1px solid #ddd;

  padding:7px 6px;
  font-size:10px;
  text-align:center;
}


/* HEADER & BODY */

.coverage-table th,
.coverage-table td{
  word-break:break-word;
  vertical-align:middle;
}


/* ukuran kolom */

.coverage-table th:first-child,
.coverage-table td:first-child{
  width:12%;
}

.coverage-table th:nth-child(2),
.coverage-table td:nth-child(2){
  width:30%;
}

.coverage-table th:nth-child(3),
.coverage-table td:nth-child(3){
  width:22%;
}

.coverage-table th:last-child,
.coverage-table td:last-child{
  width:36%;
}


/* ========================================= */
/* KANAN */
/* ========================================= */

.fcl-info{
  flex:1;
  background:#fff;
  padding:40px;
  border-radius:25px 0 0 25px;

  position:relative;

  display:flex;
  flex-direction:column;
  justify-content:center;

  height:100%;
}


.fcl-info h1{
  font-size:60px;
  line-height:1.1;
  color:#0b2da0;

  margin-bottom:50px;
}

.fcl-info h1 span{
  display:block;
  color:#e22222;
}


.fcl-stats{
  display:flex;
  gap:40px;
}

.stat-item{
  display:flex;
  gap:12px;
  align-items:center;
}

.stat-item small{
  display:block;
}


/* ========================================= */
/* TABLET */
/* ========================================= */

@media(max-width:991px){

  .fcl-wrapper{
    flex-direction:column;
  }

  .fcl-table-area{
    grid-template-columns:1fr;
  }

  .fcl-info{
    height:auto;
  }

  .fcl-info h1{
    font-size:40px;
  }

}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:767px){

  .coverage-table th{
    font-size:9px;
    padding:6px;
  }

  .coverage-table td{
    font-size:8px;
    padding:5px;
  }

  .fcl-stats{
    flex-direction:column;
    gap:20px;
  }

}


/* ========================================= */
/* ROW ANIMATION */
/* ========================================= */

.coverage-table tbody tr{
  opacity:0;
  transform:translateY(12px);
  transition:opacity .45s ease, transform .45s ease;
}

.coverage-table tbody tr.show{
  opacity:1;
  transform:translateY(0);
}

/* ==================================================
SECTION
================================================== */

section.logistics{
  background:#f5f5f5;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  min-height:100vh;
  padding:60px 0 60px 40px;
}

/* ==================================================
CONTAINER
================================================== */

.logistics-container{
  width: min(1100px, 88vw); /* sebelumnya 1280px, 94vw */
  min-height: 560px;         /* sebelumnya 650px */

  margin-left: auto;

  position: relative;
  overflow: hidden;

  border-radius: 24px 0 0 24px;

  color: #fff;

  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

/* ==================================================
SLIDER
================================================== */

.logi-slider{

  display:flex;

  width:100%;

  height:100%;

  transition:transform .6s cubic-bezier(.65,0,.35,1);
}

.logi-slide{
  min-width:100%;
  width:100%;
  box-sizing:border-box;

  display:flex;
  flex-direction:column;
  justify-content:center;

  padding:70px;
  background:linear-gradient(135deg,#3b69ab,#74a4ea);
}

/* ==================================================
TITLE
================================================== */

.logistics h2{

  font-size:40px;

  font-weight:800;

  line-height:1.08;

  margin-bottom:20px;

  letter-spacing:-1px;

  max-width:800px;
}

.desc{

  max-width:900px;

  font-size:14px;

  line-height:1.8;

  color:#edf3ff;

  margin-bottom:40px;
}

/* ==================================================
SERVICE
================================================== */

.service{

  display:flex;

  align-items:flex-start;

  gap:20px;

  margin-bottom:24px;

  max-width:950px;
}

.service:last-child{

  margin-bottom:0;
}

.icon{

  width:68px;

  height:68px;

  border-radius:16px;

  display:flex;

  align-items:center;

  justify-content:center;

  flex-shrink:0;

  font-size:24px;

  background:linear-gradient(135deg,#005fd6,#1976ff);

  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.content{

  flex:1;
}

.content h3{

  font-size:21px;

  margin-bottom:8px;

  font-weight:700;
}

.content p{

  font-size:15px;

  line-height:1.7;

  color:#eef4ff;

  margin:0;
}

/* ==================================================
BUTTON
================================================== */

.logi-slider-controls{

  position:absolute;

  right:45px;

  bottom:40px;

  display:flex;

  gap:12px;

  z-index:10;
}

.logi-slider-controls button{

  width:54px;

  height:54px;

  border:none;

  border-radius:50%;

  cursor:pointer;

  color:#fff;

  font-size:22px;

  background:rgba(255,255,255,.16);

  backdrop-filter:blur(12px);

  transition:.3s;
}

.logi-slider-controls button:hover{

  background:#fff;

  color:#2f68b8;

  transform:scale(1.08);
}

/* ==================================================
LAPTOP
================================================== */

@media(max-width:1200px){

.logistics-container{

  min-height:600px;
}

.logi-slide{

  padding:55px;
}

.logistics h2{

  font-size:44px;
}

.desc{

  font-size:16px;
}

}

/* ==================================================
TABLET
================================================== */

@media(max-width:992px){

section.logistics{

  padding:50px 20px;

  justify-content:center;
}

.logistics-container{

  width:100%;

  border-radius:22px;

  min-height:auto;
}

.logi-slide{

  padding:45px 35px;
}

.logistics h2{

  font-size:34px;
}

.desc{

  font-size:15px;

  margin-bottom:28px;
}

.service{

  gap:15px;
}

.icon{

  width:58px;

  height:58px;

  font-size:20px;
}

.content h3{

  font-size:18px;
}

.content p{

  font-size:14px;
}

}

/* ==================================================
MOBILE
================================================== */

@media(max-width:768px){

section.logistics{

  padding:35px 16px;

  min-height:auto;
}

.logistics-container{

  width:100%;

  border-radius:20px;
}

.logi-slide{

  padding:30px 20px 90px;

  justify-content:flex-start;
}

.logistics h2{

  font-size:28px;

  line-height:1.25;

  margin-bottom:16px;

  letter-spacing:0;
}

.desc{

  font-size:14px;

  margin-bottom:22px;

  line-height:1.7;
}

/* CARD */

.service{

  background:rgba(255,255,255,.10);

  border:1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(6px);

  border-radius:16px;

  padding:14px;

  gap:14px;

  margin-bottom:14px;
}

.icon{

  width:48px;

  height:48px;

  border-radius:12px;

  font-size:18px;
}

.content h3{

  font-size:16px;

  margin-bottom:5px;
}

.content p{

  font-size:13px;

  line-height:1.55;
}

.logi-slider-controls{

  left:50%;

  right:auto;

  bottom:22px;

  transform:translateX(-50%);
}

.logi-slider-controls button{

  width:44px;

  height:44px;

  font-size:17px;
}

}

/* ==================================================
PHONE
================================================== */

@media(max-width:480px){

.logi-slide{

  padding:26px 18px 90px;
}

.logistics h2{

  font-size:24px;
}

.desc{

  font-size:13px;
}

.service{

  padding:12px;

  gap:12px;
}

.icon{

  width:42px;

  height:42px;

  font-size:17px;
}

.content h3{

  font-size:15px;
}

.content p{

  font-size:12px;
}

}

/* ==================================================
IPHONE SE
================================================== */

@media(max-width:390px){

.logistics h2{

  font-size:22px;
}

.desc{

  font-size:12px;
}

.content p{

  font-size:11.5px;
}

.icon{

  width:40px;

  height:40px;
}

.logi-slider-controls{

  bottom:16px;
}

}

.site-logo{
  position: fixed;
  top: 25px;
  left: 35px;
  z-index: 999999;

  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;

  background: rgb(255, 255, 255);
}

.site-logo img{
  width:100px;
}

.site-logo.show{
  display: block;
  animation: fadeLogo .35s ease;
}


@keyframes fadeLogo{
  from{
      opacity:0;
      transform:translateY(-10px);
  }
  to{
      opacity:1;
      transform:translateY(0);
  }
}

@media(max-width:768px){
  .site-logo{
      top:18px;
      left:18px;
  }

  .site-logo img{
      width:50px;
  }
}

.contact_section{
  padding:80px 0;
}

.contact_section .container{
  max-width:1200px;
}

.contact_section .row{
  --bs-gutter-x:16px;   /* jarak kiri-kanan */
  --bs-gutter-y:0;
  align-items:stretch;
}

.contact-map{
  width:100%;
  height:500px;
  overflow:hidden;
  border-radius:0;
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}



#backToTop{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: #0a0057;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 999999;
  cursor: pointer;
}

#backToTop:hover{
  background:#1f7ae0;
}

@media (max-width:992px){
  #backToTop{
      display:none;
  }
}


.service-section{
  padding:70px 0;
  background:#fff;
}

.container{
  max-width:1100px;
  width:90%;
  margin:auto;
}

.title-wrapper{
  display:flex;
  align-items:flex-start;
  gap:35px;
}

.line{
  width:6px;
  height:65px;
  background:#38B6FF;
  margin-top:8px;
  flex-shrink:0;
}

.title-content{
  max-width:760px;
}

.title-content h2{
  font-size:34px;
  font-weight:500;
  color:#173d7a;
  line-height:1.2;
  margin-bottom:18px;
}

.title-content p{
  font-size:15px;
  line-height:1.8;
  color:#666;
  margin-bottom:10px;
}

.gallery{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  display:block;
}

/* Tablet */
@media (max-width:992px){

  .title-wrapper{
      gap:25px;
  }

  .title-content h2{
      font-size:30px;
  }

  .gallery{
      grid-template-columns:repeat(2,1fr);
  }

}

/* Mobile */
@media (max-width:768px){

  .service-section{
      padding:50px 0;
  }

  .title-wrapper{
      flex-direction:column;
      gap:15px;
  }

  .line{
      width:60px;
      height:5px;
  }

  .title-content h2{
      font-size:26px;
  }

  .title-content p{
      font-size:14px;
  }

  .gallery{
      grid-template-columns:1fr;
  }

}