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

.tour-details-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.tour-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

/* LEFT PANEL */
.tour-sidebar {
    background: #fff;
    padding: 30px;
}

.tour-title {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 15px;
}

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

.tour-price {
    font-weight: 600;
    margin-bottom: 15px;
}

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

.tour-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.call-btn {
    background: #c7a54a;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.tour-image img {
    width: 100%;
}

/* 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;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.plus-box {
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-content {
    display: none;
    padding: 10px 0 20px 45px;
    font-size: 14px;
    color: #555;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .plus-box {
    background: #c7a54a;
}

/* RELATED TOURS */
.related-tours {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tour-card {
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #c7a54a;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.tour-card h3 {
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.tour-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.tour-card a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

@media (max-width: 992px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .related-tours {
        grid-template-columns: 1fr;
    }
}