

body > .container {
    max-width: 1400px;
    margin: -20px auto 20px;
    display: flex;
    /*flex-direction: row;*/
    flex-direction: row-reverse;
    gap: 20px;
    padding: 0 15px;
}


.container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: block;
}

.main-content {
    /*flex: 0.73;*/
    flex: 1;
    border-radius: 10px;
    padding: 20px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.sidebar {
    width: 350px;
/*    position: fixed;
    top: 10%;
    right: 72%;*/
}

/* Header Styles */
.tour-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    margin-top: -23px;
}

    .tour-header h1 {
        font-size: 25px;
        margin-bottom: 10px;
        font-weight: bold;
    }

.tour-code {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.tour-info {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.tour-type, .hotel-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

    .hotel-stars i {
        color: #ffc107;
    }

/* Tour Features */
.tour-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.tour_Day_txt_w {
    flex:0.6;
}
.tour_Day_Img {
    flex:0.4;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    width: 23%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 18px;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 1px;
    color: #666;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.feature-detail {
    font-weight: bold;
    font-size: 16px;
}

/* Notices */
.tour-notices {
    margin-bottom: 30px;
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #10553F0D;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

    .notice i {
        color: #0d6efd;
        font-size: 20px;
        margin-top: 3px;
    }

.tour_Days {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: #fff;
}

    .tour_Days h4 {
        background-color: #fff;
        font-size: 21px;
        padding: 10px 13px;
        font-style: normal;
        font-weight: 600;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .tour_Days hr {
        width: 90%;
        align-items: center;
        text-align: center;
        align-self: center;
        border-top: 0.2px solid #12121257;
    }

.tour_Day {
    display: flex;
    flex-direction: row;
    background-color: #fff;
    padding: 20px 15px;
    /* margin: 10px; */
    /* border-bottom: 1px solid #33333345; */
}

    .tour_Day:last-child {
        border-bottom: none;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

.tour_Day_Img img {
    width: 80%;
    height: 205px;
    border-radius: 8px;
    position: relative;
    right: 26px;
}

.day_details {
    padding: 50px 35px 34px;
    text-align: justify;
    background-color: #fff;
    border-radius: 8px;
    font-size: 14px;
}
/* Tour Services and Summary */
.tour-services, .tour-summary, .cancellation-rules {
    margin-bottom: 30px;
    background: #fff;
    padding: 15px 18px;
    border-radius: 8px;
}

    .tour-services h2, .tour-summary h2, .cancellation-rules h2 {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: bold;
    }

.service, .summary-item {
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 15px;
    background-color: #fff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
}

.faq-answer {
    padding-top: 10px;
    display: none;
    color: #666;
    font-size: 15px;
}

section {
    padding: 20px;
    margin-bottom: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}
/* Cancellation Rules */
.cancellation-rules ul {
    list-style-type: disc;
    padding-right: 20px;
}

.cancellation-rules li {
    margin-bottom: 10px;
}

/* Sidebar Cards */
.contact-card, .booking-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .contact-card p {
        margin-bottom: 10px;
        text-align: center;
    }

.consultation-btn {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    color: #0a6e51;
    border: 2px solid #0a6e51;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s;
}

    .consultation-btn:hover {
        background-color: #0a6e51;
        color: #fff;
    }

/* Booking Card */
.booking-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.booking-card p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.month-tabs {
    display: flex;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.month-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

    .month-tab.active {
        background-color: #0a6e51;
        color: #fff;
        border-color: #0a6e51;
    }

.date-selector {
    margin-bottom: 20px;
}

    .date-selector p {
        text-align: right;
        margin-bottom: 5px;
    }

.date-picker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
}

.travelers-selector {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
}

.travelers-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.travelers-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
}

    .counter-btn:hover {
        background-color: #f5f5f5;
    }

.travelers-total {
    text-align: center;
    font-weight: bold;
}

.price-info {
    margin-bottom: 20px;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-amount {
    text-align: left;
}

.toman {
    font-weight: bold;
    font-size: 18px;
}

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

.view-rooms-btn {
    width: 100%;
    padding: 12px;
    background-color: #0a6e51;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

    .view-rooms-btn:hover {
        background-color: #085a42;
    }

/* Share Button */
.share-section {
    display: flex;
    justify-content: flex-end;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: #0a6e51;
    cursor: pointer;
    font-size: 14px;
}

    .share-btn i {
        font-size: 16px;
    }

.hotel-header {
    display: inline-block;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hotel-header-Wrapper {
    display: flex;
    justify-content: space-between;
}

.back-link {
    display: inline-block;
    align-items: center;
    margin-bottom: 20px;
    color: #10553F;
    text-decoration: none;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.5fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item:first-child {
    border-top-left-radius: 0px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 0px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

    .gallery-item:nth-child(even) {
        border-radius: 0;
    }

    .gallery-item .caption {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
    }
/* Responsive */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .tour-features {
        flex-wrap: wrap;
    }

    .feature {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .feature {
        width: 100%;
    }
}
