﻿/* ============================================
       ROOT VARIABLES
       ============================================ */
:root {
    --primary-1000: #03484e;
    --primary-900: #046c76;
    --primary-800: #06909d;
    --primary-700: #07b4c4;
    --primary-600: #37c3d0;
    --primary-100: #e1f7f9;
    --primary-50: #f9feff;
    --secondary-950: #553921;
    --secondary-800: #aa7242;
    --secondary-700: #d48e52;
    --secondary-600: #dda575;
    --secondary-500: #e5bb97;
    --secondary-300: #f2ddcb;
    --secondary-200: #f6e8dc;
    --secondary-100: #fbf4ee;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #232c39;
    --gray-900: #111928;
    --red-600: #e02424;
    --white: #ffffff;
}
/* ============================================
           FONTS
           ============================================ */
@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;
}

/* ============================================
       RESET / BASE
       ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f9fafb;
    color: var(--gray-800);
    line-height: 1.6;
}



a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
           ROOT VARIABLES
           ============================================ */
:root {
    --primary-1000: #03484e;
    --primary-900: #046c76;
    --primary-800: #06909d;
    --primary-700: #07b4c4;
    --primary-600: #37c3d0;
    --primary-100: #e1f7f9;
    --primary-50: #f9feff;
    --secondary-950: #553921;
    --secondary-800: #aa7242;
    --secondary-700: #d48e52;
    --secondary-600: #dda575;
    --secondary-500: #e5bb97;
    --secondary-300: #f2ddcb;
    --secondary-200: #f6e8dc;
    --secondary-100: #fbf4ee;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #232c39;
    --gray-900: #111928;
    --red-600: #e02424;
    --white: #ffffff;
}

/* ============================================
           CONTAINER
           ============================================ */
/*.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}
*/
/* ============================================
           SECTION TOP
           ============================================ */
.section-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 92px;
    gap: 48px;
}

.breadcrumbs-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 5px;
    color: var(--secondary-300);
}

.breadcrumbs {
    margin-top: 20px;
    font-size: 15px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

    .breadcrumbs .active {
        color: var(--gray-600);
    }

    .breadcrumbs .link {
        color: var(--secondary-800);
    }

.title-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 0 16px;
}

.page-title {
    margin: 0;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--secondary-800);
    color: var(--gray-50);
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.25s;
}

    .primary-btn:hover {
        background: var(--secondary-600);
    }

/* ============================================
           GALLERY GRID
           ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 8px;
}

.gallery-main img,
.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================
           CONTENT TABS
           ============================================ */
.content-tabs-wrap {
    display: flex;
    flex-direction: column;
    max-width: 1240px;
    margin: 64px auto 0;
    padding: 0 15px;
}

.content-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--gray-300);
}

.tab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(6, 144, 157, 0.06);
    font-weight: 600;
    font-size: 16px;
    text-align: right;
    color: var(--primary-900);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

    .tab-btn.active {
        background: var(--primary-800);
        color: #fff;
    }

    .tab-btn img {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

/* ============================================
           DETAILS PANEL
           ============================================ */
.details-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 52px;
    padding: 32px 0 0 0;
    animation: fadeScaleIn 0.4s ease;
    width: 100%;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

    .info-block h4 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
        color: var(--gray-800);
    }

    .info-block p {
        color: var(--gray-600);
        font-size: 16px;
        line-height: 1.8;
    }

.highlight-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    color: var(--primary-700);
}

/* ============================================
           SPECS GRID
           ============================================ */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .spec-card img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .spec-card .label {
        color: var(--gray-700);
        font-size: 18px;
        font-weight: 600;
    }

    .spec-card .value {
        color: var(--gray-500);
        font-size: 14px;
    }

/* ============================================
           NOTES GRID
           ============================================ */
.notes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
}

.note-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    padding: 12px 16px;
    background: rgba(127, 85, 49, 0.1);
}

.note-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--secondary-800);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.note-title {
    color: var(--secondary-700);
    font-size: 18px;
    font-weight: 600;
}

.note-text {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}

    .note-text strong {
        color: var(--gray-700);
    }

    .note-text .danger {
        color: var(--red-600);
    }

/* ============================================
           FAQ SECTION
           ============================================ */
.faq-section {
    padding: 80px 16px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.faq-head h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
    text-align: right;
    color: var(--gray-800);
}

.faq-head p {
    color: var(--gray-500);
    font-size: 14px;
    text-align: center;
    margin-top: 6px;
}

.faq-list {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

    .faq-item.is-open {
        border-color: var(--gray-300);
        background: rgba(6, 144, 157, 0.12);
    }

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: right;
    outline: none;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--secondary-700);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 0;
    transition: transform 0.3s;
}

.question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    flex: 1;
}

.faq-answer {
    padding: 0 24px 20px 72px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
    display: none;
}

.faq-item.is-open .faq-answer {
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

/* ============================================
           ANIMATIONS
           ============================================ */
@keyframes fadeScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.96) translateY(14px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (min-width: 640px) {
    .title-row {
        flex-direction: row;
        align-items: center;
    }

    .primary-btn {
        width: auto;
    }

    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: 2fr 1fr;
    }

    .gallery-side {
        grid-template-columns: 1fr;
    }

    .tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .faq-head h2 {
        font-size: 24px;
    }
}

@media (max-width: 946px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
           UTILITY
           ============================================ */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.bg-background {
    background: #f9fafb;
}

.cursor-pointer {
    cursor: pointer;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-32 {
    gap: 32px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-secondary-700 {
    color: var(--secondary-700);
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

.text-base {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 20px;
}

.text-2xl {
    font-size: 24px;
}

.text-3xl {
    font-size: 30px;
}

.px-4 {
    padding-right: 16px;
    padding-left: 16px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.px-3 {
    padding-right: 12px;
    padding-left: 12px;
}

.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.p-8 {
    padding: 8px;
}

.p-16 {
    padding: 16px;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-12 {
    border-radius: 12px;
}

.rounded-16 {
    border-radius: 16px;
}

.bg-white {
    background: #fff;
}

.bg-gray-50 {
    background: var(--gray-50);
}

.border {
    border: 1px solid var(--gray-200);
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.transition {
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 640px) {
    .sm\:hidden {
        display: none;
    }

    .sm\:block {
        display: block;
    }

    .sm\:inline-block {
        display: inline-block;
    }
}
.header-nav.fixed {
    background: white !important;
}

.faq-section, .content-tabs-wrap, .section-top {
    padding-left: 15px;
    padding-right: 15px
}



.room-gallery-swiper {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

    .room-gallery-swiper .swiper-slide {
        width: 100%;
        height: 420px;
    }

    .room-gallery-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

    .gallery-main .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #f5f5f5;
    }

        .gallery-main .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }