
@media (max-width: 600px) {
    .calendar-grid {
        display: flex;
        flex-direction: column; /* Tumpuk vertikal */
        gap: 10px; /* Jarak antar bulan */
    }

    .calendar-month {
        width: 100%; /* Full lebar di mobile */
    }
}
.tours-details__list li i {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    /* Custom Gallery Styles */
    .tours-details__gallery-slider {
        margin-bottom: 30px;
    }

    .slider-container {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .slide {
        display: none;
        width: 100%;
        transition: opacity 0.5s ease-in-out;
    }

    .slide.active {
        display: block;
    }

    .slide img {
        width: 100%;
        display: block;
        border-radius: 8px;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .prev-btn,
    .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        font-size: 18px;
        border-radius: 5px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

    .prev-btn:hover,
    .next-btn:hover {
        opacity: 1;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .thumbnail-container {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .thumbnail {
        width: calc(25% - 7.5px);
        height: auto;
        border-radius: 6px;
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.3s ease;
        border: 2px solid transparent;
    }

    .thumbnail:hover,
    .thumbnail.active {
        opacity: 1;
        border-color: #0d3b66;
    }

    /* Custom Calendar Styles */
    .calendar-container {
        padding: 20px;
        background: #f8f8f8;
        border-radius: 8px;
        margin-top: 35px;
        font-family: Arial, sans-serif;
    }
    
    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .calendar-header h5 {
        margin: 0;
        font-size: 16px;
        font-weight: bold;
        color: #0d3b66;
    }
    
    .calendar-title-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-grow: 1;
    }
    
    .calendar-btn {
        background: transparent;
        border: none;
        color: #0d3b66;
        font-size: 18px;
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s;
    }
    
    .calendar-btn:hover {
        color: #1e5c8e;
    }
    
    .calendar-grid {
        display: flex;
        gap: 20px;
    }
    
    .calendar-month {
        flex: 1;
    }
    
    .week-days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        font-weight: bold;
        color: #777;
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .dates {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        gap: 3px;
    }
    
    .date {
        padding: 8px 0;
        border-radius: 4px;
        cursor: pointer;
        transition: background 0.2s;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid transparent;
    }
    
    .date.available {
        background: transparent;
        color: #333;
    }
    
    .date.available:hover {
        background: #e6f7e9;
        border-color: #138848;
    }
    
    .date.not-available {
        background: #eaeaea;
        color: #a0a0a0;
        cursor: not-allowed;
    }
    
    .date.selected {
        background: #138848;
        color: #fff;
        font-weight: bold;
        border-color: #138848;
    }
    
    .date.selected:hover {
        background: #106f39;
    }
    
    .date.inactive {
        color: #ccc;
        cursor: default;
        background: transparent;
    }
    
    .date.past-date {
        background: transparent;
        color: #b0b0b0;
        cursor: not-allowed;
    }

    .date.past-date:hover {
        background: transparent;
        border-color: transparent;
    }
    
    .calendar-legend {
        margin-top: 25px;
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        font-size: 12px;
        color: #555;
    }
    
    .legend-item {
        display: flex;
        align-items: center;
    }
    
    .legend-color {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-right: 5px;
    }
    
    .legend-color.available {
        background: transparent;
        border: 1px solid #138848;
    }
    
    .legend-color.selected {
        background: #138848;
    }
    
    .legend-color.booked {
        background: #eaeaea;
        border: 1px solid #ddd;
    }
    
    .legend-color.past-date {
        background: transparent;
        border: 1px solid #b0b0b0;
    }
/*@media (max-width: 600px) {*/
/*  .calendar-grid {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 10px;*/
/*  }*/
/*  .calendar-month {*/
/*    width: 100%;*/
/*  }*/
/*  .calendar-header {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    margin-bottom: 10px;*/
/*    font-weight: bold;*/
/*    color: #0d3b66;*/
/*    font-size: 16px;*/
/*  }*/
/*}*/

