/* ===============================
   GLOBAL ACTIVE MENU
================================ */
.ltn__main-menu li.active a {
    background-color: #e53e2a !important;
}

.ltn__utilize-menu li.active a {
    background-color: #e53e2a !important;
    color: white !important;
    padding-left: 20px;
}

/* ===============================
   WHATSAPP FLOAT
================================ */
.whatsapp-contact {
    position: fixed;
    right: 80px;
    bottom: 40px;
    z-index: 100;
}

@media (min-width: 992px) {
    .whatsapp-contact {
        right: 150px;
        bottom: 60px;
    }
}

/* ===============================
   TEXT
================================ */
.text-justify {
    text-align: justify;
}

/* ===============================
   BLOG HOVER IMAGE
================================ */
.ltn__blog-itemm .ltn__blog-img {
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.ltn__blog-itemm:hover .ltn__blog-img {
    display: block;
    opacity: 1;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ltn__blog-itemm .ltn__blog-brief {
    position: relative;
    z-index: 2;
}

.blog-itemm-wrapper {
    position: relative;
}

/* ===============================
   ITINERARY
================================ */
.itinerary-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 30px;
}

.itinerary-left {
    width: 40%;
    padding-right: 12px;
}

.itinerary-title {
    font-weight: 600;
    margin-bottom: 16px;
}

.itinerary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.itinerary-list::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: #ff6b57;
    z-index: 1; /* GARIS */
}

.itinerary-item {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    cursor: pointer;
}

.timeline-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ff6b57;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* ICON */
}

.timeline-content {
    background: #f8f9fa;
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%;
}

.itinerary-item.active .timeline-content {
    border: 2px solid #ff6b57;
    background: #fff;
}

.itinerary-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 16px;
}

.itinerary-right {
    width: 60%;
}

/* ===============================
   ABOUT TOUR
================================ */
.about-this-tour-section {
    margin-top: 40px;
}

.about-this-tour-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-tour-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-tour-list li {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.about-tour-list i {
    font-size: 20px;
    color: #ff6b57;
    width: 24px;
}

.about-tour-list .label {
    font-size: 13px;
    color: #888;
}

.about-tour-list .value {
    font-size: 15px;
    font-weight: 500;
}

/* ===============================
   BOOKING STICKY
================================ */
.booking-sticky {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===============================
   PRICE
================================ */
.price-box small {
    font-size: 13px;
    color: #6b7280;
}

.price-main {
    display: flex;
    flex-direction: column;
}

.price-main strong {
    font-size: 22px;
}

#total-price-dynamic {
    font-size: 22px;
    font-weight: 700;
}

/* ===============================
   DROPDOWN COUNTER
================================ */
.dropdown-counter {
    position: relative;
}

.dropdown-label {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
}

.counter-box {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    animation: fadeSlide 0.25s ease;
}

.dropdown-counter.active .counter-box {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.counter-control {
    display: flex;
    gap: 8px;
}

.counter-control input {
    width: 40px;
    text-align: center;
}

.counter-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #2563eb;
    background: white;
    color: #2563eb;
    cursor: pointer;
}

/* ===============================
   BOOKING BUTTON
================================ */
.booking-btn {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.booking-btn:hover {
    background: #1ebe5d;
}

/* ===============================
   HIGHLIGHTS
================================ */

.highlights-list li::before {
    /* content: "âœ”"; */
    color: #22c55e;
    margin-right: 8px;
}

/* ===============================
   NOT SUITABLE
================================ */
.not-suitable-for-item::before {
    content: "âœ–";
    color: #ef4444;
    margin-right: 8px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .itinerary-wrapper {
        flex-direction: column;
    }

    .itinerary-left,
    .itinerary-right {
        width: 100%;
    }

    #map-itinerary {
        height: 320px;
    }

    .booking-sticky {
        position: relative;
    }
}
.booking-select {
    background: #f3f4f6;
    border-radius: 999px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.booking-select i {
    color: #6b7280;
    font-size: 16px;
}

.booking-select input[type="date"] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 14px;
    color: #111827;
    cursor: pointer;
}

/* HILANGKAN ICON DEFAULT BROWSER (opsional) */
.booking-select input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.not-suitable-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-information-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 450px;
    border: 0;
}