:root {
    --primary-color: #2E7D32;
    /* Forest Green */
    --secondary-color: #4CAF50;
    /* Medium Green */
    --accent-color: #8BC34A;
    /* Light Green */
    --dark-color: #1B5E20;
    /* Dark Green */
    --light-color: #E8F5E9;
    /* Ultra Light Green */
    --text-color: #212121;
    --text-light: #757575;
    --white: #ffffff;
}

body {
    /* font-family: 'Poppins', sans-serif; */
    color: var(--text-color);
    line-height: 1.6;
}



.hero-content {
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    font-weight: 600;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title:after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: none;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card {
    height: 100%;
    position: relative;
}

.package-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    padding: 20px;
    border: none;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    padding: 8px 30px;
    z-index: 2;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}



.gallery-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
    transform: scale(1.03);
}

.amenities-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    flex-shrink: 0;
}

.review-card {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.review-card .user-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--accent-color);
}

.review-card .user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .stars {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.itinerary-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
    border-left: 2px solid var(--secondary-color);
    margin-left: 20px;
}

.itinerary-item:last-child {
    border-left: none;
    padding-bottom: 10px;
}

.itinerary-item:before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    left: -12px;
    top: 0;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.itinerary-time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.faq-item {
    margin-bottom: 25px;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin: 60px 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/api/placeholder/200/200') center center;
    opacity: 0.1;
    z-index: -1;
}


.btn-book {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.6);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-spacing {
    padding: 80px 0;
}

.sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 15px;
    box-shadow: 0 -3px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}





/* .navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
} */

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    border: none;
}
/* Responsive untuk mobile (max 768px) */
@media (max-width: 768px) {
    .whatsapp-float {
      bottom: 90px;
      width: 50px;
      height: 50px;
      font-size: 26px;
    }
  }

@media (max-width: 767px) {
    .sticky-booking {
        display: block;
    }

    .hero-section {
        padding: 100px 0;
    }

    .section-title {
        text-align: center;
    }

    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .itinerary-item {
        padding-left: 30px;
    }
}
