﻿
.site-header > .container {
    max-width: 1300px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

html {
    scroll-behavior: smooth;
}

.leaflet-container {
    height: 70vh;
}

/* Header Styles */
.back-link {
    display: inline-block;
    align-items: center;
    margin-bottom: 20px;
    color: #10553F;
    text-decoration: none;
}

    .back-link i {
        margin-left: 5px;
    }

.hotel-header {
    display: inline-block;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hotel-info {
    flex: 1;
}

.hotel-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hotel-address {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

    .hotel-address i {
        margin-left: 5px;
    }

.hotel-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.star {
    color: gold;
    margin-left: 2px;
}

.hotel-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 12px;
    cursor: pointer;
}

    .action-btn i {
        font-size: 18px;
        margin-bottom: 5px;
    }

/* Gallery Styles */
.gallery {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.5fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .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:nth-child(even) {
        border-radius: 0;
    }

    .gallery-item:nth-child(3), .gallery-item:nth-child(5) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-item:first-child {
        grid-row: span 2;
    }

    .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;
    }

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.nav-tab {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    padding-left: 50px;
}

.hotel-rating-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotel-rating-wrapper-item {
    border-radius: 8px;
    background: #F1F1F1;
    padding: 5px 10px;
    font-size: 14px;
}

.hotel_details_coments {
    display: inline-block;
    align-items: center;
    margin-bottom: 20px;
    color: #10553F;
    text-decoration: none;
    margin-top: 22px;
}

.hotel-header-Details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
}

.nav-tab {
    color: #333;
}

    .nav-tab.active {
        color: #10553F;
        font-weight: bold;
    }

.Hotel_Detail_wrapper {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.Hotel_Detail_wrapper_first {
    width: 69%;
}
/* Filter Section */
.filter-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-group {
    margin-bottom: 15px;
    min-width: 150px;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

    .checkbox-group input {
        margin-left: 8px;
    }

/* Room Counter */
.room-counter {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.counter-value {
    width: 40px;
    height: 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Amenities Section */
.amenities-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #fff;
    gap: 15px;
}

.hotel-booking-container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
    position: relative;
}

/* Booking Form Styles */
.booking-form-container {
    flex: 0 0 330px;
    background-color: #fff;
    border-radius: 8px;
    margin-right: 30px;
    padding: 20px;
    height: 330px;
    position: sticky;
    top: 20%;
    overflow-y: auto;
    overflow-x: visible;
    height: 383px;
}

.date-picker-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.date-picker {
    flex: 1;
}

    .date-picker label {
        display: block;
        font-size: 14px;
        color: #666;
        margin-bottom: 8px;
    }

.date-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    cursor: pointer;
}

    .date-input i {
        color: #999;
    }

.travelers-container {
    margin-bottom: 20px;
}

    .travelers-container label {
        display: block;
        font-size: 14px;
        color: #666;
        margin-bottom: 8px;
    }

.travelers-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
}

.travelers-counter {
    display: flex;
    align-items: center;
}

.counter-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .counter-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.counter-value {
    margin: 0 10px;
    font-size: 16px;
}

.travelers-text {
    flex-grow: 1;
    text-align: center;
}

.travelers-input i {
    color: #999;
}

.price-info {
    text-align: right;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.view-rooms-btn {
    width: 100%;
    padding: 12px;
    background-color: #006a4e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .view-rooms-btn:hover {
        background-color: #005a42;
    }

/* Hotel Info Styles */
.hotel-info-container {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 20px;
    position: relative;
}

.hotel-header {
    display: inline-block;
    justify-content: space-between;
    margin-bottom: 20px;
}

.hotel-title-location h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hotel-location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

    .hotel-location i {
        margin-left: 5px;
        color: #006a4e;
    }

.hotel-rating {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rating-box {
    background-color: #ff5722;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.stars-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hotel-type {
    font-size: 14px;
    color: #666;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .stars i {
        color: #ffc107;
    }

.score {
    font-size: 14px;
    color: #006a4e;
}

.reviews {
    display: flex;
    align-items: center;
    color: #006a4e;
    font-size: 14px;
    cursor: pointer;
}

    .reviews i {
        margin-left: 5px;
    }

.hotel-tabs {
    display: flex;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 20px;
    overflow-x: auto;
    position: relative;
}

.tab {
    padding: 10px 15px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

    .tab.active {
        color: #006a4e;
        font-weight: bold;
    }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: 0;
            left: 0;
            height: 2px;
            background-color: #006a4e;
        }

.share-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: auto;
    padding: 10px 15px;
    color: #006a4e;
    cursor: pointer;
}

.tab-content {
    position: relative;
}

    .tab-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

#features {
    margin-bottom: 90px;
}

.roomFilter {
    background-color: transparent;
    border: 1px solid #33333382;
    padding: 8px 15px;
    border-radius: 10px;
}

    .roomFilter.active {
        border: 1px solid #006a4e;
        color: #006a4e;
    }

.view-all-amenities {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    color: #006a4e;
    font-size: 14px;
    cursor: pointer;
    gap: 7px;
}

    .view-all-amenities i {
        margin-left: 5px;
    }

.amenities-grid {
    display: flex;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.amenity-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .amenity i {
        color: #666;
        width: 20px;
        text-align: center;
    }

.notification-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background-color: #ff5722;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.hotel-header-Wrapper {
    display: flex;
    justify-content: space-between;
}

.hotel-info-cov > i {
    font-size: 14px;
    color: #9C9C9C;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .hotel-booking-container {
        flex-direction: column;
    }

    .booking-form-container {
        flex: none;
        width: 100%;
    }


    .hotel-header {
        flex-direction: column;
        gap: 15px;
    }

    .hotel-rating {
        justify-content: space-between;
        width: 100%;
    }

    .amenities-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .amenity-column {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Room Listings */
.room-list {
    margin-bottom: 30px;
}

.room-card {
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.room-image {
    width: 150px;
    height: 150px;
}

    .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

.room-details {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.room-type {
    font-weight: bold;
    margin-bottom: 5px;
}

.room-features {
    display: flex;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
    margin: 22px 0;
    gap: 5px;
}

    .room-features span {
        margin-left: 15px;
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .room-features i {
        margin-left: 5px;
    }

.room-price {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-right: 50px;
    border-right: 1px solid #33333345;
}

.price-value {
    font-weight: bold;
    font-size: 18px;
    color: #444;
}

.btnDef {
    border-radius: 8px;
    border: 1px solid #10553F;
    color: #10553F;
    padding: 10px 24px;
    margin: 0 auto;
    position: relative;
    right: 380px;
    font-size: 15px;
}

.notif-value {
    font-size: 14px;
    color: #006e46;
}

.price-note {
    font-size: 12px;
    color: #999;
}

.book-btn {
    background-color: #006e46;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    width: 95%;
}

.discount-tag {
    color: #e74c3c;
    font-size: 14px;
    margin-bottom: 5px;
}

/* View More Button */
.view-more-btn {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Check Availability Button */
.check-availability-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #006e46;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}


section {
    padding: 20px;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

/* User Reviews Section */
.reviews-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: column;
    border-left: 1px solid #3333334d;
    margin-left: 32px;
}

.overall-rating {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.rating-number {
    font-size: 33px;
    font-weight: bold;
    margin-left: 5px;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.rating-count {
    color: #10553F;
    font-size: 15px;
    position: relative;
    top: 35px;
    background-color: #10554214;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Rating Bars */
.rating-bars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.rating-bar {
    margin-bottom: 15px;
}

.rating-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.progress-bar {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #00693e;
    border-radius: 4px;
}

/* Latest Reviews */
.latest-reviews-title {
    margin-bottom: 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 27px 16px 18px;
    background-color: #fff;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0f2f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

    .reviewer-avatar i {
        color: #00693e;
    }

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    font-size: 16px;
}

.review-date {
    color: #999;
    font-size: 15px;
}

.review-rating {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 30px;
    border-bottom: 1px solid #33333329;
}

.review-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}

.review-more {
    color: #00693e !important;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .review-more i {
        margin-left: 5px;
    }

.show-more-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #00693e;
    color: #00693e;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

/* Map Section */
.map-container {
    display: flex;
    flex-direction: row-reverse;
}

.map {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

    .map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.map-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #00693e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.marker-hotel {
    top: 40%;
    left: 30%;
}

.marker-poi {
    top: 20%;
    left: 60%;
}

.map-line {
    position: absolute;
    top: 25%;
    left: 35%;
    width: 25%;
    height: 2px;
    background-color: #00693e;
    transform: rotate(45deg);
    transform-origin: left;
}

.map-locations {
    display: grid;
    gap: 30px;
    margin-left: 20px;
    background-color: #fff;
    padding: 20px 0;
}

.location-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    padding: 0 20px;
    width: 300px;
}

    .location-item i {
        margin-left: 8px;
        color: #00693e;
    }

    .location-item span {
        border-bottom: 1px solid #33333361;
        padding: 15px 32%;
    }

/* Rules Section */
.rules-grid {
    display: flex;
    gap: 20px;
    background-color: #fff;
    flex-direction: row;
    padding: 50px;
}


.rule-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.rule-icon {
    margin-left: 10px;
    color: #00693e;
    min-width: 20px;
    text-align: center;
}

.rule-content {
    flex: 1;
}

.rule-title {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
}

.rule-titleMain {
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 10px;
}

.mainRuleWrap {
    border-right: 1px solid #3333333b;
}

.rule-textMain {
    margin-bottom: 10px;
    font-size: 16px;
    color: #666;
    font-size: 16px;
    padding-bottom: 10px;
    line-height: 28px;
    text-align: justify;
}

.rule-text {
    font-weight: bold;
    font-size: 17px;
}

/* FAQ Section */
.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: 16px;
}

.faq-answer {
    padding-top: 10px;
    display: none;
    color: #666;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

.reviews_Wrapper {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    padding: 35px 30px;
    background-color: #fff;
    margin-bottom: 25px;
}
/* Responsive */
@media (max-width: 768px) {
    .rating-bars {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .map-locations {
        grid-template-columns: 1fr;
    }
}




.dropdown-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.add-room-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.tab-btn {
    background-color: transparent !IMPORTANT;
    border: none;
    font-weight: 500;
    color: #757576 !important;
    text-shadow: none;
    padding-bottom: 8px;
    clip-path: border-box;
    border-radius: 0 !important;
    position: relative;
}

    .tab-btn.active {
        color: #2c2c2c;
        border-bottom: 2px solid #006a4e !important;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 24px;
}

.btn-main-search a {
    color: #fff !important;
}

.form-group {
    padding: 12px;
}

.form-grid > .form-group {
    /* border-radius: 6px; */
    /* padding: 1.5rem; */
    /* border: 1px solid #77777782; */
    /* padding: 12px; */
    padding: 0;
}

/* Room Selection Trigger */
.room-selection-trigger {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 6px 10px;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: 2px;
    top: -7px;
    right: -17px;
}

.room-info {
    display: flex;
    flex-direction: column;
}

    .room-info > span {
        font-size: 14px;
        font-weight: 500;
    }

    .room-info > .label {
        font-size: 14px;
        color: var(--gray-500);
        margin-top: 4px;
    }

/* Room Selection Dropdown */
.room-selection-dropdown {
    position: relative;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10;
    border-radius: 5px;
    box-shadow: 1px 2px 10px #33333340;
    overflow: hidden;
    display: block; /* Change to 'none' to hide initially */
    z-index: 500;
    width: 273px;
}

.rooms-container {
    max-height: 500px;
    overflow-y: auto;
}

/* Room Styles */
.room {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .room-header h3 {
        font-size: 18px;
        font-weight: 700;
    }

.delete-room-btn {
    background: none;
    border: none;
    color: var(--red);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

/* Guest Type Styles */
.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.guest-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.guest-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Icons using CSS */
.clock-icon {
    background-image: url('/images/icon/History 2.svg');
}



.containerAge {
    background: white;
    border-radius: 16px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    z-index: 26;
    position: relative;
    display: none;
}

.headerAge {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.header-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.passenger-count {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.age-groups {
    padding: 20px;
}

.age-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
}

    .age-group:last-child {
        border-bottom: none;
    }

.age-label {
    font-size: 16px;
    color: #212529;
    font-weight: 500;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.2s ease;
}

    .counter-btn:hover {
        border-color: #198754;
        color: #198754;
    }

    .counter-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

        .counter-btn:disabled:hover {
            border-color: #dee2e6;
            color: #6c757d;
        }

.counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    min-width: 20px;
    text-align: center;
}

.confirm-btn {
    background: #198754;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 11px;
    width: calc(61% - 26px);
    transition: background-color 0.2s ease;
}

    .confirm-btn:hover {
        background: #157347;
    }


.terms-agreement > .ui-checkbox {
    float: right;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #757575;
    margin-bottom: 4px;
}

.input-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .input-with-icon i {
        color: #757575;
        font-size: 14px;
    }

.search-btn {
    background-color: #006a4e !important;
    color: white !important;
    border: none;
    border-radius: 6px !important;
    padding: 8px 24px;
    font-weight: 500 !important;
    font-size: 15px !important;
    text-shadow: none !important;
}

/* Results Section */
.results-section {
    padding: 20px;
}

.results-container {
    display: flex;
    gap: 20px;
}

.results-sidebar {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: sticky;
    top: 0;
    height: 125vh;
    overflow-y: scroll;
}

body {
    overflow: visible;
}

.results-content {
    flex: 1;
    background-color: #fff;
    padding: 20px 25px;
}

.sidebar-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

    .sidebar-section:last-child {
        border-bottom: none;
    }

    .sidebar-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--text-color);
    }

.iconFilter {
    width: 30px;
    height: 30px;
}

.checkbox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    flex-direction: row;
}

.hotel-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-item label {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color);
}

.count {
    position: relative;
    left: 0;
    color: var(--text-light) #636161;
    font-size: 12px;
    font-size: 16px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    left: 60px;
    color: var(--text-light);
    font-size: 17px;
}

.PassengerLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    background-color: #fff !important;
    position: relative;
    top: 18px !important;
    z-index: 5;
    width: fit-content;
    right: 5px;
}

.room-info {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px;
    height: 43px;
}

    .room-info > span {
        font-size: 14px;
        font-weight: 500;
        text-align: right;
        top: 6px;
        position: relative;
    }


.dropdown-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.add-room-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.tab-btn {
    background-color: transparent !IMPORTANT;
    border: none;
    font-weight: 500;
    color: #757576 !important;
    text-shadow: none;
    padding-bottom: 8px;
    clip-path: border-box;
    border-radius: 0 !important;
    position: relative;
}

    .tab-btn.active {
        color: #2c2c2c;
        border-bottom: 2px solid #006a4e !important;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin-bottom: 24px;
}

.btn-main-search a {
    color: #fff !important;
}

.form-group {
    padding: 12px;
}

.form-grid > .form-group {
    /* border-radius: 6px; */
    /* padding: 1.5rem; */
    /* border: 1px solid #77777782; */
    /* padding: 12px; */
    padding: 0;
}

/* Room Selection Trigger */
.room-selection-trigger {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 6px 10px;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: 2px;
    top: -7px;
    right: -17px;
}

.room-info {
    display: flex;
    flex-direction: column;
}

    .room-info > span {
        font-size: 14px;
        font-weight: 500;
    }

    .room-info > .label {
        font-size: 14px;
        color: var(--gray-500);
        margin-top: 4px;
    }

/* Room Selection Dropdown */
.room-selection-dropdown {
    position: relative;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10;
    border-radius: 5px;
    box-shadow: 1px 2px 10px #33333340;
    overflow: hidden;
    display: block; /* Change to 'none' to hide initially */
    z-index: 500;
    width: 273px;
}

.rooms-container {
    max-height: 500px;
    overflow-y: auto;
}

/* Room Styles */
.room {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .room-header h3 {
        font-size: 18px;
        font-weight: 700;
    }

.delete-room-btn {
    background: none;
    border: none;
    color: var(--red);
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

/* Guest Type Styles */
.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.guest-info h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.guest-info p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Icons using CSS */
.clock-icon {
    background-image: url('/images/icon/History 2.svg');
}



.containerAge {
    background: white;
    border-radius: 16px;
    padding: 0;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    z-index: 26;
    position: relative;
    display: none;
}

.headerAge {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.header-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.passenger-count {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.age-groups {
    padding: 20px;
}

.age-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f1f3f4;
}

    .age-group:last-child {
        border-bottom: none;
    }

.age-label {
    font-size: 16px;
    color: #212529;
    font-weight: 500;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.2s ease;
}

    .counter-btn:hover {
        border-color: #198754;
        color: #198754;
    }

    .counter-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

        .counter-btn:disabled:hover {
            border-color: #dee2e6;
            color: #6c757d;
        }

.counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    min-width: 20px;
    text-align: center;
}

.confirm-btn {
    background: #198754;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 11px;
    width: calc(61% - 26px);
    transition: background-color 0.2s ease;
}

    .confirm-btn:hover {
        background: #157347;
    }


.terms-agreement > .ui-checkbox {
    float: right;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #757575;
    margin-bottom: 4px;
}

.input-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .input-with-icon i {
        color: #757575;
        font-size: 14px;
    }

.search-btn {
    background-color: #006a4e !important;
    color: white !important;
    border: none;
    border-radius: 6px !important;
    padding: 8px 24px;
    font-weight: 500 !important;
    font-size: 15px !important;
    text-shadow: none !important;
}

/* Results Section */
.results-section {
    padding: 20px;
}

.results-container {
    display: flex;
    gap: 20px;
}

.results-sidebar {
    flex: 0 0 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    position: sticky;
    top: 0;
    height: 125vh;
    overflow-y: scroll;
}

body {
    overflow: visible;
}

.results-content {
    flex: 1;
    background-color: #fff;
    padding: 20px 25px;
}

.sidebar-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

    .sidebar-section:last-child {
        border-bottom: none;
    }

    .sidebar-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--text-color);
    }

.iconFilter {
    width: 30px;
    height: 30px;
}

.checkbox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    flex-direction: row;
}

.hotel-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-item label {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-color);
}



.PassengerLabel {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    background-color: #fff !important;
    position: relative;
    top: 18px !important;
    z-index: 5;
    width: fit-content;
    right: 5px;
}

.room-info {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 10px;
    height: 43px;
}

    .room-info > span {
        font-size: 14px;
        font-weight: 500;
        text-align: right;
        top: 6px;
        position: relative;
    }

/* Responsive */
@media (max-width: 768px) {
    .Hotel_Detail_wrapper {
        display: grid;
        grid-template-rows: 1fr 1fr;
        width: 100%;
    }
    .booking-form-container {
        position: relative;
    }
    .btnDef {
        right: 101px;
    }
    .nav-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        align-items: center;
    }
    .gallery {
        display: grid;
        grid-template-columns: 1fr 0.5fr;
    }
    .room-details { 
        flex-direction: column;
    }
    .room-card {
        flex-direction: column;
    }
    }
