.tour-details {
    background: #f5f5f5;
    padding: 80px 20px;
}

.tour-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
}

/* LEFT CARD */
.tour-left {
    background: #f0f0f0;
    padding: 35px;
}

.tour-left h3 {
    font-family: 'Georgia', serif;
    font-size: 26px;
    margin-bottom: 25px;
}

.starting {
    font-size: 14px;
    color: #555;
}

.price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: #c7a54a;
    margin: 20px 0;
}

.description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.tour-left img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* RIGHT SIDE */
.accordion-item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 20px;
    font-family: 'Georgia', serif;
    cursor: pointer;
}

/* LOCATIONS GRID */
.locations {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location h4 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.location p {
    font-size: 14px;
    color: #666;
}

/* ====================== */
/* Tablet */
@media (max-width: 992px) {
    .tour-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .locations {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================== */
/* Mobile 375px */
@media (max-width: 480px) {

    .tour-details {
        padding: 60px 15px;
    }

    .tour-left {
        padding: 25px;
    }

    .accordion-item {
        font-size: 18px;
    }

    .locations {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location h4 {
        font-size: 18px;
    }
}
/* Accordion */
.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-size: 22px;
    font-family: 'Georgia', serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .icon {
    font-size: 20px;
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0;
}

.accordion-content p,
.accordion-content ul {
    padding: 15px 0 20px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* Slider */
.tour-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-top: 20px;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slides.active {
    opacity: 1;
}