/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* ===== Reset dan Global ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Container & Layout ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== Header Transparan Fix ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important; /* tidak ada warna putih */
  box-shadow: none !important;
  backdrop-filter: none !important;
  border: none !important;
  z-index: 9999 !important;
  transition: all 0.3s ease;
}

/* Saat di-scroll (opsional, biar tetap transparan) */
.main-header.shrink {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* ===== Logo & Brand ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.logo-container img.logo {
  width: 65px; /* diperbesar */
  height: auto;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.3)); /* biar lebih tajam */
}

.main-header.shrink .logo {
  width: 45px; /* mengecil saat scroll */
}

/* Teks Naira Group */
.brand {
  font-size: 1.8rem; /* diperbesar */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.95); /* teks putih cerah */
  transition: all 0.5s ease;
}

.main-header.shrink .brand {
  font-size: 1.3rem; /* ikut mengecil */
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ===== Menu Navbar ===== */
.menu a {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.menu a:hover {
  color: #007bff; /* tetap biru saat hover */
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh; /* ubah dari 90vh ke 100vh biar full layar */
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
  z-index: 1;
}

.hero-slideshow .slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  animation: fade 1s ease-in-out;
}

.hero-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
  transition: transform 1s ease-in-out;
}

/* opsional: kasih sedikit overlay lembut supaya teks hero lebih kontras */
.hero-slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

/* Caption text modern */
.hero-slideshow .caption {
  position: absolute;
  bottom: 18%;
  left: 10%;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.8);
  max-width: 700px;
}

.hero-slideshow .caption h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
}

.hero-slideshow .caption p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 400;
}

/* CTA button tetap */
.btn-consult {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00b894);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-consult:hover {
  background: linear-gradient(90deg, #0056b3, #019870);
  transform: translateY(-2px);
}

/* ===== Tombol Navigasi Kanan Kiri ===== */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent; /* benar-benar transparan */
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  backdrop-filter: blur(3px);
}

/* Hover: panah & border sedikit lebih terang */
.prev:hover, .next:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

/* Klik (active): hanya garis & panah yang menyala */
.prev:active, .next:active {
  border-color: #ffffff; /* garis terang */
  color: #ffffff; /* panah putih menyala */
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6); /* sedikit cahaya keluar */
  background: transparent; /* tetap transparan */
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

/* ===== Bullet Dots (Navigasi Bawah) ===== */
.dots {
  text-align: center;
  position: absolute;
  bottom: 30px; /* dinaikkan sedikit dari bawah */
  width: 100%;
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 10px; /* kecilin bulatannya */
  height: 10px;
  margin: 0 5px;
  background: transparent; /* full transparan */
  border: 1.5px solid #fff; /* hanya garis putih tipis */
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.dot.active {
  transform: scale(1.3);
  border-color: #00b894; /* warna aktif opsional */
}

.dot:hover {
  transform: scale(1.2);
}

/* ===== About Section ===== */
#about img {
  border-radius: 12px;
}

/* ===== Bisnis Kami ===== */
.bisnis-section {
  color: #007bff;
  text-align: center;
  padding: 80px 0 40px;
}

.judul-bisnis {
  font-size: 26px;
  color: #007bff;
  font-weight: 700;
  margin-bottom: 50px;
}

.bisnis-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.bisnis-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  width: 300px;
  padding: 30px 20px 35px 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.bisnis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.bisnis-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px auto;
}

.bisnis-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #007bff;
  margin-bottom: 12px;
}

.bisnis-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-grid form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-grid input,
.contact-grid textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
}

.contact-grid button {
  padding: 12px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-grid button:hover {
  background: #2980b9;
}

/* ===== Footer ===== */
footer {
  background: #2980b9;
  color: white;
  text-align: center;
  padding: 30px;
  margin-top: 40px;
  border-radius: 100px 100px 0 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero-slideshow .caption h1 { font-size: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu { flex-wrap: wrap; }
}

/* === Hero Caption Style (posisi kiri & transparan lembut) === */
.hero-slideshow .caption {
  position: absolute;
  bottom: 15%;
  left: 7%;
  text-align: left;
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.hero-slideshow .caption h1 {
  font-size: 2rem; /* lebih proporsional */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
  white-space: nowrap; /* tetap satu baris */
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5); /* biar kontras tapi halus */
}

.hero-slideshow .caption p {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25); /* hitam transparan paling tipis */
  color: #fff; /* teks putih */
  padding: 10px 25px;
  border-radius: 50px; /* bentuk tabung */
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(2px); /* sedikit blur biar elegan */
  transition: background 0.3s ease;
}

.hero-slideshow .caption p:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Responsif biar tetap rapi di HP */
@media (max-width: 768px) {
  .hero-slideshow .caption {
    bottom: 10%;
    left: 5%;
    max-width: 90%;
  }

  .hero-slideshow .caption h1 {
    font-size: 1.4rem;
    white-space: normal;
  }

  .hero-slideshow .caption p {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}

/* ===== Hero Section Fix ===== */
.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
  z-index: 1;
}

/* Pastikan hero menutupi area di balik header */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* opsional: gelap lembut biar teks hero kelihatan */
  z-index: -1;
}

/* ===== Header di atas Hero ===== */
.main-header {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  z-index: 9999 !important;
}

/* ===== Hilangkan jarak antara header dan hero ===== */
.hero-slideshow {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
  top: 0;
  z-index: 1;
}

/* Pastikan body tidak punya margin yang mendorong konten ke bawah */
body {
  margin: 0;
  padding: 0;
}

/* ===== Warna Menu Header ===== */
.menu a {
  color: #ffffff !important;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #00bfff !important; /* biru muda glowing */
}

/* ===== Hero Caption Fix ===== */
.hero-slideshow .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
}

.hero-slideshow .caption h1,
.hero-slideshow .caption p {
  margin: 0;
  padding: 5px 0;
}

.btn-consult {
  margin-top: 15px;
}

/* ===== PERBAIKAN FULL TRANSPARAN HEADER ===== */
.main-header,
.main-header * {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Hilangkan ruang putih antar header dan hero */
.hero-slideshow {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Pastikan hero mulai dari paling atas */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header, .navbar, .header-wrapper, .topbar {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* ===== Biar teks di hero tetap muncul normal ===== */
.hero-slideshow .slide img {
  filter: brightness(75%);
}

/* ===== Biar menu tetap putih terang di atas hero ===== */
.menu a {
  color: #fff !important;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0,0,0,0.5);
}

.menu a:hover {
  color: #00bfff !important;
}

/* ===== FIX TOTAL HEADER TRANSPARAN ===== */

/* Hapus semua background putih di header dan sekitarnya */
html, body, header, .main-header, .main-header * {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* Pastikan header nempel di atas */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 50px;
  z-index: 9999;
  transition: all 0.3s ease;
}

/* Hapus jarak kosong antara header dan hero */
.hero-slideshow {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Pastikan slide muncul dari atas halaman */
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

/* ===== Logo & Menu di atas gambar hero ===== */
.logo-container img {
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}

.menu a {
  color: #fff !important; /* warna putih menyala */
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #00bfff !important; /* efek hover biru terang */
}

/* ===== Saat discroll, header tetap transparan ===== */
#mainHeader.shrink {
  background: transparent !important;
  box-shadow: none !important;
}

/* ===== Hero Caption Tetap Tengah ===== */
.hero-slideshow .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
}

.hero-slideshow .caption h1,
.hero-slideshow .caption p {
  margin: 0;
  padding: 5px 0;
}

.btn-consult {
  margin-top: 15px;
}

/* ===== HERO CAPTION POSISI LEBIH TURUN ===== */
.hero-slideshow .caption {
  position: absolute;
  top: 62%; /* dari 50% jadi lebih turun */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
}

.hero-slideshow .caption h1 {
  font-size: 2.4rem; /* bisa disesuaikan */
  margin-bottom: 10px;
}

.hero-slideshow .caption p {
  font-size: 0.8rem;
}

/* Tombol Konsultasi sedikit lebih besar */
.btn-consult {
  margin-top: 25px; /* biar agak turun */
  padding: 12px 28px;
  font-size: 1.0rem;
}

/* ===== LOGO & TEKS BRAND DIPERBESAR ===== */
.logo-container img.logo {
  width: 80px !important; /* dari 65px */
  height: auto;
  transition: all 0.5s ease;
}

.main-header.shrink .logo {
  width: 60px !important; /* tetap mengecil saat scroll */
}

.brand {
  font-size: 2rem !important; /* diperbesar */
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 0 6px rgba(0,0,0,0.4);
}

.main-header.shrink .brand {
  font-size: 1.5rem !important;
}

/* ===== MENU WARNA KHUSUS ===== */
.menu a {
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
  transition: color 0.3s ease;
}

/* About, Services, Contact => putih + hover biru */
.menu a[href="#about"],
.menu a[href="#services"],
.menu a[href="#contact"] {
  color: #ffffff !important;
}

.menu a[href="#about"]:hover,
.menu a[href="#services"]:hover,
.menu a[href="#contact"]:hover {
  color: #00bfff !important; /* biru terang */
}

/* Logout => selalu merah */
.menu a[href="logout.php"] {
  color: #ff0000 !important;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0,0,0,0.4);
}

/* Efek hover logout: merah lebih terang */
.menu a[href="logout.php"]:hover {
  color: #ff4040 !important;
}

/* ===== HERO SLIDESHOW: POSISI & STYLING KONSISTEN ===== */
.hero-slideshow {
  position: relative;
  overflow: hidden;
}

/* Caption posisi tetap di tengah untuk semua slide */
.hero-slideshow .caption {
  position: absolute;
  top: 55%; /* turun tapi tetap proporsional */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: #fff;
  z-index: 10;
}

/* Pastikan semua slide pakai posisi yang sama */
.hero-slideshow .slide .caption,
.hero-slideshow .slide1 .caption,
.hero-slideshow .slide2 .caption,
.hero-slideshow .slide3 .caption,
.hero-slideshow .slide4 .caption,
.hero-slideshow .slide5 .caption {
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Balikin ukuran font caption seperti sebelumnya */
.hero-slideshow .caption h1 {
  font-size: 2.2rem;  /* balik seperti semula */
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}

.hero-slideshow .caption p {
  font-size: 1rem; /* balik seperti semula */
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Tombol konsultasi gratis posisi & ukuran konsisten */
.hero-slideshow .caption .btn-consult {
  display: inline-block;
  background-color: #00bfff;
  color: white;
  padding: 10px 25px;  /* ukuran tombol semula */
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.hero-slideshow .caption .btn-consult:hover {
  background-color: #009acd;
  transform: translateY(-3px);
}

/* Biar semua slide caption & tombol tetap di tengah vertikal */
.hero-slideshow .slide {
  position: relative;
}

.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fix spesifik untuk slide5 agar sama seperti slide lain */
.hero-slideshow .slide5 .caption {
  top: 55% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
}

/* =========================
   HERO CAPTION CONSISTENT
   ========================= */

   .hero-slideshow img {
    object-fit: cover;
    object-position: center center; /* pastikan gambar selalu terpusat */
  }
  
  /* satu caption layout konsisten untuk semua slide */
  .hero-slideshow .caption {
    position: absolute;
    left: 50%;
    top: 58%;                 /* geser agak ke bawah (atur jika perlu) */
    transform: translate(-50%, -50%);
    z-index: 12;
    width: 86%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    pointer-events: none; /* biar klik tombol tetap berjalan (tombol di bawah akan override) */
  }
  
  /* Judul satu baris, bold, ukuran wajar */
  .hero-slideshow .caption h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;    /* ukuran sedang, tidak terlalu besar */
    font-weight: 700;
    line-height: 1;
    margin: 0;
    white-space: nowrap; /* PENTING: jangan pecah baris */
    text-overflow: ellipsis;
    overflow: hidden;
    color: #fff;
    pointer-events: auto;
    text-shadow: 0 6px 18px rgba(0,0,0,0.55);
  }
  
  /* paragraph di dalam tabung gelap tipis */
  .hero-slideshow .caption p {
    margin: 0;
    padding: 12px 26px;
    background: rgba(0,0,0,0.25); /* hitam transparan tipis */
    color: #ffffff;
    border-radius: 999px; /* efek 'tabung' kanan-kiri bulat */
    max-width: 760px;
    font-size: 1rem;
    pointer-events: auto;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }
  
  /* tombol konsultasi selalu pada posisi yang sama (di bawah caption) */
  .hero-slideshow .caption .btn-consult {
    margin-top: 8px;
    pointer-events: auto;
    box-shadow: 0 10px 24px rgba(13,82,163,0.14);
    transform: translateY(0);
  }
  
  /* Pastikan slide tanpa teks (contoh slide5) juga punya caption box & tombol di tengah */
  .hero-slideshow .slide .caption { min-height: 160px; }
  
  /* ===== Logo & Brand spacing + hover effect ===== */
  .logo-container {
    gap: 6px; /* lebih rapat antara logo dan tulisan */
    align-items: center;
    display: inline-flex;
  }
  
  /* perbesar logo & teks (desktop) */
  .logo-container img.logo {
    width: 72px;
    height: auto;
    transition: transform 0.35s ease, filter 0.35s ease;
  }
  
  /* teks brand */
  .brand {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #ffffff; /* agar kontras di hero */
    transition: transform 0.35s ease, text-shadow 0.35s ease;
  }
  
  /* hover/focus pada logo-container: zoom & glow */
  .logo-container:hover img.logo,
  .logo-container:focus img.logo {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
  }
  .logo-container:hover .brand,
  .logo-container:focus .brand {
    transform: scale(1.05);
    text-shadow: 0 6px 18px rgba(0,0,0,0.5);
  }
  
  /* ===== Header menu color + highlight logout only ===== */
  /* Keep About/Services/Contact biru, Logout merah (menangkal inline style tertimpa) */
  .menu a { color: rgba(255,255,255,0.95); }              /* putih terang */
  .menu a[href="logout.php"] { color: #e53935 !important; } /* merah untuk logout */
  
  /* ===== Tombol navigasi (arrow) & dots kecil ===== */
  /* kecil, bulat sempurna, sangat transparan */
  .prev, .next {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.06); /* sangat tipis */
    border: 1px solid rgba(255,255,255,0.12); /* tipis garis luar */
    color: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform .18s ease, background .18s ease;
    z-index: 20;
  }
  .prev:hover, .next:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.08);
  }
  
  /* dots (pagination) */
  .hero-slideshow .dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
  }
  .hero-slideshow .dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    padding: 0;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
  }
  .hero-slideshow .dots button.active {
    background: rgba(0,200,150,0.95); /* warna aktif */
    transform: scale(1.15);
    border-color: rgba(0,200,150,0.95);
  }
  
  /* responsive tweak */
  @media (max-width: 900px) {
    .hero-slideshow .caption h1 { font-size: 1.6rem; white-space: normal; }
    .hero-slideshow .caption { top: 60%; width: 92%; max-width: 700px; }
    .logo-container img.logo { width: 58px; }
    .brand { font-size: 1.25rem; }
  }

/* ===== Efek Hover & Klik untuk Caption P di Semua Slide ===== */
.hero-slideshow .caption p {
  display: inline-block;
  padding: 12px 45px;
  background: rgba(0, 0, 0, 0.25); /* tabung hitam transparan */
  color: #ffffff;
  border-radius: 999px;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Saat di-hover */
.hero-slideshow .caption p:hover {
  background: rgba(255, 255, 255, 0.9); /* putih lembut */
  color: #000000; /* teks jadi hitam */
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
}

/* Efek klik (aktif) */
.hero-slideshow .caption p:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 1);
  color: #000000;
}

/* Pastikan semua caption center konsisten */
.hero-slideshow .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  z-index: 10;
}

/* Pastikan paragraf tabung seragam di semua slide */
.hero-slideshow .caption p {
  display: inline-block;
  padding: 12px 26px;
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Hover putih */
.hero-slideshow .caption p:hover {
  background: #fff;
  color: #000;
}

/* ===== Fix Tombol Navigasi Arrow Transparan Total ===== */
.prev, .next {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: transparent !important; /* full transparan */
  border: 1px solid rgba(255,255,255,0.15); /* garis tipis */
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: border-color .25s ease;
  z-index: 20;
}

/* Hover hanya garis pinggirnya aja */
.prev:hover, .next:hover {
  background: transparent !important; /* tidak ada isi */
  border-color: rgba(255,255,255,0.65); /* garis lebih terang saat hover */
  transform: none !important; /* hilangkan efek zoom */
}

/* ===== Fix total: Tombol Arrow full diam, tanpa gerak, tanpa zoom, tanpa perubahan posisi ===== */
.prev, .next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent !important; /* bulatannya transparan total */
  border: 1px solid rgba(255,255,255,0.15); /* garis luar tipis */
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: none !important; /* matiin semua animasi */
  transform: none !important; /* matiin efek zoom */
  z-index: 20;
}

/* hover hanya bikin garis lebih terang */
.prev:hover, .next:hover {
  background: transparent !important;
  border-color: rgba(255,255,255,0.65);
  transform: none !important;
  transition: none !important;
}

/* pas diklik (active) atau fokus juga gak boleh gerak */
.prev:active, .next:active,
.prev:focus, .next:focus {
  background: transparent !important;
  border-color: rgba(255,255,255,0.65);
  transform: none !important;
  transition: none !important;
  outline: none !important;
}

/* ===== Logout menu putih default, hover merah ===== */
.menu a.logout {
  color: #ffffff !important;         /* default putih */
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.menu a.logout:hover {
  color: #ff0000 !important;         /* hover jadi merah */
}

/* ===== Posisi tombol "Konsultasi Gratis" di slide terakhir (slide 5) ===== */
.hero-slideshow .slide:nth-child(5) .caption {
  position: absolute;
  bottom: -90px; /* pas nempel di atas dot navigasi */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

/* Tombol konsultasi di slide 5 tetap tampil */
.hero-slideshow .slide:nth-child(5) .btn-consult {
  display: inline-block;
  margin-top: 10px;
}

/* === Efek Ripple Air Tipis dan Transparan === */
.hero-slideshow {
  position: relative;
  overflow: hidden;
}

.hero-slideshow .ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15); /* lebih tipis & lembut */
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 0.4;
  animation: rippleEffect 1.6s ease-out forwards;
  filter: blur(3px); /* sedikit blur agar tampak halus */
}

@keyframes rippleEffect {
  0% {
    transform: scale(0);
    opacity: 0.4;
  }
  50% {
    transform: scale(2);
    opacity: 0.2;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* ===== FIXED FULLSCREEN ABOUT SECTION ===== */
#about,
.about-section {
  all: unset; /* reset semua gaya lama */
  display: flex;
  justify-content: center; /* center horizontal */
  align-items: center; /* center vertical */
  flex-direction: column; /* susun vertikal */
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('about.png'); /* Ganti nama sesuai file gambar kamu */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Overlay biar teks kebaca */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Isi konten about */
.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px; /* jarak kiri kanan biar gak nempel */
}

.about-content h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.3rem;
}

.about-content p {
  color: #f2f2f2;
  font-size: 1.0rem;
  line-height: 1.6;
}

/* ===== ABOUT SECTION STYLE ===== */
.about-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  background: url('about.png') center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

/* overlay gelap lembut */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* efek ripple */
.about-section .ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 0.4;
  animation: rippleEffect 1.6s ease-out forwards;
  filter: blur(3px);
  z-index: 2;
}

/* konten tengah */
.about-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}

/* tabung gelap transparan di judul dan caption */
.about-title,
.about-text {
  display: inline-block;
  background: rgba(0, 0, 0, 0.25);
  padding: 14px 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
  cursor: pointer;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* efek hover seperti hero section */
.about-title:hover,
.about-text:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
  transform: scale(1.02);
}

/* ripple animasi global */
@keyframes rippleEffect {
  0% { transform: scale(0); opacity: 0.4; }
  50% { transform: scale(2); opacity: 0.2; }
  100% { transform: scale(3); opacity: 0; }
}

/* === Perbaikan Posisi Caption Semua Slide === */
.hero-slideshow .slide .caption {
  position: absolute;
  top: 55%; /* posisi normal semua slide */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  min-height: 160px;
}

/* === Khusus Slide 5 (biar sejajar kayak slide 2) === */
.hero-slideshow .slide:nth-child(5) .caption {
  top: 55% !important; /* naik sedikit biar pas */
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
}

/* === Tombol tetap proporsional === */
.hero-slideshow .slide .btn-consult {
  margin-top: 20px;
  display: inline-block;
}

/* ===== Bisnis Kami ===== */
.bisnis-section {
  position: relative;
  min-height: 120vh;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background-image: url('bisnis.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* Overlay gelap biar teks tetap kebaca */
.bisnis-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* ubah opacity sesuai selera */
  z-index: 0;
}

.bisnis-section .container {
  position: relative;
  z-index: 1;
}

.judul-bisnis {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 50px;
}

.bisnis-card {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  width: 300px;
  padding: 30px 20px 35px 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.bisnis-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

#about, #business, #contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 100px;
}

/* === FIX: Fullscreen per Section + Scroll Pas === */

/* Hero tetap fullscreen */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section lain (About, Business, Contact) juga full-screen tapi tidak nabrak */
#about, #business, #contact {
  min-height: 100vh;
  padding: 100px 0; /* biar konten gak terlalu mepet */
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 120px; /* offset agar tidak ketutup header */
}

/* Untuk memastikan transisi antar section halus */
html {
  scroll-behavior: smooth;
}

/* Kalau header lo fixed (misal tinggi 80px), tambahkan ini */
header, .main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

/* Opsional: hilangkan celah antar section (batas bawah hero ke atas about) */
section {
  margin: 0;
  padding-top: 100px;
  box-sizing: border-box;
}

/* ===== BISNIS KAMI (UPDATE) ===== */
.bisnis-section {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background: url('bisnis.png') center/cover no-repeat;
  overflow: hidden;
}

/* overlay gelap biar teks tetap kebaca */
.bisnis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* container dan judul */
.bisnis-section .container {
  position: relative;
  z-index: 2;
}

.judul-bisnis {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

.judul-bisnis:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
  transform: scale(1.03);
}

/* layout card */
.bisnis-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* card style baru */
.bisnis-card {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  width: 300px;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}

/* efek hover */
.bisnis-card:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
}

/* gambar di card */
.bisnis-card img {
  width: 80px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

/* teks dan judul di card */
.bisnis-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  transition: all 0.35s ease;
}

.bisnis-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.35s ease;
}

/* ubah warna teks saat hover */
.bisnis-card:hover h3,
.bisnis-card:hover p {
  color: #000;
}

/* ripple effect */
.bisnis-card .ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 0.4;
  animation: rippleEffect 1.6s ease-out forwards;
  filter: blur(3px);
  z-index: 3;
}

/* animasi ripple (sama kayak about) */
@keyframes rippleEffect {
  0% { transform: scale(0); opacity: 0.4; }
  50% { transform: scale(2); opacity: 0.2; }
  100% { transform: scale(3); opacity: 0; }
}

/* ===== BISNIS KAMI (FINAL MATCH ABOUT STYLE) ===== */
.bisnis-section {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background: url('bisnis.png') center/cover no-repeat;
  overflow: hidden;
}

/* overlay gelap lembut */
.bisnis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* container dan judul */
.bisnis-section .container {
  position: relative;
  z-index: 2;
}

.judul-bisnis {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

.judul-bisnis:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
  transform: scale(1.03);
}

/* layout card */
.bisnis-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* style card default seperti tabung about */
.bisnis-card {
  position: relative;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  width: 300px;
  padding: 35px 25px;
  color: #fff;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  overflow: hidden;
}

/* hover = putih + teks hitam */
.bisnis-card.active,
.bisnis-card:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  transform: scale(1.03);
  box-shadow: 0 0 18px rgba(255,255,255,0.3);
}

/* logo gambar */
.bisnis-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

/* judul & teks */
.bisnis-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  transition: all 0.35s ease;
}

.bisnis-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  transition: all 0.35s ease;
}

/* ubah warna teks pas hover/klik */
.bisnis-card.active h3,
.bisnis-card:hover h3,
.bisnis-card.active p,
.bisnis-card:hover p {
  color: #000;
}

/* ripple effect */
.bisnis-card .ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  opacity: 0.4;
  animation: rippleEffect 1.6s ease-out forwards;
  filter: blur(3px);
  z-index: 3;
}

/* animasi ripple (sama kayak about) */
@keyframes rippleEffect {
  0% { transform: scale(0); opacity: 0.4; }
  50% { transform: scale(2); opacity: 0.2; }
  100% { transform: scale(3); opacity: 0; }
}

/* === Ripple Effect Style === */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ripple-animate 0.9s ease-out;
  z-index: 10; /* pastikan ripple tampil di atas background */
}

@keyframes ripple-animate {
  from {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* === Fix Logo Bisnis Bulat Tanpa Background Putih === */
.bisnis-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  background: none; /* hilangkan background putih */
  padding: 0;       /* hilangkan padding yang bikin jarak putih */
}

/* ===== About Section ===== */
.about-section {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 120px 0;
  background: rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-position: center;
}

.about-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #fff;
}

.more-link {
  display: inline-block;
  margin-top: 10px;
  color: #1e90ff; /* 💙 default biru */
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.more-link:hover {
  color: #000; /* 🖤 pas di-hover/klik tetap hitam */
  background: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  border-bottom: 2px solid #000;
}

/* ===== CONTACT SECTION FINAL FIX ===== */
#contact.section.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh; /* sama kayak about */
  width: 100%;
  background: url('contact.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Overlay gelap biar teks kebaca */
#contact.section.container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Biar semua elemen di atas overlay */
#contact * {
  position: relative;
  z-index: 1;
}

/* ===== Judul ===== */
#contact h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

/* ===== Grid Kiri Kanan ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 80%;
  max-width: 1200px;
  align-items: start;
}

/* ===== Card Style ===== */
.contact-grid .card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ===== Form ===== */
.contact-grid form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-grid input,
.contact-grid textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  color: #333;
}

.contact-grid textarea {
  resize: none;
  height: 120px;
}

.contact-grid button {
  background: #2196f3;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-grid button:hover {
  background: #0d47a1;
}

/* ===== Info Kanan ===== */
.contact-grid h3 {
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-grid p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 16px;
  color: #f5f5f5;
}

.contact-grid iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    width: 90%;
  }

  #contact h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }
}

/* ===== FOOTER FIX TANPA DOUBLE BG ===== */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  margin: 0;
}

/* ===== CONTACT SECTION ===== */
#contact {
  position: relative;
  min-height: 85vh;
  background: url('contact.png') no-repeat center center/cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 40px;
  text-align: center;
  z-index: 1;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12); /* 🔥 super tipis banget tanpa efek blur */
  z-index: 0;
}

/* ===== TITLE HUBUNGI KAMI ===== */
#contact h2 {
  display: inline-block;
  font-size: 2.3em;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  background: rgba(0, 0, 0, 0.12); /* 🔥 super tipis transparan */
  padding: 10px 40px;
  border-radius: 40px;
  text-transform: none; /* hanya huruf awal kapital */
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

#contact h2:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}

/* ===== GRID (Presisi Tengah) ===== */
#contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  z-index: 1;
  position: relative;
  justify-content: center;
  margin: 0 auto; /* ✅ bikin form benar-benar di tengah */
  transform: none; /* ✅ hapus efek geser */
}

/* ===== CARD BASE ===== */
#contact .card {
  background: rgba(0, 0, 0, 0.12); /* 🔥 super tipis transparan */
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  color: #fff;
  transition: all 0.4s ease;
}

/* ===== FORM STYLE (KIRI) ===== */
#contact .card:first-child {
  color: #fff;
}

#contact .card:first-child:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
}

/* Input Default (Putih, teks hitam) */
#contact .card:first-child input,
#contact .card:first-child textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  color: #000;
  background: #fff;
  transition: all 0.3s ease;
}

/* Hover: input jadi hitam, teks putih */
#contact .card:first-child:hover input,
#contact .card:first-child:hover textarea {
  background: #000;
  color: #fff;
}

#contact .card:first-child:hover input::placeholder,
#contact .card:first-child:hover textarea::placeholder {
  color: #fff;
}

/* Button tetap biru */
#contact .card:first-child button {
  background: #007bff;
  border: none;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

#contact .card:first-child:hover button {
  background: #007bff; /* tetap biru */
  color: #fff;
}

/* ===== INFO (KANAN) ===== */
#contact .card:last-child h3 {
  margin-bottom: 8px;
}

#contact .card:last-child p {
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

#contact .card:last-child:hover {
  background: rgba(255,255,255,0.95);
  color: #000;
}

#contact .card:last-child:hover h3,
#contact .card:last-child:hover p {
  color: #000;
}

/* ===== FOOTER (GLOBAL — TANPA LATAR ITEM ATAU TABUNG) ===== */
footer {
  width: 100%;
  text-align: center;
  margin-top: 0;
  padding: 15px 0;
  background: transparent; /* 🔥 ganti hitam jadi transparan */
  position: relative;
  z-index: 3;
}

footer p {
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  margin: 0;
}

/* ===== TABUNG BIRU HANYA UNTUK FOOTER DI SECTION CONTACT ===== */
#contact footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: rgba(0, 123, 255, 0.85);
  border-radius: 50px;
  bottom: -30px;
  z-index: -1;
  transition: all 0.4s ease;
}

#contact footer:hover::before {
  background: rgba(255, 255, 255, 0.95);
}

#contact footer p {
  position: relative;
  color: #fff;
  top: 26px;
  transition: color 0.4s ease;
}

#contact footer:hover p {
  color: #000;
}

/* ===== SECTION REGISTRATION ===== */
.registration-section {
  position: relative;
  min-height: 120vh;
  background-image: url('registrasi.png'); /* GANTI DENGAN FOTO LO NANTI */
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* stay di section ini aja */
  padding: 120px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.registration-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.registration-content {
  position: relative;
  z-index: 2;
   margin-top: 80px;
}

/* ===== TITLE REGISTRASI ===== */
.registration-section h2 {
  display: inline-block;
  font-size: 2.3em;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  background: rgba(0, 0, 0, 0.12);
  padding: 10px 40px;
  border-radius: 40px;
  text-transform: none;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.registration-section h2:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}

/* ===== FORM BOX (diperkecil & bg sama seperti judul) ===== */
.registration-section .form-box {
  width: 45%; /* 🔹 lebih ramping */
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.12); /* 🔥 sama seperti bg judul */
  padding: 25px 35px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

/* Hover: bg form berubah jadi putih */
.registration-section .form-box:hover {
  background: rgba(255,255,255,0.9);
}

/* ===== INPUT STYLE ===== */
.registration-section .form-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fff; /* default putih */
  color: #000; /* teks hitam */
  transition: all 0.4s ease;
}

/* Hover: form berubah — bg input hitam, teks putih */
.registration-section .form-box:hover input {
  background: #000;
  color: #fff;
}

.registration-section .form-box:hover input::placeholder {
  color: #fff;
}

/* ===== BUTTON TETAP DEFAULT ===== */
.registration-section .form-box button {
  background: #007bff;
  border: none;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.registration-section .form-box button:hover {
  background: #007bff; /* tetap biru */
  color: #fff; /* tetap putih */
  transform: scale(1.03);
}



/* ===== SECTION INFORMASI ===== */
.info-section {
  position: relative;
  background: url('informasi.png') no-repeat center center/cover; /* ← nanti ganti nama file bg lo di sini */
  padding: 40px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px; /* tetap pendek */
  box-shadow: 0 -4px 15px rgba(63, 61, 61, 0.15);
  overflow: hidden;
}

/* Overlay gelap biar teks tetap kebaca di atas foto */
.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* isi konten */
.info-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffffff;
  transition: 0.3s;
}

.info-text h2:hover {
  color: #00aaff;
}

.info-text p {
  font-size: 16px;
  margin-bottom: 8px;
}

.info-map {
  flex: 1.5;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.info-map:hover {
  transform: scale(1.02);
}

/* ===== BASE SECTION STYLE (biar seragam sama section lain) ===== */
.content-section {
  padding: 100px 0;
  text-align: center;
}

/* === OVERRIDE TITLE CONTACT & REGISTRASI (UKURAN PAS KAYA "BISNIS") === */
#contact h2,
.registration-section h2 {
  font-size: 2.1em !important; /* 🔥 diperkecil biar seimbang dengan "Bisnis" */
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  text-transform: none;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.12);
  padding: 10px 40px;
  border-radius: 45px;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

/* === Hover effect tetap sama === */
#contact h2:hover,
.registration-section h2:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

/* ===== FINAL OVERRIDE CONTACT FORM ===== */

/* Placeholder style: warna hitam, ukuran kecil */
#contact input::placeholder,
#contact textarea::placeholder {
  color: #000; /* default hitam */
  font-weight: 500;
  font-size: 13px; /* diperkecil */
  letter-spacing: 0.3px;
}

/* Input dan textarea style */
#contact input,
#contact textarea {
  background: #000; /* transparan gelap kayak form registrasi */
  color: #fff; /* teks utama putih */
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  width: 100%;
  transition: all 0.3s ease;
}

/* Efek hover: ubah background jadi putih, teks utama jadi hitam */
#contact input:hover,
#contact textarea:hover {
  background: #fff;
  color: #000;
}

/* Placeholder tetap hitam saat hover juga */
#contact input:hover::placeholder,
#contact textarea:hover::placeholder {
  color: #000;
}

/* ===== Tombol Kirim Pesan: sama kayak tombol Registrasi ===== */
#contact button {
  background: #007bff;
  border: none;
  color: #fff;
  padding: 12px;
  width: 100%;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

#contact button:hover {
  background: #005fd4;
  transform: scale(1.03);
}

/* === OVERRIDE TRANSPARANSI RINGAN & JERNIH CONTACT SECTION === */

/* 🔹 Background transparan di judul (h2) */
#contact h2 {
  background: rgba(0, 0, 0, 0.18) !important; /* tipis & jernih */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 🔹 Background transparan di form */
#contact form {
  background: rgba(0, 0, 0, 0.18) !important; /* sama tipis & jernih */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* === OVERRIDE KHUSUS TITLE "HUBUNGI KAMI" DI CONTACT SECTION === */
#contact h2 {
  background: rgba(0, 0, 0, 0.25) !important; /* 🔥 transparan gelap tipis jernih */
  backdrop-filter: blur(2px); /* efek kaca halus */
  transition: background 0.5s ease, color 0.5s ease, backdrop-filter 0.5s ease;
}

/* === Hover: berubah ke putih bersih === */
#contact h2:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #000 !important;
  backdrop-filter: blur(0px); /* hilangkan efek kaca pas hover */
}

/* === OVERRIDE PLACEHOLDER DEFAULT (SEBELUM HOVER) BIAR LEBIH BOLD === */
#contact input::placeholder,
#contact textarea::placeholder,
.registration-section input::placeholder,
.registration-section textarea::placeholder {
  font-weight: 700 !important; /* bold penuh */
  opacity: 1 !important; /* biar teksnya tetap jelas */
  color: #000 !important; /* tetap hitam pas default */
}

/* === OVERRIDE PLACEHOLDER CONTACT & REGISTRASI === */
/* Default: hitam dan bold */
#contact input::placeholder,
#contact textarea::placeholder,
.registration-section input::placeholder,
.registration-section textarea::placeholder {
  font-weight: 700 !important;
  color: #000 !important;
  opacity: 1 !important;
  transition: color 0.3s ease;
}

/* Saat seluruh form dihover → semua placeholder jadi putih bold */
#contact .card:hover input::placeholder,
#contact .card:hover textarea::placeholder,
.registration-section .form-box:hover input::placeholder,
.registration-section .form-box:hover textarea::placeholder {
  color: #fff !important;
  font-weight: 700 !important;
}

/* ==== HERO SECTION RESPONSIVE FIX ==== */
#hero,
.hero-slideshow,
.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caption {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.caption-inner {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Judul & teks */
.caption h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  word-wrap: break-word;
}

.caption p {
  font-size: 18px;
  margin-bottom: 50px; /* jarak diperlebar */
  line-height: 1.6;
}

/* Tombol sejajar horizontal */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* jarak antar tombol */
  flex-wrap: wrap; /* biar aman kalau zoom */
}

/* Tombol sama rata ukuran */
.btn-consult {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 190px; /* agak lebih kecil dari sebelumnya */
  height: 45px;
  background: linear-gradient(135deg, #00aaff, #0077ff);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.btn-consult:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0088ff, #0055cc);
}

/* Tombol album khusus index */
.album-index-btn {
  background: linear-gradient(135deg, #00aaff, #0077ff);
}

.album-index-btn:hover {
  background: linear-gradient(135deg, #0088ff, #0055cc);
}

/* Responsif + zoom safe */
@media (max-width: 992px) {
  .caption h1 {
    font-size: 34px;
  }
  .caption p {
    font-size: 17px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .caption {
    padding: 80px 20px;
  }

  .caption h1 {
    font-size: 28px;
  }

  .caption p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    gap: 20px;
  }

  .btn-consult {
    width: 180px;
    height: 42px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .caption h1 {
    font-size: 24px;
  }

  .caption p {
    font-size: 15px;
  }

  .btn-consult {
    width: 160px;
    height: 40px;
  }
}

/* Section Info full screen dengan background */
.info-section {
  position: relative;
  min-height: 120vh;
  background-image: url('informasi.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center; /* konten center vertikal */
  align-items: center;
  padding: 120px 20px 120px 20px;
  color: #fff;
}

/* Container untuk teks & maps */
.info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  z-index: 1; /* pastikan di atas bg */
}

.info-footer {
  margin-top: 60px;
  align-self: center;
  position: relative;
  z-index: 10; /* biar gak ketutup bg lain */
}

.info-footer a {
  display: inline-block;
  background: rgba(0, 123, 255, 0.7); /* biru transparan */
  color: #fff;
  font-weight: 700; /* super bold */
  padding: 12px 36px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover efek */
.info-footer a:hover {
  background: #fff;
  color: #000;
  cursor: pointer;
}

/* Klik efek responsif */
.info-footer a:active {
  transform: scale(0.96);
}

/* Biar konten vertikal (Informasi, Alamat, Telepon) tersusun ke bawah */
.info-text {
  text-align: center;
  display: flex;
  flex-direction: column; /* dari horizontal ke vertikal */
  align-items: center;
  gap: 25px; /* jarak antar elemen */
}

/* Khusus untuk "Informasi" */
.info-text .info-title {
  font-size: 1.9rem; /* ubah sesuai selera */
}

/* Map responsive */
.info-map {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

/* Hilangkan celah putih */
body, html {
  margin: 0;
  padding: 0;
}

/* ===== Efek tabung untuk judul "Informasi" dan "Maps" ===== */
.info-title {
  display: inline-block;
  background: rgba(0, 0, 0, 0.35); /* hitam transparan default */
  color: #fff;                    /* teks putih default */
  font-weight: 900;               /* bold */
  padding: 10px 40px;
  border-radius: 30px;            /* bentuk tabung */
  text-align: center;
  transition: all 0.3s ease;      /* efek halus hover/klik */
}

/* Hover warna tulisan "Informasi" biar hitam (bukan biru) */
.info-title:hover {
  background: #fff;
  color: #000 !important; /* pakai !important untuk paksa override */
  cursor: pointer;
}

.info-title:active {
  transform: scale(0.97); /* efek tekan responsif */
}

/* ===== Efek tabung untuk Alamat dan Telepon ===== */
.info-item {
  display: inline-block;
  background: rgba(0, 0, 0, 0.35); /* tabung hitam transparan */
  color: #fff;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 30px;
  margin-top: 15px;
  transition: all 0.3s ease;
  max-width: 700px;
}

/* Hapus margin paragraf di dalam info-item biar rapih */
.info-item p, .info-item h3 {
  margin: 5px 0;
}

/* Hover efek info-item */
.info-item:hover {
  background: #fff;  /* putih saat hover */
  color: #000;       /* teks hitam */
  cursor: pointer;
}

/* Klik efek */
.info-item:active {
  transform: scale(0.97);
}

/* ===== Styling khusus untuk TELEPON ===== */
.telepon .phone-box {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4); /* tabung transparan gelap tipis */
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.4); /* lapisan double */
  margin-left: 10px; /* jarak dari teks 'Telepon:' */
}

/* Hover efek tabung no HP */
.telepon .phone-box:hover {
  background: #00bfff; /* biru cerah saat hover */
  color: #000;         /* teks hitam */
  border-color: #00bfff;
  transform: scale(1.05);
  cursor: pointer;
}

/* Klik efek kecil */
.telepon .phone-box:active {
  transform: scale(0.97);
}

/* === Override khusus untuk card Affiliate === */
.bisnis-card.bisnis-card-affiliate {
  width: 300px; 
  padding: 23px 13px;
}

/* === HERO SLIDES UNIVERSAL FIX === */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000; /* fallback kalo gambar gak sempet load */
  z-index: 1;
}

.hero-slideshow .slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  animation: fade 1s ease;
}

.hero-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  z-index: 2;
}

.hero-slideshow .slide.active {
  display: block;
}

.hero-slideshow .caption {
  position: absolute;
  bottom: 15%;
  left: 5%;
  color: #fff;
  z-index: 5;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

@keyframes fade {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* === OVERRIDE SELECT LULUSAN (RAPIH & PRESISI) === */
.registration-section {
  position: relative;
}

.registration-section .select-wrapper {
  position: relative;
  width: 100%;
}

/* Style dasar select */
.registration-section select[name="lulusan"] {
  width: 100%;
  padding: 12px 40px 12px 15px; /* ruang kanan buat panah */
  margin-top: 10x;
  margin-bottom: 12px; 
  border: none;
  border-radius: 10px;
  background-color: #fff; /* default putih terang */
  color: #000; /* teks hitam */
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  appearance: none; /* hilangin default arrow */
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Panah custom */
.registration-section .select-wrapper::after {
  content: "▼";
  font-size: 12px;
  color: #000; /* default hitam */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Hover/focus efek */
.registration-section select[name="lulusan"]:hover,
.registration-section select[name="lulusan"]:focus {
  background-color: #000; /* latar jadi hitam */
  color: #fff; /* teks jadi putih */
  outline: none;
}

/* Panah ikut berubah warna saat hover/focus */
.registration-section .select-wrapper:hover::after,
.registration-section .select-wrapper:focus-within::after {
  color: #fff; /* panah jadi putih saat hover/fokus */
}

/* === OVERRIDE: biar form lulusan ikut hitam pas hover di container === */
.registration-section:hover select[name="lulusan"] {
  background-color: #000;
  color: #fff;
}

.registration-section:hover .select-wrapper::after {
  color: #fff;
}

/* === Default putih saat tidak hover === */
.registration-section .registration-content select[name="lulusan"] {
  background-color: #fff !important;
  color: #000 !important;
}

/* === Hover container jadi hitam === */
.registration-section .registration-content:hover select[name="lulusan"] {
  background-color: #000 !important;
  color: #fff !important;
}

/* === Warna panah ikut berubah === */
.registration-section .registration-content:hover .select-wrapper::after {
  color: #fff !important;
}

/* === FIX: default select warna putih tapi ikut hover container === */
.registration-section .select-wrapper select[name="lulusan"] {
  background-color: #fff !important;
  color: #000 !important;
}

/* Saat hover di seluruh form-box (biar ikut efek hitam kayak input lain) */
.registration-section .form-box:hover select[name="lulusan"] {
  background-color: #000 !important;
  color: #fff !important;
}

/* Panah dropdown juga ikut berubah */
.registration-section .form-box:hover .select-wrapper::after {
  color: #fff !important;
}

/* ===== FIX KHUSUS SECTION REGISTRASI SELECT LULUSAN ===== */
#registrasi .select-wrapper select[name="lulusan"] {
  background-color: #fff !important; /* default putih */
  color: #000 !important;           /* teks hitam */
  border: 1px solid #ccc;           /* biar sama input lain */
  padding: 8px 10px;
  border-radius: 5px;
  appearance: none;                 /* hapus style default browser */
}

/* ===== FIX KHUSUS SECTION REGISTRASI SELECT LULUSAN ===== */
#registrasi .select-wrapper {
  position: relative;       /* biar isolation jalan */
  z-index: 2;               /* biar di atas background */
}

#registrasi .select-wrapper select[name="lulusan"] {
  background-color: #fff !important;  /* paksa putih */
  color: #000 !important;            /* teks hitam */
  border: 1px solid #ccc !important;
  padding: 8px 10px;
  border-radius: 5px;
  appearance: none;                  /* hapus style default browser */
  z-index: 3;                        /* pastikan di atas semua layer */
  position: relative;
}

/* ===== FINAL SECTION REGISTRASI CSS CLEAN ===== */
#registrasi {
  position: relative;
  padding: 60px 20px; /* bisa disesuaikan */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* FORM BOX */
#registrasi .form-box {
  position: relative;
  margin-bottom: 20px;
}

/* INPUT & SELECT UMUM */
#registrasi input,
#registrasi textarea,
#registrasi select[name="lulusan"] {
  width: 100%;
  padding: 12px 15px;
  margin-top: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff !important;
  color: #000 !important;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none; /* hapus style default browser */
}

/* HOVER & FOCUS EFFECT */
#registrasi input:hover,
#registrasi input:focus,
#registrasi textarea:hover,
#registrasi textarea:focus,
#registrasi select[name="lulusan"]:hover,
#registrasi select[name="lulusan"]:focus,
#registrasi .select-wrapper:hover select[name="lulusan"] {
  background-color: #000 !important;
  color: #fff !important;
  outline: none;
}

/* PANAH CUSTOM SELECT */
#registrasi .select-wrapper {
  position: relative;
  z-index: 2;
}

#registrasi .select-wrapper::after {
  content: "▼";
  font-size: 12px;
  color: #000;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s ease;
}

#registrasi .select-wrapper:hover::after,
#registrasi select[name="lulusan"]:hover + ::after,
#registrasi select[name="lulusan"]:focus + ::after {
  color: #fff;
}

/* LABEL */
#registrasi label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

/* TEXTAREA TINGGI FIX */
#registrasi textarea {
  min-height: 120px;
  resize: vertical;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  #registrasi {
    padding: 40px 15px;
  }
}

/* ===== PAKSA SELECT LULUSAN DEFAULT PUTIH 100% ===== */
#registrasi .select-wrapper select[name="lulusan"] {
  background-color: #fff !important; /* paksa putih terang */
  color: #000 !important;            /* teks hitam */
  border: 1px solid #ccc !important;
  border-radius: 10px;
  padding: 12px 40px 12px 15px;
  appearance: none;
  z-index: 5;                        /* pastikan di atas semua layer */
  position: relative;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* ===== DEFAULT SELECT LULUSAN SELALU PUTIH ===== */
#registrasi .select-wrapper select[name="lulusan"] {
  background-color: #fff !important; /* paksa putih */
  color: #000 !important;            /* teks hitam */
  border: 1px solid #ccc !important;
  border-radius: 10px;
  padding: 12px 40px 12px 15px;
  appearance: none;
  position: relative;
  z-index: 5;                        /* di atas semua bg container */
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* HOVER/FOKUS hanya berlaku pada SELECT itu sendiri */
#registrasi .select-wrapper select[name="lulusan"]:hover,
#registrasi .select-wrapper select[name="lulusan"]:focus {
  background-color: #000 !important;
  color: #fff !important;
  outline: none;
}

/* PANAH */
#registrasi .select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #000;
  font-size: 12px;
  z-index: 6;
  transition: all 0.3s ease;
}

#registrasi .select-wrapper select[name="lulusan"]:hover + ::after,
#registrasi .select-wrapper select[name="lulusan"]:focus + ::after {
  color: #fff;
}

/* ===== FIX DEFAULT SELECT LULUSAN SAJA ===== */
#registrasi .select-wrapper select[name="lulusan"] {
  background-color: #fff !important; /* paksa putih default */
  color: #000 !important;            /* teks hitam default */
}

/* Override caption container agar fleksibel */
.about-text {
  display: inline-block; /* biar tinggi mengikuti teks */
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5); /* transparansi jernih */
  border-radius: 12px;
  color: #fff;
  max-width: 100%; /* jangan overflow horizontal */
  word-wrap: break-word; /* pecah kata panjang */
  line-height: 1.5;
}

/* Override textarea saat edit */
#aboutInput {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-family: Poppins;
  resize: vertical; /* user bisa tarik height tapi tetap terbatas */
  max-height: 400px; /* biar gak terlalu panjang */
  overflow-y: auto;
}


/* ===== Override Bisnis Section di Admin ===== */
.bisnis-section .bisnis-card {
    text-decoration: none !important; /* hilangkan underline dari <a> */
}

.bisnis-section .bisnis-card h3,
.bisnis-section .bisnis-card p {
    text-decoration: none !important; /* aman tambahan */
    color: inherit; /* tetap jaga warna default */
}

.info-map {
  flex: 1.5;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.info-map:hover {
  transform: scale(1.02);
}

/* Ukuran iframe peta yang lebih gepeng */
.info-map iframe {
  width: 100% !important;
  height: 220px !important; /* dari 350px jadi 220px biar lebih gepeng */
  border: none !important;
  border-radius: 15px;
  display: block;
}

/* ===== Hero Slideshow Dots (FIX Tengah & Rapat) HERO INDEX DOTS ===== */
.hero-slideshow .dots {
  position: absolute;
  bottom: 30px;          /* jarak dari bawah */
  left: 50%;             /* posisikan tengah */
  transform: translateX(-50%);
  display: flex;
  justify-content: center;  /* pastikan items center */
  gap: 1px !important;      /* jarak antar dots, lebih rapat */
  z-index: 20;
  pointer-events: auto;
}

.hero-slideshow .dots .dot {
  width: 10px;          /* ukuran bulat */
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
  background: transparent;   /* bolong */
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-slideshow .dots .dot.active {
  transform: scale(1.3);
  border-color: #00b894;   /* warna hijau aktif */
}

.hero-slideshow .dots .dot:hover {
  transform: scale(1.2);
  border-color: #00b894;
}

/* ===== OVERRIDE SECTION BISNIS ===== */
.bisnis-section {
  position: relative !important;
  min-height: 120vh !important; /* samain dengan registrasi */
  padding: 0 !important; /* hapus padding supaya bg full */
  text-align: center !important;
  color: #fff !important;

  /* Background */
  background-image: url('bisnis.png');
  background-repeat: no-repeat !important;
  background-position: top center !important; /* mulai dari atas */
  background-size: 100% auto !important; /* width 100%, tinggi menyesuaikan */
  background-attachment: scroll !important;

  overflow: hidden !important; /* supaya bg tetap rapi */
}

/* ===== CONTACT SECTION OVERRIDE ===== */
#contact {
  min-height: 120vh !important; /* override 85vh sebelumnya */
  position: relative !important;
  background: url('contact.png') no-repeat center center/cover;
  color: #fff !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 70px 40px !important;
  text-align: center !important;
  z-index: 1 !important;
}

/* ===== OVERRIDE SECTION BISNIS FULL SCREEN ===== */
.bisnis-section {
  position: relative !important;
  min-height: 120vh !important; /* tinggi section */
  padding: 0 !important; /* hapus padding supaya bg full */
  text-align: center !important;
  color: #fff !important;
  overflow: hidden !important;

  /* Background full */
  background-image: url('bisnis.png');
  background-size: cover !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll !important;
}

.bisnis-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('bisnis.png') top center/cover ;
  z-index: -1;
}

