﻿
@font-face {
    font-family: "Vazir";
    src: url("/assets/source/fonts/vazir-font-v16.1.0/Vazir.eot");
    src: url("/assets/source/fonts/vazir-font-v16.1.0/Vazir.eot?#iefix") format("embedded-opentype"), url("/assets/source/fonts/vazir-font-v16.1.0/Vazir.woff2") format("woff2"), url("/assets/source/fonts/vazir-font-v16.1.0/Vazir.woff") format("woff"), url("/assets/source/fonts/vazir-font-v16.1.0/Vazir.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Vazir";
    src: url("/assets/source/fonts/vazir-font-v16.1.0/Vazir-Bold.eot");
    src: url("/assets/source/fonts/vazir-font-v16.1.0/Vazir-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/source/fonts/vazir-font-v16.1.0/Vazir-Bold.woff2") format("woff2"), url("/assets/source/fonts/vazir-font-v16.1.0/Vazir-Bold.woff") format("woff"), url("/assets/source/fonts/vazir-font-v16.1.0/Vazir-Bold.ttf") format("truetype");
    font-weight: 700;
}

* {
    font-family: "Vazir", system-ui, sans-serif;
}

input:focus, textarea:focus {
    border-color: #06909d !important;
}
body {
    background: #f9fafb;
    color: var(--gray-800);
    line-height: 1.6;
}
/* ===== نوار رزرو ===== */
.booking-bar-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 20px auto;
    border: 1px solid #f0f0f0;
    flex-direction: row-reverse;
    margin-top: 70px;
}

.booking-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9feff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 4px;
    flex: 1;
    min-width: 0;
    max-width: max-content;
}

    .booking-input-group input {
        border: none;
        background: transparent;
        width: 100%;
        font-size: 13px;
        color: #374151;
        text-align: right;
    }

    .booking-input-group svg {
        color: #9ca3af;
        flex-shrink: 0;
    }

.btn-check-availability {
    background: #a2d9de;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0 24px;
    height: 46px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

    .btn-check-availability:hover {
        background: #06909d;
    }

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 10px 16px;
    border-radius: 10px;
    color: #4b5563;
    font-size: 13px;
    cursor: pointer;
    border: none;
}

.mobile-filter-btn {
    display: none;
    align-items: center;
    justify-content: center;
    color: #06909d;
    border: 2px solid #06909d;
    padding: 9px 12px 10px 16px;
    gap: 12px;
    border-radius: 9px;
}

.booking-sort-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-inputs-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.desktop-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

@media (max-width: 900px) {
    .desktop-inputs {
        display: none !important;
    }

    .mobile-filter-btn {
        display: flex;

    }
    .sorting booking-sort-wrap{
        display:flex;
        justify-content:space-between
    }

    .booking-bar-wrapper {
        padding: 8px;
        gap: 8px;
    }

    .btn-check-availability {
        flex: 1;
        padding: 0;
    }

    .sort-dropdown {
        padding: 10px;
    }

    .booking-inputs-wrap {
        flex: 1;
    }

    .booking-sort-wrap {
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .booking-bar-wrapper {
        flex-wrap: wrap;
    }

    .booking-sort-wrap {
        width: 100%;
        justify-content: space-between;
    }

    .booking-inputs-wrap {
        width: 100%;
        justify-content: center;
    }

    .btn-check-availability {
        width: 100%;
    }
}

/* ===== بخش اتاق‌ها ===== */
.room-section {
    width: 100%;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .room-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(6, 144, 157, 0.08);
        border-color: #98e0e7;
    }

.room-img-container {
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    max-height: 188px;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img {
    transform: scale(1.03);
}

.room-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.room-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.6;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: right;
}

.room-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 16px;
    text-align: right;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
    margin-bottom: 24px;
    direction: rtl;
}

.room-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    text-align: right;
}

.room-feature-dot {
    width: 6px;
    height: 6px;
    background-color: #d48e52;
    border-radius: 50%;
    flex-shrink: 0;
}

.room-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 44px;
    border: 1.5px solid #06909d;
    color: #06909d;
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

    .room-btn:hover {
        background: #06909d;
        color: #ffffff;
    }

@media (max-width: 992px) {
    .room-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .room-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== گرین باکس CTA ===== */
.green-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 260px;
    background: linear-gradient(rgba(6, 110, 120, 0.82), rgba(5, 86, 92, 0.82)), url("/assets/source/images/bg-conect.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

.green-box-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

    .green-box-content h3 {
        color: #fff;
        font-size: 36px;
        font-weight: 700;
        margin: 0;
    }

    .green-box-content p {
        color: #eaf6f6;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .green-box-content .btn {
        background: #06909d;
        margin: 24px auto 0;
        display: flex;
        width: max-content;
        align-items: center;
        justify-content: center;
        padding: 12px 16px 12px 12px;
        gap: 12px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        text-decoration: none;
    }

        .green-box-content .btn span {
            color: #f9feff;
            font-weight: 600;
            font-size: 16px;
        }

        .green-box-content .btn img {
            width: 20px;
            height: 20px;
        }

@media (max-width: 768px) {
    .green-box {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .green-box-content h3 {
        font-size: 26px;
    }
}

/* ===== امکانات ===== */
.amenities-section {
    padding: 60px 16px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.amenities-header h2 {
    color: #232c39;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.amenities-header p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 40px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.amenity-card {
    backdrop-filter: blur(20px);
    background: #efe9e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 24px 12px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

    .amenity-card:hover {
        transform: translateY(-5px);
    }

.amenity-icon {
    width: 60px;
    height: 60px;
    background-color: #aa7242;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .amenity-icon img {
        width: 30px;
        height: 30px;
        filter: brightness(0) invert(1);
    }

.amenity-card span {
    font-weight: 600;
    color: #553921;
    font-size: 16px;
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 16px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.faq-head h2 {
    margin: 0;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
    text-align: center;
    color: #232c39;
}

.faq-head p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

.faq-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item.is-open {
        background-color: #eef7f8;
        border-color: #cde4e6;
    }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: right;
    outline: none;
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: #d48e52;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    font-weight: 700;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
}

.faq-item.is-open .faq-answer {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

@media (max-width: 768px) {
    .faq-head h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .question-text {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }
}


.c-header-inner {
    min-height: 450px;
    height: 450px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.49) -2.54%, rgba(0, 0, 0, 0.224) 49.71%, rgba(0, 0, 0, 0.49) 101.95%), url(../../assets/source/images/bg-room.png)
}
.all-space {
    padding-left: 15px;
    padding-right: 15px
}