      /* ================= LOADER WRAPPER ================= */
      #page-loader {
          position: fixed;
          top: 0; 
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(255,255,255,0.9);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 999999;
          opacity: 0;
          visibility: hidden;
          transition: 0.4s ease;
      }

/* aktif */
#page-loader.active {
  opacity: 1;
  visibility: visible;
}

/* ================= YOUR LOADER CSS ================= */

:root{
    --loader-width: 70px;
    --loader-height: 70px;
    --loader-color-primary: #1a73e8;
    --loader-color-secondary: #eee;
    --line-width: 3px;
    --animation-duration: 2s;
    --loader-initial-scale: 0.1;
}
.loader,.loader:before,.loader:after{
    box-sizing: border-box;
    flex-grow: 0;
    flex-shrink: 0;
}

@keyframes circle-loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader.simple-circle {
    transform-origin: center center;
    border: var(--line-width, 4px) solid var(--loader-color-secondary, #fff);
    border-right-color: var(--loader-color-primary, #00f);
    width: var(--loader-width, 100px);
    height: var(--loader-height, 100px);
    border-radius: 50%;
    animation: circle-loader var(--animation-duration, 1s) infinite ease-out;
}



/*======================================================================================*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f7f9fc;
    color: #1a1a1a;

}

.container {
    max-width: 1500px;
    margin: auto;
    padding: 0 20px;
    background-image: url('background-hero.png');
    background-size: cover;        /* biar full menutupi area */
    background-position: center;   /* fokus di tengah */
    background-repeat: no-repeat;  /* jangan diulang */
}


/* NAVBAR */
    /*.navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 50px;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .navbar .logo {
        font-size: 22px;
        font-weight: bold;
        color: #1a73e8;
    }

    .navbar .menu a {
        margin-left: 25px;
        text-decoration: none;
        color: #1a1a1a;
        font-size: 16px;
    }

    .navbar .actions button {
        padding: 10px 20px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }

    .btn-outline {
        background: #eef1f6;
        font-family: Poppins;
    }

    .btn-primary {
        background: #1a73e8;
        color: white;
        margin-left: 10px;
        font-family: Poppins;

    }

    
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .hamburger span {
        width: 26px;
        height: 3px;
        background: #333;
        border-radius: 5px;
    }



@media (max-width: 768px) {

    .hamburger {
        display: flex;

       
        position: absolute;
        right: 20px;
        top: 22px;
    }

    .menu,
    .actions {
        display: none;
        width: 100%;
        transition: max-height 0.4s ease; 
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
       
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        position: sticky;
        top: 0;
        z-index: 20;
    }

    .menu.active,
    .actions.active {
        display: block;
        flex-direction: column;
        gap: 15px;
        text-align: center;
        background: white;
        padding: 15px 0;
        width: 100%;
        margin-top: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .menu.active a {
        display: block;          
        padding: 10px;
        margin-right: 20px;
        font-size: 18px;
        color: #1a1a1a;
        text-decoration: none;
    }
    .menu.active a:hover{
        background: #2353ff;
        color: white;
        border-radius: 100px;
    }
}*/



/*=============================== NAVBAR ===============================*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #1a73e8;
}

.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 16px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  font-size: 16px;
  /*font-weight: 500;*/
  color: #1a1a1a;
  cursor: pointer;
  font-family: Poppins;
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Saat dropdown open → panah ke atas */
.dropdown.open .arrow {
  transform: rotate(180deg);
}


/* DROPDOWN CONTENT */
.dropdown-content {
  position: fixed;              /* penting! */
  top: 90px;
  /* bikin rata tengah layar */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1120px;
  max-width: calc(100vw - 40px); /* biar aman di layar kecil */
  background: white;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  padding: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 
  opacity 0.3s ease,
  transform 0.3s ease;
}

/* Saat terbuka */
.dropdown.open .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.menu-card {
  background: #f5f7fd;
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-head img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.menu-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.menu-card:hover {
  background: #eef3ff;
  transform: translateY(-3px);
}

.menu-card img {
  width: 42px;
  height: 42px;
}

.menu-title {
  font-weight: 600;
  font-size: 16px;
}

.menu-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* BUTTONS */
.actions {
  display: flex;
  gap: 10px;
}

.btn-outline,
.btn-primary {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: #eef1f6;
}

.btn-primary {
  background: #1a73e8;
  color: white;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 5px;
}




/*==========================================================*/
/* RESPONSIVE */
/*==========================================================*/
@media (max-width: 768px) {

  /* NAVBAR WRAPPER */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 16px;
}

/* MENU & ACTIONS - hidden by default */
.menu,
.actions {
  display: none;
  width: 100%;
  margin-top: 12px;
}

/* Saat hamburger di klik */
.menu.active,
.actions.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;     /* ganti dari left ke center */
  align-items: center;
}

/* Hamburger */
.hamburger {
  display: flex;
  position: absolute;
  right: 18px;
  top: 20px;
}

/* Dropdown wrapper */
.dropdown {
  width: 100%;
}

/* Tombol produk */
.dropbtn {
  width: 100%;
  display: flex;
  justify-content: center;   /* tengah horizontal */
  align-items: center;
  gap: 8px;
  text-align: center;
  font-family: Poppins;

}

/* DROPDOWN CONTENT (Mobile Mode) */
.dropdown-content {
  position: relative !important;
  inset: unset !important;
  margin-left: 150px;
  width: 100%;
  background: #f5f7fd;
  box-shadow: none;
  border-radius: 14px;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;     
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 
  max-height 0.35s ease,
  opacity 0.25s ease;
}

/* Saat terbuka */
.dropdown.open .dropdown-content {
  margin-top: 12px;
  padding: 12px;

  max-height: 300px;      /* batas tinggi supaya bisa scroll */
  overflow-y: auto;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Scroll custom (optional, biar cantik) */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #d0d7e7;
  border-radius: 6px;
}

/* Grid jadi 1 kolom */
.dropdown-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
}

/* Card lebih ringkas di mobile */
.menu-card {
  padding: 14px;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;  
}

.menu-title {
  font-size: 15px;
}

.menu-desc {
  font-size: 13px;
}

}


/*=======================HEADLINE===============================*/

.headline{
    margin: 0;
    background-image: url('blue-bg.png');
    background-size: cover;        /* biar full menutupi area */
    background-position: center;   /* fokus di tengah */
    background-repeat: no-repeat;  /* jangan diulang */
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow-x: hidden;
    font-family: Poppins;
}

/* BACKGROUND GRID */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: url("https://i.ibb.co/3dK2S6L/grid.png");
    background-size: 260px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 80px 80px 50px;
    position: relative;
    z-index: 2;
}

.left {
    width: 50%;
}

.left h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25;
}

.blue {
    color: #00e0ff;
}

.blue-box {
    background: #00e0ff;
    color: #00353b;
    padding: 4px 14px;
    border-radius: 6px;
}

.desc {
    margin-top: 5px;
    font-size: 16.5px;
    opacity: .9;
    width: 88%;
}

.cta {
    margin-top: 15px;
    background: #ffb22d;
    color: black;
    font-weight: 600;
    padding: 16px 28px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.verified {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 13px;
    opacity: .8;
}
.verified img {
    width: 22px;
    height: 22px;
    opacity: .8;
}

/* RIGHT SIDE */
.right {
    width: 50%;
    display: flex;
    gap: 26px;
}

.col {
    width: 33%;
    height: 440px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, white 18%, white 82%, transparent 100%);
}

.mover {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 0px;
    color: black;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    overflow: hidden; /* penting */
}

.img-wrap {
    position: relative;
}

.img-wrap img {
    width: 100%;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Fade Transparan */
.img-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%; /* atur seberapa panjang fade */
    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,1) 100%
    );
}


.card h4{
    font-size: 18px;
    width: 100%;
}
.card p {
    margin-top: -17px;
    padding: 0 10px 0 10px;
    font-size: 13px;
}

/* STATISTICS */
.stats {
    display: flex;
    justify-content: center;
    gap: 160px;
    padding: 40px 0 90px;
    z-index: 2;
    position: relative;
}

.stats h2 {
    font-size: 42px;
    color: #00e0ff;
    margin: 0;
}

.stats p {
    margin: 5px 0 0;
    opacity: .8;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
    padding:35px 0;
    background: #18191b;
    color: white;
    position: relative;
}

.stats .item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stats .item h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.stats .item p {
    margin: 0;
    font-size: 19px;
    opacity: .8;
}

/* Garis vertikal */
.stats .item:nth-child(2) {
    position: relative;
    padding: 0 50px;
}

.stats .item:nth-child(2)::before,
.stats .item:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 55px;
    background: #00e0ff;
    opacity: .8;
}

.stats .item:nth-child(2)::before {
    left: 0;
}

.stats .item:nth-child(2)::after {
    right: 0;
}



/* =============================== */
/*         MOBILE VERSION          */
/* =============================== */
@media (max-width: 600px) {

    /* HAPUS KOLOM KE-3 AGAR TIDAK ADA RUANG KOSONG */
    .right .col:nth-child(3) {
        display: none !important;
    }

    body {
        background-size: cover;
        padding: 0;
        overflow-x: hidden;
    }

    /* =============================== */
    /*             HERO                */
    /* =============================== */
    .hero {
        flex-direction: column;
        padding: 40px 20px 20px;
        gap: 35px;
    }

    /* LEFT TEXT */
    .left {
        width: 100%;
        text-align: center;
    }

    .left h1 {
        font-size: 32px;
        line-height: 1.28;
        text-align: center;
    }

    .blue-box {
        padding: 4px 10px;
        font-size: 20px;
        display: inline-block;
        margin-top: 4px;
    }

    .desc {
        font-size: 14px;
        margin-top: 12px;
        width: 100%;
        line-height: 1.55;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* CTA Button */
    .cta {
        font-size: 15px;
        width: 100%;
        justify-content: center;
        padding: 14px 0;
        border-radius: 10px;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Verified */
    .verified {
        font-size: 12px;
    }



    /* =============================== */
    /*      RIGHT SIDE (CARDS)         */
    /* =============================== */

    .right {
        width: 100%;
        display: flex;
        gap: 14px;
        justify-content: center;
    }

    /* 2 KOLOM AJA DI MOBILE */
    .col {
        width: calc(50% - 10px) !important;
        height: 330px;
        mask-image: linear-gradient(to bottom,
            transparent 0%,
            white 18%,
            white 82%,
            transparent 100%);
    }

    .card {
        border-radius: 10px;
    }

    .card h4 {
        font-size: 15px;
        margin-top: 6px;
    }

    .card p {
        font-size: 12px;
        margin-top: -8px;
        padding-bottom: 12px;
    }

    .img-wrap::after {
        height: 35%;
    }

    .card img {
        height: auto;
    }



    /* =============================== */
    /*         STATISTIC SECTION       */
    /* =============================== */
    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
        margin-top: 20px;
        gap: 8px;
    }

    .stats .item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative !important;
        padding: 0 20px !important; /* biar garis tidak terlalu mepet */
    }

    .stats .item h2 {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .stats .item p {
        font-size: 11px;
        line-height: 1.3;
    }

    
/* Garis di item 1 dan item 2 (bukan item 3) */
.stats .item:nth-child(1)::after,
.stats .item:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 0px;       /* sama seperti desktop */
    height: 0px;       /*versi mobile (lebih pendek biar estetik) */
    background: #00e0ff;
    opacity: .8;
}

}



/*============================ LOGO MITRA LAIN========================*/
/* Wrapper */
.trust-section {
    padding: 60px 10px;
    text-align: center;
    background: #f3f6fb;
}

.trust-slider {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}



/* Track yg bergerak */
.trust-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: trustLoop 55s linear infinite;
}
/* Infinite smooth loop */
@keyframes trustLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.trust-track-left {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: trustLoopLeft 55s linear infinite;
}

@keyframes trustLoopLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}


/* Card */
.trust-card {
    background: white;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    transition: 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
}

/* Logo */
.trust-card img {
    max-height: 40px;
    object-fit: contain;
}


/* --- Badge Biru Atas --- */ 

.trust-badge { 
    display: inline-block; 
    text-align: center;
    background: #e8f1ff; 
    color: #2d6cdf; 
    padding: 6px 20px; 
    border-radius: 25px; 
    font-size: 14px; 
    font-weight: 600; 
    margin-bottom:-14px; 
} 

/* --- Judul --- */ 
.trust-title { 
    font-size: 28px; 
    text-align: center;
    font-weight: 800; 
    color: #222; 
    margin-bottom: 40px;
    line-height: 1.3; 
}

/* ====================================================== */
/*                    RESPONSIVE AREA                     */
/* ====================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .trust-section {
        padding: 50px 10px;
    }

    .trust-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .trust-badge {
        font-size: 13px;
        padding: 6px 18px;
    }

    .trust-card {
        min-width: 130px;
        padding: 16px;
    }

    .trust-card img {
        max-height: 36px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .trust-title {
        font-size: 20px;
        line-height: 1.35;
    }

    .trust-badge {
        font-size: 12px;
        padding: 5px 16px;
        margin-bottom: -10px;
    }

    .trust-card {
        min-width: 110px;
        padding: 14px;
        border-radius: 12px;
    }

    .trust-card img {
        max-height: 32px;
    }

    .trust-slider {
        padding: 6px 0;
    }

    /* Percepat animasi biar di mobile terasa smooth */
    .trust-track,
    .trust-track-left {
        animation-duration: 45s;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .trust-section {
        padding: 40px 10px;
    }

    .trust-title {
        font-size: 18px;
        margin-bottom: 26px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .trust-card {
        min-width: 95px;
        padding: 12px;
        border-radius: 10px;
    }

    .trust-card img {
        max-height: 28px;
    }

    .trust-track,
    .trust-track-left {
        gap: 14px;
        animation-duration: 38s;
    }
}



/*==============================================================================*/
/* tentang mitra beraffiliate */
/*==============================================================================*/

.feature-section {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column; /* ⬅ ini yang penting */
    align-items: center;
    font-family: Poppins, sans-serif;
    margin-bottom: 100px;
    background: linear-gradient(to bottom, #f3f6fb 0%, #f7f9fc 100%);

}


.feature-container {
    display: flex;
    gap: 50px;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; /* supaya center */
}


.feature-menu {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.feature-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* agar pas di tengah */
}

.feature-header h2 {
    font-size: 28px;
    color: #111;
    font-weight: 700;
    margin-bottom: -10px;
}

.feature-header p {
    color: #666;
    font-size: 17px;
}

.feature-item {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 15px 20px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05); /* shadow tipis */

}

.feature-item:hover {
    border: 1px solid #007bff;
}

.feature-item.active {
    background: #eef5ff;
    border: 1px solid #007bff;
    padding-bottom: 8px;
}

.feature-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.feature-item.active .arrow {
    transform: rotate(180deg);
}

.item-desc {
    font-size: 15px;
    color: #555;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    margin-bottom: -0px;
    margin-top: 10px;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
}

.feature-item.active .item-desc {
    max-height: 300px; /* angka bebas, penting untuk animasi */
    opacity: 1;
    padding-top: 8px;
}


.feature-image {
    width: 50%;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s ease;
    opacity: 1;
}
.feature-image img.fade {
    opacity: 0;
}



/* Responsive */
@media(max-width: 768px) {

    .feature-section{
        padding-top: 10px;
    }
    .feature-container {
        flex-direction: column;
    }
    .feature-menu{
       margin-top: -10px; /* hilangkan jeda kosong sisa wrap layout */
       width: 100%;
   }

   .feature-image {
    width: 100%;
}
.feature-header {
    margin-bottom: 30px; /* sebelumnya 60px */
}

.feature-header h2 {
    font-size: 24px;
}

.feature-header p {
    width: 90%;
    font-size: 15px;
}

.feature-container {
    gap: 25px;
}
}


/* ============================================================== */
/*  ALUR PLATFORM SECTION          */
/* ============================================================== */

.alur-section {
    padding: -80px 10%;
    padding-bottom: 50px;
    text-align: center;
    font-family: Poppins, sans-serif;
    background: linear-gradient(to bottom, #f7f9fc 0%,  #f3f6fb 100%);
}

.alur-header h2 {
    font-size: 32px;
    color: #111;
    font-weight: 700;
    margin-bottom: 10px;
}

.alur-header p {
    color: #666;
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 40px;
}

.alur-content img {
    width: 100%;
    max-width: 950px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 12px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .alur-section{
        padding-bottom: 50px;
    }


    .alur-header h2 {
        font-size: 26px;
        margin-top: -30px;
    }

    .alur-header p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .alur-content img {
        max-width: 100%;
        border-radius: 10px;
    }
}


/*===========================================================*/
/* Wrapper */
/*===========================================================*/

.infra-section {
    padding: 80px 20px;
    text-align: center;
    background-image: url('blue-bg.png');
    background-size: cover;        /* biar full menutupi area */
    background-position: center;   /* fokus di tengah */
    background-repeat: no-repeat;  /* jangan diulang */
}

/* Title */
.infra-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

/* Subtitle */
.infra-subtitle {
    font-size: 16px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

/* Cards wrapper */
.infra-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 25px;
    max-width: 980px;
    margin: auto;
}

/* Single Card */
.infra-card {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

.infra-card img {
    width: 70px;
    margin-bottom: 1px;
}

.infra-card h3 {
    margin-top: 1px;
    font-size: 18px;
    font-weight: 700;
    color: #1a2c52;
    margin-bottom: 8px;
}

.infra-card p {
    color: #666;
    font-size: 14px;
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .infra-section {
        padding: 60px 18px;
    }

    .infra-title {
        font-size: 28px;
    }

    .infra-subtitle {
        font-size: 15px;
        max-width: 90%;
        margin-bottom: 32px;
    }

    .infra-card {
        padding: 26px 20px;
    }

    .infra-card img {
        width: 60px;
    }

    .infra-card h3 {
        font-size: 17px;
    }

    .infra-card p {
        font-size: 14px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .infra-title {
        font-size: 24px;
    }

    .infra-subtitle {
        font-size: 14px;
    }

    .infra-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .infra-card {
        padding: 22px 18px;
    }

    .infra-card img {
        width: 55px;
    }

    .infra-card h3 {
        font-size: 16px;
    }

    .infra-card p {
        font-size: 13px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .infra-section {
        padding: 50px 16px;
    }

    .infra-title {
        font-size: 22px;
    }

    .infra-subtitle {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .infra-cards {
        grid-template-columns: 1fr; /* Jadi 1 kolom */
        gap: 18px;
        max-width: 340px;
    }

    .infra-card {
        padding: 20px 16px;
    }

    .infra-card img {
        width: 50px;
    }

    .infra-card h3 {
        font-size: 15px;
    }

    .infra-card p {
        font-size: 13px;
    }
}



/* ==================================================================*/
/*     CARD SECTION       */
/* ================================================================== */

.course-section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.course-judul {
    font-size: 32px;
    font-weight: 800;

    margin-bottom: 10px;
    text-align: center;
}

/* Subtitle */
.course-subjudul {
    font-size: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}


.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

/* CARD */
.course-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: .25s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.10);
}

.course-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.course-info {
    padding: 18px;
}

.course-category {
    display: inline-block;
    background: #e6f1ff;
    color: #1d6ae0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.course-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e2a4a;
    margin-bottom: 14px;
    line-height: 1.45;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.course-rating {
    background: #fff1c8;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}


/* BUTTON VIEW ALL */
.view-more-btn {
    text-align: center;
    margin-top: 28px;
}

.btn-view {
    background: #1d6ae0;
    color: white;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: .25s ease;
    text-decoration: none;
}

.btn-view:hover {
    background: #0c57c7;
}

@media (max-width: 600px) {

    .course-section {
        padding: 20px 16px;
    }

    .course-judul {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .course-subjudul {
        font-size: 14px;
        margin-bottom: 28px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .course-grid {
        grid-template-columns: 1fr; /* Semua card 1 kolom */
        gap: 18px;
    }

    .course-card {
        border-radius: 12px;
    }

    .course-thumb {
        height: 130px;  /* supaya tidak kepanjangan di HP */
    }

    .course-info {
        padding: 14px;
    }

    .course-category {
        font-size: 11px;
        padding: 4px 10px;
    }

    .course-title {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .course-meta {
        font-size: 12px;
    }

    .course-rating {
        padding: 2px 8px;
        font-size: 12px;
    }

    .btn-view {
        font-size: 14px;
        padding: 10px 22px;
    }
}



/*===============================================================================*/
/*testimoni*/
/*===============================================================================*/                                      
.testi-section {
    padding: 60px 0;
    text-align: center;
    color: white;
    background-image: url('blue-bg.png');
    background-size: cover;        /* biar full menutupi area */
    background-position: center;   /* fokus di tengah */
    background-repeat: no-repeat;  /* jangan diulang */
}

.title {
    font-size: 42px;
    font-weight: 700;
}

.subtitle {
    margin-top: -10px;
    font-size: 18px;
    opacity: 0.8;
}

.testi-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.testi-track {
    display: flex;
    width: max-content;
    gap: 22px;
}

.testi-cards {
    display: flex;
    gap: 22px;
}

.testi-card {
    background: #fff;
    color: #000;
    width: 300px;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.testi-card h3 {
    margin-bottom: -12px;
    text-align: left;
}
.testi-card p {
    text-align: left;
    font-size: 15px;

    font-weight: 500;
}

.user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* ANIMATION */

/* ROW 1 — kiri ➝ kanan */
.track-leftt {
    animation: slideLeft 20s linear infinite;
}

@keyframes slideLeft {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* ROW 2 — kanan ➝ kiri */
.track-right {
    animation: slideRight 20s linear infinite;
}

@keyframes slideRight {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ================================
   RESPONSIVE TESTIMONI MOBILE
   ================================ */
   @media (max-width: 768px) {

    .testi-section {
        padding: 40px 0;
    }

    .title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 20px;
    }

    .subtitle {
        font-size: 14px;
        padding: 0 20px;
        margin-top: 0;
    }

    .testi-wrapper {
        overflow: hidden;         /* penting: cegah horizontal scroll */
        width: 100%;
    }

    .testi-track {
        gap: 14px;
    }

    .testi-cards {
        gap: 14px;
    }

    .testi-card {
        width: 240px;             /* kecilkan card biar muat layar */
        padding: 14px;
        border-radius: 14px;
    }

    .testi-card h3 {
        font-size: 16px;
    }

    .testi-card p {
        font-size: 13px;
        line-height: 1.35;
    }

    .user img {
        width: 34px;
        height: 34px;
    }

    /* Pastikan track animasi pas di mobile */
    @keyframes slideLeft {
        from { transform: translateX(-60%); }
        to   { transform: translateX(0); }
    }

    @keyframes slideRight {
        from { transform: translateX(0); }
        to   { transform: translateX(-60%); }
    }
}





/*================================================================*/
/*FAQ*/ /* SECTION */
/*================================================================*/
.faq-section-2col {
    max-width: 1100px;
    margin: auto;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    color: #111;
}

.faq-titlee{
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    margin-bottom: 60px;
}


.intro-btn:hover {
    background: #f7f7f7;
}

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Items */
.faq-item {
    background: #fff;
    padding: 24px 28px;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    transition: .3s ease;
}

.faq-item.active {
    border-color: #ddd;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: none;
    background: #f1f1f1;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease;
}

.faq-item.active .faq-toggle {
    background: #ececec;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.5;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0; /* <-- tambahkan ini */
    transition:
    max-height .35s ease,
    opacity .35s ease,
    margin-top .35s ease;
}

.faq-item.active .faq-answer {
 opacity: 1;
 margin-top: 18px;
}

/* Responsive */
@media (max-width: 900px) {

    .faq-section-2col{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .intro-btn {
        margin-top: 20px;
    }

    .faq-titlee{
        margin-bottom: 30px;
    }
}


/*===============================================================*/
/* CTA SECTION */
/*===============================================================*/
.cta-section {
    background-image: url('bg-cta.png');
    background-size: cover;        /* biar full menutupi area */
    background-position: center;   /* fokus di tengah */
    background-repeat: no-repeat;  /* jangan diulang */
    padding: 50px 5%;
    border-radius: 0;
    color: white;
    font-family: Poppins, sans-serif;
    margin-top: 50px;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    max-width: 90%;
    line-height: 1.6;
}

.cta-btn {
    background: white;
    color: #06727f;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #e8f8fa;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-text p {
        max-width: 100%;
    }

    .cta-btn {
        margin-top: 10px;
        width: 100%;
        max-width: 250px;
    }
}



/*===========================================================*/
/*footer*/
/*===========================================================*/
.footer {
    background: #062246; /* navy dark */
    color: #fff;
    padding: 70px 20px 30px;
    font-family: "Poppins", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #cbd5e1;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Logo + text */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 50px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
}

/* Social Icons */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s ease;
}

.footer-social a:hover {
    background: #ffffff33;
}

/* Bottom Copyright */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

