/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}

/*** Produk ***/
.product-section {
  padding: 60px 20px;
}

.product-filter {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 20px;
}

.filter-btn.active {
  background: #4CAF50;
  color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* Filter */
.filter-btn {
    padding: 8px 18px;
    border: none;
    border-radius: 20px;
    margin: 5px;
    background: #eee;
    cursor: pointer;
}

.filter-btn.active {
    background: #4CAF50;
    color: #fff;
}

/* Button bawah */
.see-more {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    padding: 14px 35px;
    background: #4CAF50;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/*** Detail Produk ***/
.pd-section {
  padding: 50px 0;
}

.pd-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.pd-main-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.pd-title {
  font-size: 30px;
  font-weight: 700;
}

.pd-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
  margin: 10px 0;
}

.pd-desc {
  margin-bottom: 20px;
  color: #555;
}

/* BOX */
.pd-box {
  margin-bottom: 25px;
}

.pd-box h3 {
  margin-bottom: 10px;
}

.pd-box ul {
  padding-left: 18px;
}

/* CTA */
.pd-cta {
  margin: 30px 0;
  padding: 25px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2c7be5, #4da3ff);
  color: #fff;
  text-align: center;
}

.pd-btn-cta {
  display: inline-block;
  background: #fff;
  color: #2c7be5;
  padding: 10px 20px;
  border-radius: 8px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
}

/* GALLERY */
.pd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pd-gallery img {
  width: 100%;
  border-radius: 8px;
}

/* RIGHT */
.pd-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.pd-price {
  font-size: 26px;
  font-weight: bold;
  color: #2c7be5;
  margin-bottom: 15px;
}

.pd-card form {
  display: flex;
  flex-direction: column;
}

.pd-card label {
  margin-top: 10px;
  font-size: 14px;
}

.pd-card input,
.pd-card select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.pd-summary {
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
}

.pd-btn-book {
  background: #2c7be5;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
}

.pd-trust {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pd-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pd-title {
    font-size: 22px;
  }

  .pd-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tour-cta {
  margin: 30px 0;
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2c7be5, #4da3ff);
  color: #fff;
  text-align: center;
}

.cta-content h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: #2c7be5;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: #f1f1f1;
}

/*** Cart ***/
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.cart-table th, .cart-table td {
  border: 1px solid #ddd;
  padding: 12px;
}

.cart-table th {
  background: #f5f5f5;
  text-align: left;
}

.cart-product {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-product img {
  width: 70px;
  border-radius: 6px;
}

.cart-qty {
  display: flex;
  align-items: center;
}

.cart-qty button {
  padding: 5px 10px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.cart-summary {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
}

.cart-action {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-checkout {
  background: #2c7be5;
  color: #fff;
  padding: 10px 20px;
  border: none;
}

/*** Checkout ***/
.co-section {
  padding: 50px 0;
}

.co-title {
  margin-bottom: 20px;
}

.co-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.co-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.co-card input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.co-payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-pay-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
}

.co-pay-card:hover {
  border-color: #2c7be5;
}

.co-pay-card.active {
  border: 2px solid #2c7be5;
  background: #f0f6ff;
}

.co-pay-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.co-pay-content img {
  width: 40px;
}

.co-pay-content small {
  color: #666;
}

.co-btn {
  width: 100%;
  padding: 14px;
  background: #2c7be5;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
}

.co-summary {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.co-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.co-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 18px;
}

/* MOBILE */
@media(max-width:768px){
  .co-grid {
    grid-template-columns: 1fr;
  }
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}