:root {
  --primary-color: #009639;
  --secondary-color: #000000;
  --accent-color: #1A1A1A;
  --bg-color: #FFFFFF;
  --text-color: #212529;
  --card-radius: 15px;
}

body {
  background-color: var(--bg-color);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
}

/* --- Navbar Style --- */
.navcontainer {
  background-color: #ffffff;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  min-height: 60px;
  display: flex;
  align-items: center;
}


.logo {
  color: var(--primary-color);
  font-weight: 1000;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: 70px;
  object-fit: contain;
  max-width: 100%;
}

/* ... sisa css nav ul ... */

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding-bottom: 5px;
}

/* Efek Hover & Active */
nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
}

/* --- Buttons --- */
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: #04de58;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #04de58;
  border: none;
  color: white;
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 600;
}

/* --- Hero Section (Home) --- */
.hero-travel {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/produk10.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: left;
}

/* --- Page Header (Halaman Lain) --- */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2D6B58 100%);
  color: white;
  padding: 60px 0;
  margin-bottom: 50px;
}

/* --- Cards --- */
.program-card {
  height: 350px;
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  cursor: pointer;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.program-card:hover img {
  transform: scale(1.1);
}

.program-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  text-align: center;
}

/* --- Quote Section --- */
.quote-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/quote.jpg');
  background-attachment: fixed;
  background-size: cover;
  color: white;
  padding: 100px 0;
}

/* --- Form --- */
.form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-header {
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

/* --- Footer --- */
footer {
  background-color: #2D6B58 !important;
  color: white;
}

/* --- FAQ Section --- */
.accordion-item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--primary-color);
  box-shadow: none;
  border-bottom: 1px solid #f0f0f0;
}

.accordion-button.collapsed {
  background-color: #f8f9fa;
  color: #333;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .125);
}

.accordion-button {
  font-size: 1.1rem;
  padding: 20px;
}

/* Team Section Background */
.team-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/produk10.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
  padding: 80px 0;
}

/* Foto Profil Tim (Lingkaran) */
.team-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s;
}

.team-card-bg:hover .team-img {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

/* Card Team Background (Glassmorphism) */
.team-card-bg {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: transform 0.3s;
}

.team-card-bg:hover {
  transform: translateY(-5px);
}

/* Icon Grid Box */
.icon-box {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
}

.icon-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 15px;
}

/* Video Placeholder */
.video-placeholder {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: white;
  opacity: 0.8;
  transition: 0.3s;
}

.video-placeholder:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Partnership Icon */
.partnership-icon {
  font-size: 8rem;
  color: var(--secondary-color);
}

/* Card Paket Style */
.package-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgb(255, 221, 0);
  border-color: var(--primary-color);
}

.package-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.package-card:hover .package-img-wrapper img {
  transform: scale(1.1);
}

.price-tag {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.1rem;
}

.duration-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

/* Tombol Filter */
.filter-btn {
  border-radius: 30px;
  padding: 8px 25px;
  margin: 0 5px 10px;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

/* Item Galeri */
.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  /* Tinggi seragam */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Efek Zoom saat Hover */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay Gelap dengan Teks */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(194, 88, 12, 0.71);
  /* Ungu Transparan */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: translateY(0);
}

/* Kartu Kontak */
.contact-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(106, 27, 154, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(106, 27, 154, 0.1);
  /* Ungu Transparan */
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.contact-box:hover .contact-icon {
  background: var(--primary-color);
  color: white;
}

/* Peta Google Maps */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Statistik Header */
.stat-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #eee;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* Kartu Testimoni */
.review-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(106, 27, 154, 0.1);
}

/* Ikon Kutipan Besar di Background */
.quote-icon-bg {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

/* Profil User */
.user-profile img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f8f9fa;
}

/* Video Thumbnail */
.video-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover img {
  transform: scale(1.1);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  opacity: 0.8;
  transition: 0.3s;
}

.video-card:hover .play-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

/* --- FIX: Reduced Vertical Spacing in Mobile Menu --- */
@media (max-width: 991px) {

  /* Target menu dropdown saat terbuka */
  .navbar-collapse {
    /* Tambahkan padding horizontal agar konten tidak menempel ke tepi layar */
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 10px;
    /* Jaga padding atas/bawah agar tidak terlalu rapat */
    padding-bottom: 10px;
  }

  /* Target the list items inside the collapsed menu (untuk vertikal spacing) */
  #navbarNavContent #nav-list li {
    margin-bottom: 0 !important;
    padding-top: 2px;
    padding-bottom: 2px;
    /* Padding horizontal di link akan otomatis ikut padding collapse di atas */
  }

  /* Target the links themselves */
  #navbarNavContent .nav-link {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    font-size: 1.1rem;
    text-align: left;
    /* Pastikan teks rata kiri */
  }
}

.border-kingbull {
  border-color: #009639 !important;
}

.text-kingbull {
  color: #009639 !important;
}