
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(180deg, #06284e 0%, #063c6e 100%);
  color: white;
  overflow-x: hidden;
}

/* ======================================== NAVBAR ======================================== */
/* --- Desktop Style (tetap seperti punyamu) --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 6%;
  background: white;
  color: #06284e;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-btns {
  display: flex;
  gap: 10px;
}

.nav-btns-mobile {
  display: none; /* 🔹 disembunyikan di desktop */
}

.logo {
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #06284e;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #007b9f;
}

.btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid #007b9f;
  color: #007b9f;
}

.btn-outline:hover {
  background: #007b9f;
  color: white;
}

.btn-primary {
  background: #007b9f;
  color: white;
}

.btn-primary:hover {
  background: #005f7a;
}

/* --- Tambahan untuk Mobile Responsive --- */
/* --- Animasi Burger --- */
.menu-toggle {
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: none;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 200; /* supaya di atas menu */
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #007b9f;
  border-radius: 3px;
  transition: all 0.4s ease;
  transform-origin: center;
}

/* Saat burger aktif jadi X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- Responsive dengan efek smooth menu --- */

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }

  /* NAV MENU RESPONSIVE (mengapung di atas konten) */
  nav {
    position: absolute;       /* 🔹 agar mengapung */
    top: 65px;                /* 🔹 sesuaikan tinggi header */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    overflow: hidden;

    /* animasi smooth */
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    z-index: 150; /* pastikan di atas konten */
  }

  nav.active {
    max-height: 500px; /* cukup besar untuk isi menu */
    opacity: 1;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    text-align: left;
    width: 100%;
    gap: 0;
  }

  nav ul li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btns {
    display: none;
  }

  .nav-btns-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

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



/* ===== HERO SECTION UNTUK DEKSTOP ===== */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 120px 0% 0 8%;
  min-height: 78vh;
  color: white;
  overflow: hidden;
}

.hero-text {
  z-index: 2;
  max-width: 550px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #d9e6f0;
}

/* ===== GAMBAR UTAMA ===== */
.hero img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 550px;
  height: auto;
  object-fit: contain;
  margin: 0;
  padding: 0;
  z-index: 2;
}

/* ===== POPUP SVG / CARD ===== */
.popup {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #06284e;
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-weight: 600;
  font-size: 15px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

/* Efek melayang lembut */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.popup svg {
  width: 24px;
  height: 24px;
  fill: #007b9f;
}

.popup-companies {
  top: 100px;
  right: 80px;
  z-index: 4;
}

.popup-lms {
  bottom: 10px;
  right: 350px;
  z-index: 4;
}

.popup-dashboard {
  top: 260px;
  right: 340px;
  width: 350px;
  background: none;
  box-shadow: none;
  z-index: 1;
}

.popup-dashboard img {
  width: 100%;
  border-radius: 10px;
}
/* ===== END HERO SECTION UNTUK DEKSTOP ===== */




/* ===== HERO SECTION MOBILE ===== */
/* ===== HERO MOBILE (default hidden) ===== */
.hero-mobile { display: none; }

.hero-mobile-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
}

.hero-mobile-text {
  text-align: left;
  margin-bottom: 30px;
}

.hero-mobile-text h1 {
  font-size: 29px;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}

.hero-mobile-text p {
  font-size: 15px;
  color: #d9e6f0;
  margin-bottom: 18px;
  text-align: center;
}

/* ===== MEDIA WRAPPER ===== */
.hero-mobile-media {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 130px 0 -40px 0;
}

/* ===== GAMBAR ===== */
.hero-mobile-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  z-index: 1;              /* Gambar di belakang popup */
  position: relative;
}

/* ===== POPUP MOBILE ===== */
.popup-mobile {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #06284e;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  animation: float 4s ease-in-out infinite;
  z-index: 10;             /* popup di atas gambar */
}

.popup-mobile svg {
  width: 18px;
  height: 18px;
  fill: #007b9f;
}

.popup-mobile img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* Efek melayang */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== POSISI POPUP ===== */
.popup-dashboard-mobile {
  top: -110%;
  right: 48%;
  bottom: 0%;
  width: 55%;
  background: none;
  box-shadow: none;
  z-index: 0;
}

.popup-companies-mobile {
  top: -35%;
  right: 0%;
  font-size: 10px;
}

.popup-lms-mobile {
  bottom: 10%;
  right: 40%;
  font-size: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { display: none !important; } /* hide desktop */
  .hero-mobile { display: block !important; } /* show mobile */
}





/* =======================PENJELASAN SIAP BERKARIR=========================   */
.feature-section {
/*  background-color: #f9fbfd;*/
background-image: url("bg1.png"); /* ganti dengan path gambarmu */
background-size: cover;         /* biar gambar menyesuaikan ukuran layar */
background-position: left;    /* posisi gambar di tengah */
background-repeat: no-repeat;   /* biar nggak diulang */
padding: 80px 150px 0 150px;
}

.feature-header {
  text-align: center;
  margin-bottom: 60px;
}

.feature-header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.feature-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}


.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
/*  margin-bottom: 100px;*/
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;

}

.feature-item img {
  width: 30%;
  border-radius: 12px;
/*  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);*/
}

.feature-text {
  flex: 1;
}

.feature-text h2 {
  font-size: 1.4rem;
  margin-bottom: 3px;
  font-weight: 600;
  color: #1e293b;
}

.feature-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-btn {
  display: inline-block;
  text-decoration: none;
  color: #008080;
  border: 1.5px solid #008080;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-btn:hover {
  background: #008080;
  color: white;
}

/*========================mobile PENJELASAN SIAP BERKARIR========================================*/
@media (max-width: 768px) {
  .feature-section {
    padding: 50px 20px; /* biar lebih pas di layar kecil */
  }

  .feature-header {
    margin-bottom: 40px;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
  }

  /* ubah urutan: gambar dulu baru teks */
  .feature-item img {
    order: 1;
    width: 76%;
    margin-bottom: 0px;
  }
  .feature-header h1 {
    font-size: 22px;
  }

  .feature-text {
    order: 2;
  }

  /* hilangkan efek bolak-balik dari nth-child di mobile */
  .feature-item:nth-child(even) {
    flex-direction: column;
  }

  .feature-text h2 {
    font-size: 1.2rem;
    margin-top: -35px;
  }

  .feature-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .feature-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/*===============why================*/
.solution-section {
/*  background: #f9fbfd;*/
background-image: url("bg2.png"); /* ganti dengan path gambarmu */
background-size: cover;         /* biar gambar menyesuaikan ukuran layar */
background-position: left;    /* posisi gambar di tengah */
background-repeat: no-repeat;   /* biar nggak diulang */
padding: 80px 150px 50px 150px;
text-align: center;
font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1e293b;
}

.main-solution {

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.solution-image img {
  width: 400px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.solution-text {
  max-width: 450px;
  text-align: left;
}

.solution-text h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.solution-text p {
  color: #475569;
  line-height: 1.6;
}

.solution-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Card style tetap sama */
.card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}
.card img {
  width: 50px;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 10px;
}

.card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* 🔹 Responsive: Versi Mobile */
@media (max-width: 768px) {
  .solution-section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  /* Container untuk card di mobile jadi scroll horizontal */
  .solution-cards {
    display: flex;
    flex-wrap: nowrap; /* penting agar semua card sejajar horizontal */
    overflow-x: scroll; /* aktifkan scroll horizontal */
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    scroll-behavior: smooth;
    justify-content: flex-start;
    padding-bottom: 15px;
  }

  /* Scrollbar selalu terlihat */
  .solution-cards::-webkit-scrollbar {
    height: 8px;
  }

  .solution-cards::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
  }

  .solution-cards::-webkit-scrollbar-thumb {
    background: #00aaff;
    border-radius: 10px;
  }

  /* Card di mobile lebih kecil biar muat lebih banyak */
  .card {
    min-width: 240px;
    flex: 0 0 auto; /* penting supaya tiap card tidak melar */
    padding: 20px;
  }

  .card img {
    width: 40px;
  }

  .card h4 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}






/*========about============*/

.about-section { 
  background-color: #06284e; 
/* warna abu kebiruan */ 
padding: 0px 40px; } 

.about-section .container {
 max-width: 1200px; 
 margin: 0 80px 0 80px; 
 display: flex; 
 align-items: center; 
 justify-content: space-between; 
 flex-wrap: wrap; 
} 

.about-text { 
 flex: ; 
 min-width: 600px; 
} 

.about-text h2 { 
 font-size: 1.5rem; 
 font-weight: 600; 
 color: #ffffff; 
 margin-bottom: 5px; 
} 

.about-text p { 
 color: #ffffff; 
 font-size: 15px; 
 line-height: 1.8; 
 /* jarak antar baris lebih lega */ 
 max-width: 650px; /* biar area teks lebih lebar */ 
} 

.about-image { 
  flex: 1; 
  display: flex; 
  justify-content: right; 
  align-items: right; 
  min-width: 300px; 
} 

.about-image img { 
  width: 60%; 
  max-width: 600px; 
  border-radius: 10px; 
}

/* === RESPONSIVE (MOBILE) === */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-section .container {
    margin: 0;
    flex-direction: column; /* gambar di bawah teks */
    align-items: center;
    text-align: center;
  }

  .about-text {
    min-width: unset;
    width: 100%;
    margin-bottom: 25px; /* kasih jarak ke gambar */
  }

  .about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .about-text p {
    font-size: 0.80rem;
    line-height: 1.7;
    max-width: 100%;
    padding: 0 10px;
  }

  .about-image {
    justify-content: center;
    align-items: center;
  }

  .about-image img {
    width: 85%;
    max-width: 350px;
    margin-bottom: -40px;
  }
}
/*====================KELAS=========================*/
.kelas-section {
  background: #ffffff;
  padding: 40px 20px;
}

.kelas-section .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.kelas-card {
  background: #f9fafc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 360px;
  transition: all 0.3s ease;
}

.kelas-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.kelas-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.kelas-content {
  padding: 20px;
}

.kelas-content h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 600;
}

.kelas-content p {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.kelas-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #00a1b7;
  border-radius: 8px;
  color: #00a1b7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.kelas-btn:hover {
  background: #00a1b7;
  color: white;
}

/*=====================button lihat produk lainnya==========================*/

.lihat-produk {
  text-align: center;
  margin-top: 40px;
}

.lihat-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #00a1b7;
  border-radius: 8px;
  color: #fff;
  background-color: #00a1b7;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lihat-btn:hover {
  background-color: #fff;
  color: #00a1b7;
  box-shadow: 0 4px 10px rgba(26, 76, 227, 0.2);
}



/*====================rating bintang========================*/
.kelas-rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.kelas-rating i {
  color: #facc15; /* warna kuning untuk bintang */
  margin-right: 3px;
  font-size: 1rem;
}

.kelas-rating .rating-value {
  font-size: 0.9rem;
  color: #475569;
  margin-left: 5px;
}




/*================bisnis===================*/
.bisnis-section {
  background: #ffffff;
  padding: 80px 10px 0 0;
  display: flex;
  flex-direction: column; /* 🟢 Tambahkan ini */
  align-items: center;    /* Supaya tetap di tengah */
}


.bisnis-container {
  width: 85%;
  max-width: 1200px;
  background: linear-gradient(to right, #f5f9ff, #eaf4ff);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
}

.bisnis-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}

.bisnis-text {
  flex: 1;
  padding-right: 40px;
}

.bisnis-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.bisnis-text p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 24px;
}

.bisnis-logo {
  height: 60px;
  margin-bottom: 0;
}

.btn-selengkapnya {
  display: inline-block;
  border: 1.5px solid #00a8a8;
  color: #00a8a8;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-selengkapnya:hover {
  background: #00a8a8;
  color: white;
}

.bisnis-image {
  flex: 1;
  text-align: right;
}

.bisnis-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bisnis-image iframe {
  width: 90%;
  max-width: 680px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/*==========bisnis versi mobile =======================*/
/* ===================== */
/* DESKTOP STYLE (ASLI) */
/* ===================== */
.bisnis-section {
  background: #ffffff;
  padding: 80px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bisnis-container {
  width: 85%;
  max-width: 1200px;
  background: linear-gradient(to right, #f5f9ff, #eaf4ff);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 60px;
}

.bisnis-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.bisnis-text {
  flex: 1;
  padding-right: 40px;
}

.bisnis-text h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.bisnis-text p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 24px;
}

.bisnis-logo {
  height: 60px;
  margin-bottom: 0;
}

.btn-selengkapnya {
  display: inline-block;
  border: 1.5px solid #00a8a8;
  color: #00a8a8;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-selengkapnya:hover {
  background: #00a8a8;
  color: white;
}

.bisnis-image {
  flex: 1;
  text-align: right;
}

.bisnis-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */
@media (max-width: 768px) {
  .bisnis-section {
    padding: 40px 20px;
  }

  .bisnis-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: center;
  }

  .bisnis-container {
    flex-direction: column-reverse; /* 🟢 ubah urutan: gambar di atas, teks di bawah */
    align-items: center;
    padding: 30px 20px;
    width: 95%;
    text-align: center;
  }

  .bisnis-image {
    text-align: center;
    margin-bottom: 20px;
  }

  .bisnis-image img {
    width: 90%;
    max-width: 340px;
    border-radius: 12px;
  }

  .bisnis-text {
    padding: 0;
  }

  .bisnis-logo {
    height: 50px;
    margin-bottom: 10px;
  }

  .bisnis-text h2 {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .bisnis-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
    margin-bottom: 18px;
  }

  .btn-selengkapnya {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}



/*========end binsis==========*/

/*==================TESTIMONI======================*/
.testimoni-section {
  background: linear-gradient(90deg, #eef3ff, #cfdfff);
  padding: 40px 100px 40px 100px;
  text-align: center;
}

.testimoni-section h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #0f172a;
  font-weight: 700;
}

.swiper {
  width: 100%;
  padding-bottom: 80px; /* ruang untuk dots dan tombol di bawah */
  position: relative;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.testi-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 30px;
  text-align: left;
  height: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-card .logo {
  height: 30px;
  margin-bottom: 15px;
}

.testi-card p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
}

.testi-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-user h4 {
  margin: 0;
  color: #0f172a;
  font-weight: 600;
}

.testi-user p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

/* --- BOTTOM AREA (dots + buttons) --- */
.testi-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 60px 20px;
  box-sizing: border-box;
}

/* pagination */
.swiper-pagination {
  position: relative;
  text-align: left;
  width: auto;
}

/* navigation buttons */
.nav-btn {
  display: flex;
  gap: 30px;

}

.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: auto;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #0f172a;

}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;

}

/* dots */
.swiper-pagination-bullet {
  background: #a0aec0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #06b6d4;
}

/*===================testimoni versi mobile================*/
/* ====== RESPONSIVE (MOBILE VIEW) ====== */
@media (max-width: 768px) {
  .testimoni-section {
    padding: 40px 20px; /* biar tidak terlalu mepet di pinggir */
    text-align: center;
  }

  .testimoni-section h2 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .swiper {
    width: 100%;
    padding-bottom: 60px; /* ruang untuk dots & tombol di bawah */
  }

  .testi-card {
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: left;
  }

  .testi-card .logo {
    height: 26px;
    margin-bottom: 12px;
  }

  .testi-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .testi-user {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
  }

  .testi-user img {
    width: 40px;
    height: 40px;
  }

  .testi-user h4 {
    font-size: 0.95rem;
  }

  .testi-user p {
    font-size: 0.8rem;
  }

  /* --- Navigasi dan Dots (Pagination) --- */
  .testi-bottom {
    position: static; /* tidak nempel di bawah */
    display: flex;
    justify-content: space-between; /* dots kiri, tombol kanan */
    align-items: center;
    width: 100%;
    padding: 10px 20px 0;
    margin-top: 15px;
    box-sizing: border-box;
  }

  /* Dots (Pagination) */
  .swiper-pagination {
    position: relative;
    text-align: left;
    width: auto;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #a0aec0;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #06b6d4;
  }

  /* Tombol Next/Prev */
  .nav-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px; /* jarak antar tombol */
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: relative;
    top: auto;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    color: #0f172a;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }
}


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


/*=========================FaQ============================*/
/* --- FAQ SECTION --- */
.faq-section {
  width: 100%;
/*  background: linear-gradient(180deg, #3b82f6, #2563eb);*/
padding: 80px 20px;
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}

/* TITLE */
.faq-title {
  text-align: center;
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 600;
}

/* CONTAINER */
.faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: #fff;
  color: #111827;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  padding: 16px 22px;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

/* ICON */
.faq-icon {
  font-size: 18px;
  color: #2563eb;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: #475569;
  padding: 0 22px;
  line-height: 1.6;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 22px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}


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

/*=============footer==============================*/
/* --- FOOTER STYLE --- */
.footer {
  background-color: #111827;
  color: #e5e7eb;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-title {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 18px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #60a5fa;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-icon {
  font-size: 1.2rem;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  border-top: 1px solid #1f2937;
  margin-top: 50px;
  padding-top: 20px;
}
/*=====================================================*/


/* Responsif */
@media (max-width: 950px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 6% 100px;
  }

  .hero img {
    position: static;
    width: 90%;
    margin-top: 40px;
  }

  .popup {
    display: none;
  }
}
