:root {
  --primary-color: #02275B;
  --secondary-color: #CBA65A;
  --accent-color: #CBA65A;
  --bg-color: #F8F8F8;
  --text-color: #000000;
  --card-radius: 15px;
}

body {
  background-color: var(--bg-color);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
}

.navcontainer {
  background-color: hsl(0, 0%, 100%);
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  min-height: 60px;
  display: flex;
  align-items: center;
}


.logo {
  color: var(--primary-color);
  font-weight: 800;
  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%;
}


nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding-bottom: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-color);
}

.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: #FFDA4D;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #FFDA4D;
  border: none;
  color: white;
  border-radius: 5px;
  padding: 10px 25px;
  font-weight: 600;
}

.hero-travel {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/laporan26.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  text-align: left;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 60px 0;
  margin-bottom: 50px;
}

.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 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/bg.png');
  background-attachment: fixed;
  background-size: cover;
  color: white;
  padding: 100px 0;
}

.form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-header {
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

footer {
  background-color: #2D6B58 !important;
  color: white;
}

.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: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
  padding: 80px 0;
}

.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);
}

.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-box {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
}

.icon-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 15px;
}

.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 {
  font-size: 8rem;
  color: var(--secondary-color);
}

.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);
}

.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;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  height: 250px;
  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;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(194, 88, 12, 0.71);
  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);
}

.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);
  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;
}

.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;
}

.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);
}

.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);
}

.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;
}

.user-profile img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f8f9fa;
}

.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);
}

@media (max-width: 991px) {

  .navbar-collapse {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #navbarNavContent #nav-list li {
    margin-bottom: 0 !important;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  #navbarNavContent .nav-link {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    font-size: 1.1rem;
    text-align: left;
  }
}

.border-kjazatr {
  border-color: var(--primary-color) !important;
}

.text-kjazatr {
  color: var(--primary-color) !important;
}