﻿
/* ============================================
       RESET / BASE
       ============================================ */
@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;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    background: #f9fafb;
    color: #232c39;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

input:focus,
textarea:focus {
    border-color: #06909d !important;
    outline: none;
}

/*.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}*/

/* ============================================
       ROOT VARIABLES
       ============================================ */
:root {
    --primary-100: #e4f7f9;
    --primary-500: #c4f0f4;
    --secondary-200: #f6e8dc;
    --secondary-800: #aa7242;
    --secondary-900: #7f5531;
    --gray-100: #f3f4f6;
    --gray-600: #6b7280;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
}

/* ============================================
       HISTORY SECTION
       ============================================ */
.history-section {
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    padding: 60px 0 0 0;
}

.history-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin: 80px auto;
}

.history-image {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
    order: 2;
}

    .history-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 32px 32px 0;
    }

.history-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: max(24px, calc((100vw - 1320px) / 2 + 15px));
    padding-left: 40px;
    padding-top: 20px;
    order: 1;
}

.history-title {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .history-title h2 {
        font-size: 30px;
        font-weight: 800;
        margin: 0;
    }

.title-tan {
    color: #c38b51;
}

.title-teal {
    color: #06909d;
}

.history-text p {
    font-size: 14px;
    line-height: 2.1;
    color: #616161;
    margin-bottom: 16px;
    text-align: justify;
}

.history-quote {
    color: #06909d !important;
    font-weight: 600;
    margin-top: 24px;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #ebf7f8;
    padding: 24px 32px;
    border-radius: 20px 0 0 0;
    margin-top: 40px;
    margin-right: calc(-1 * max(24px, calc((100vw - 1320px) / 2 + 15px)));
    padding-right: max(24px, calc((100vw - 1320px) / 2 + 15px));
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-body {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #06909d;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: #757575;
}

.stat-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* ============================================
       VALUES SECTION
       ============================================ */
.values-section {
    margin-top: 64px;
}

.values-header {
    text-align: center;
    margin-bottom: 32px;
}

    .values-header h2 {
        margin: 0;
        font-size: 28px;
        line-height: 1.2;
        font-weight: 700;
        color: var(--gray-900);
    }

    .values-header p {
        margin: 12px auto 0;
        max-width: 720px;
        color: var(--gray-600);
        font-size: 15px;
        line-height: 2;
    }

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background: var(--secondary-200);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--secondary-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .value-icon img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

.value-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--secondary-900);
}

.value-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.9;
}

/* ============================================
       EXPERIENCE SECTION
       ============================================ */
.experience-section {
    margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h2 {
        font-size: 28px;
        font-weight: 800;
        color: var(--gray-900);
    }

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.exp-card {
    position: relative;
    height: 450px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .exp-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .exp-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50% );
    }

.exp-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 24px;
    z-index: 2;
    color: var(--white);
    text-align: right;
}

    .exp-content h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .exp-content p {
        font-size: 14px;
        line-height: 1.6;
        opacity: 0.9;
    }

/* ============================================
       HOSPITALITY SECTION
       ============================================ */
.hospitality-section {
    margin-top: 80px;
}

.hospitality-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.hospitality-content {
    background-color: var(--primary-100);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 280px;
}

.hospitality-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
}

    .hospitality-title .teal {
        color: #06909d;
    }

    .hospitality-title .tan {
        color: #d48e52;
    }

.hospitality-text p {
    color: #232c39;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.hospitality-footer {
    font-weight: 700;
    color: #06909d;
    margin-top: 10px;
}

.hosts-box {
    background-color: var(--secondary-200);
    border-radius: 32px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    flex: 1;
    min-width: 280px;
}

.hosts-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.host-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.host-avatar {
    border-radius: 50%;
    border: 6px solid #dda575;
    overflow: hidden;
    width: 120px;
    height: 120px;
}

    .host-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.host-item span {
    font-weight: 700;
    color: #4b5563;
}

.hosts-slogan {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-800);
}

/* ============================================
       CTA SECTION
       ============================================ */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 80px;
    align-items: center;
    padding-bottom: 40px;
}

.cta-title {
    color: #374151;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
    text-align: center;
}

.cta-sub {
    color: #232c39;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}

.cta-btn {
    background: #06909d;
    margin: 0 auto;
    display: flex;
    width: max-content;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    gap: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

    .cta-btn:hover {
        background: #07a8b8;
    }

    .cta-btn span {
        color: #f9feff;
        font-weight: 600;
        font-size: 16px;
    }

/* ============================================
       RESPONSIVE
       ============================================ */
@media (max-width: 991px) {
    .history-grid {
        flex-direction: column;
    }

    .history-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: 320px;
        order: 2;
    }

        .history-image img {
            border-radius: 0;
        }

    .history-content {
        padding: 32px 20px 0 20px;
        order: 1;
    }

    .stats-grid {
        margin-right: -20px;
        padding-right: 20px;
        flex-wrap: wrap;
        gap: 20px;
        border-radius: 0;
    }

    .hospitality-grid {
        flex-direction: column;
    }

    .hosts-box {
        width: 100%;
    }
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-card {
        padding: 32px;
    }
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .history-section {
        padding: 30px 0 0 0;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .history-section {
        padding: 30px 0 0 0;
    }

    .history-title h2 {
        font-size: 24px;
    }

    .values-header h2 {
        font-size: 24px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .exp-card {
        height: 300px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-sub {
        font-size: 14px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .host-avatar {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 560px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .exp-card {
        height: 250px;
    }

    .hospitality-content {
        padding: 24px 16px;
    }

    .hosts-box {
        padding: 24px 16px;
    }

    .hosts-flex {
        gap: 16px;
    }

    .host-avatar {
        width: 80px;
        height: 80px;
    }

    .stats-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-card {
        width: 100%;
        justify-content: space-between;
    }

    .stat-body {
        text-align: right;
    }
}

/* ============================================
       UTILITY
       ============================================ */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.bg-background {
    background: #f9fafb;
}

.cursor-pointer {
    cursor: pointer;
}

nav#mobileMenu {
    z-index: 99999;
}

.mt-80 {
    margin-top: 80px;
}

.text-center {
    text-align: center;
}

.gap-16 {
    gap: 16px;
}

.breadcrumb{

display: flex; align-items: center;
}

.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/abt-hero.png);
}
.history-image {
    flex: 0 0 34%;
    max-width: 42%;
    position: relative;
    order: 2;
    opacity: 1;
    border-top-right-radius: 40px;
    overflow: hidden;
}

    .history-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
@media (max-width: 991px) {
    .history-grid {
        flex-direction: column;
    }

    .history-image {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto;
        order: 2;
    }

        .history-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 0;
        }
    .history-grid{
        margin:40px auto;
    }
}
/*.history-section,*/
.values-section, .hospitality-section, .experience-section, .cta-section-box {
    padding-left: 15px;
    padding-right: 15px
}