@charset "UTF-8";

/* ==========================================================================
   امید خزر | شرکت توسعه تجارت امید خزر منطقه آزاد انزلی
   هویت بصری: سورمه‌ای + طلایی | Corporate B2B | مینیمال و رسمی
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&family=Sora:wght@400;500;600;700;800&display=swap');

/* در پروژه‌ی شما IRANSans از فایل لوکال لود می‌شود؛ Vazirmatn به‌عنوان جایگزین. */
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('../fonts/IRANSansWeb(FaNum)_Bold.woff') format('woff'), url('../fonts/IRANSansWeb(FaNum)_Bold.ttf') format('truetype');
}

:root {
    /* ---- سورمه‌ای ---- */
    --navy-900: #081428;
    --navy-800: #0c1d39;
    --navy-700: #11294f;
    --navy-600: #173768;
    --navy-500: #244c87;
    --navy-400: #3a679f;
    /* ---- طلایی / نقره‌ای ---- */
    --gold: #c6a15b;
    --gold-bright: #dcc188;
    --gold-deep: #a9853f;
    --silver: #b9c4d2;
    /* ---- خنثی ---- */
    --paper: #f5f6f9;
    --paper-2: #eef1f6;
    --surface: #ffffff;
    --ink: #16202f;
    --body: #45526a;
    --muted: #7c889c;
    --line: #e4e8ef;
    --line-dark: rgba(255,255,255,.12);
    --shadow-sm: 0 2px 10px rgba(11,29,57,.06);
    --shadow-md: 0 14px 40px rgba(11,29,57,.10);
    --shadow-lg: 0 30px 70px rgba(11,29,57,.16);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --ease: cubic-bezier(.22,.61,.36,1);
    --t: .35s var(--ease);
    --font: 'IRANSans', 'Vazirmatn', Tahoma, sans-serif;
    --font-num: 'Sora', 'Vazirmatn', sans-serif;
    --container: 1200px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--surface);
    color: var(--body);
    line-height: 1.95;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

section {
    position: relative;
}

.container {
    width: 92%;
    max-width: var(--container);
    margin-inline: auto;
}

.sec {
    padding: 110px 0;
}

.sec-sm {
    padding: 80px 0;
}

.bg-paper {
    background: var(--paper);
}

.bg-paper-2 {
    background: var(--paper-2);
}

/* ---------------- امضای بصری: ابرو + خط طلایی ---------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-num);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
}

    .eyebrow::before {
        content: '';
        width: 34px;
        height: 1px;
        background: var(--gold);
        display: inline-block;
    }

    .eyebrow.center {
        justify-content: center;
    }

    .eyebrow.on-dark {
        color: var(--gold-bright);
    }

.head {
    margin-bottom: 56px;
}

    .head.center {
        text-align: center;
    }

    .head h2 {
        font-size: clamp(1.8rem, 3.4vw, 2.75rem);
        line-height: 1.45;
        margin-top: 14px;
        letter-spacing: -.3px;
    }

    .head p {
        margin-top: 16px;
        color: var(--muted);
        max-width: 640px;
        font-size: 1.02rem;
    }

    .head.center p {
        margin-inline: auto;
    }

    .head .on-light {
        color: var(--ink);
    }

    .head.on-dark h2 {
        color: #fff;
    }

    .head.on-dark p {
        color: var(--silver);
    }

/* ---------------- دکمه‌ها ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .98rem;
    transition: all var(--t);
    white-space: nowrap;
}

    .btn i {
        font-size: .85em;
    }

.btn-gold {
    background: var(--gold);
    color: var(--navy-900);
}

    .btn-gold:hover {
        background: var(--gold-bright);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(198,161,91,.35);
    }

.btn-navy {
    background: var(--navy-700);
    color: #fff;
}

    .btn-navy:hover {
        background: var(--navy-600);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-ghost {
    border: 1.5px solid rgba(255,255,255,.5);
    color: #fff;
}

    .btn-ghost:hover {
        background: #fff;
        color: var(--navy-800);
        border-color: #fff;
    }

.btn-outline {
    border: 1.5px solid var(--line);
    color: var(--ink);
}

    .btn-outline:hover {
        border-color: var(--gold);
        color: var(--gold-deep);
    }

.btn-text {
    color: var(--gold-deep);
    font-weight: 700;
    gap: 8px;
}

    .btn-text:hover {
        gap: 14px;
        color: var(--gold);
    }

    .btn-text i {
        transition: transform var(--t);
    }

/* ==========================================================================
   نوار بالا + ناوبری
   ========================================================================== */
.topbar {
    background: var(--navy-900);
    color: var(--silver);
    font-size: .82rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .topbar a {
        color: var(--silver);
    }

        .topbar a:hover {
            color: var(--gold-bright);
        }

    .topbar .tb-group {
        display: flex;
        gap: 22px;
        align-items: center;
        flex-wrap: wrap;
    }

    .topbar .tb-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .topbar .tb-item i {
            color: var(--gold);
            font-size: .9rem;
        }

    .topbar .tb-social {
        display: flex;
        gap: 14px;
    }

        .topbar .tb-social a {
            font-size: .95rem;
        }

.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--t), padding var(--t);
}

    .nav.scrolled {
        box-shadow: var(--shadow-sm);
    }

    .nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 78px;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

    .brand .mark {
        width: 70px;
        height: 70px;
        border-radius: 11px;
        flex-shrink: 0;
        /*background: linear-gradient(150deg, var(--navy-600), var(--navy-800));*/
        display: grid;
        place-items: center;
        font-family: var(--font-num);
        font-weight: 800;
        font-size: 1.05rem;
        color: var(--gold-bright);
        letter-spacing: 1px;
        /*border: 1px solid rgba(198,161,91,.4);*/
    }

    .brand .b-text {
        line-height: 1.4;
    }

    .brand .b-name {
        font-weight: 800;
        color: var(--navy-800);
        font-size: 1.05rem;
    }

    .brand .b-sub {
        font-size: .72rem;
        color: var(--muted);
        font-weight: 500;
    }

.menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .menu > li {
        position: relative;
    }

        .menu > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            font-weight: 600;
            font-size: .97rem;
            color: var(--navy-800);
            border-radius: 8px;
            position: relative;
        }

            .menu > li > a .caret {
                font-size: .6rem;
                opacity: .5;
                transition: transform var(--t);
            }

            .menu > li > a::after {
                content: '';
                position: absolute;
                bottom: 4px;
                right: 16px;
                left: 16px;
                height: 2px;
                background: var(--gold);
                border-radius: 2px;
                transform: scaleX(0);
                transform-origin: right;
                transition: transform var(--t);
            }

            .menu > li > a:hover, .menu > li > a.active {
                color: var(--navy-600);
            }

                .menu > li > a:hover::after, .menu > li > a.active::after {
                    transform: scaleX(1);
                }

/* dropdown خدمات */
.dropdown > a:hover .caret {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 270px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t);
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: .94rem;
    font-weight: 600;
    color: var(--navy-800);
}

    .submenu a i {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        flex-shrink: 0;
        background: var(--paper-2);
        color: var(--navy-600);
        display: grid;
        place-items: center;
        font-size: .9rem;
        transition: all var(--t);
    }

    .submenu a:hover {
        background: var(--paper);
    }

        .submenu a:hover i {
            background: var(--navy-700);
            color: var(--gold-bright);
        }

.nav-cta {
    margin-right: 8px;
}

.nav-burger {
    display: none;
    font-size: 1.5rem;
    color: var(--navy-800);
}

/* موبایل */
@media (max-width: 991px) {
    .nav {
        position: sticky;
        top: 0;
        z-index: 1000 !important;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--line);
        transition: box-shadow var(--t), padding var(--t);
        /* اضافه کنید */
        overflow: visible;
    }
    .hero, .hero::after, .hero-bg {
        z-index: 1 !important;
    }
    .nav-burger {
        display: block;
    }

    .nav-cta.desktop {
        display: none;
    }

    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(330px, 85vw);
        height: 100vh;
        background: var(--navy-900);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 90px 22px 30px;
        transform: translateX(100%);
        transition: transform var(--t);
        overflow-y: auto;
        z-index: 1001;
    }

        .menu.open {
            transform: translateX(0);
        }

        .menu > li > a {
            color: #fff;
            padding: 14px 6px;
            border-radius: 0;
            border-bottom: 1px solid var(--line-dark);
        }

            .menu > li > a::after {
                display: none;
            }

            .menu > li > a:hover, .menu > li > a.active {
                color: var(--gold-bright);
            }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--t);
    }

    .dropdown.open .submenu {
        max-height: 320px;
    }

    .submenu a {
        color: var(--silver);
        padding: 11px 6px 11px 18px;
    }

        .submenu a i {
            background: rgba(255,255,255,.06);
            color: var(--gold-bright);
        }

        .submenu a:hover {
            background: transparent;
            color: #fff;
        }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(8,20,40,.55);
        opacity: 0;
        visibility: hidden;
        transition: all var(--t);
        z-index: 100;
    }

        .nav-overlay.open {
            opacity: 1;
            visibility: visible;
        }

    .nav-close {
        position: absolute;
        top: 22px;
        left: 22px;
        color: #fff;
        font-size: 1.6rem;
        display: block;
    }
}

@media (min-width: 992px) {
    .nav-close, .nav-overlay {
        display: none;
    }
}

/* ==========================================================================
   هیرو
   ========================================================================== */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../Images/photo-1494412574643-ff11b0a5c1c3.jpg') center/cover;
    opacity: .35;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, var(--navy-900) 18%, rgba(8,20,40,.78) 55%, rgba(8,20,40,.45) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.hero-inner {
    max-width: 760px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.45;
    letter-spacing: -.5px;
    margin: 20px 0;
}

    .hero h1 .accent {
        color: var(--gold-bright);
    }

.hero p {
    color: var(--silver);
    font-size: 1.12rem;
    max-width: 580px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,.12);
}

    .hero-stats .s-num {
        font-family: var(--font-num);
        font-weight: 800;
        font-size: 2.2rem;
        color: var(--gold-bright);
        line-height: 1;
    }

    .hero-stats .s-label {
        color: var(--silver);
        font-size: .9rem;
        margin-top: 8px;
    }

/* تصویر گوشه هیرو در دسکتاپ */
.hero-route {
    position: absolute;
    left: -2%;
    bottom: 0;
    z-index: 1;
    width: 46%;
    height: 100%;
    opacity: .9;
    display: none;
}

@media (min-width: 1100px) {
    .hero-route {
        display: block;
    }
}

/* ==========================================================================
   معرفی کوتاه
   ========================================================================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.intro-media {
    position: relative;
}

    .intro-media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        aspect-ratio: 5/4;
        object-fit: cover;
        width: 100%;
    }

.intro-badge {
    position: absolute;
    bottom: -26px;
    right: -26px;
    background: var(--navy-800);
    color: #fff;
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(198,161,91,.35);
}

    .intro-badge .ib-num {
        font-family: var(--font-num);
        font-weight: 800;
        font-size: 2rem;
        color: var(--gold-bright);
    }

    .intro-badge .ib-label {
        font-size: .85rem;
        color: var(--silver);
    }

.intro-body p {
    margin-bottom: 18px;
}

.intro-body .lead {
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 600;
    line-height: 2;
}

.intro-actions {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* ==========================================================================
   مزیت‌های رقابتی (Why choose us)
   ========================================================================== */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.adv-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    overflow: hidden;
}

    .adv-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform var(--t);
    }

    .adv-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
        border-color: transparent;
    }

        .adv-card:hover::before {
            transform: scaleX(1);
        }

.adv-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-bottom: 22px;
    background: linear-gradient(150deg, var(--navy-600), var(--navy-800));
    color: var(--gold-bright);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.adv-card h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.adv-card p {
    font-size: .95rem;
    color: var(--body);
    margin: 0;
}

.adv-num {
    position: absolute;
    top: 26px;
    left: 28px;
    font-family: var(--font-num);
    font-weight: 800;
    font-size: 1rem;
    color: var(--line);
}

/* ==========================================================================
   خدمات
   ========================================================================== */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.svc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--t), box-shadow var(--t);
}

    .svc-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.svc-thumb {
    position: relative;
    aspect-ratio: 16/8;
    overflow: hidden;
}

    .svc-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .7s var(--ease);
    }

.svc-card:hover .svc-thumb img {
    transform: scale(1.06);
}

.svc-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,20,40,.55), transparent 55%);
}

.svc-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gold);
    color: var(--navy-900);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.svc-body {
    padding: 30px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .svc-body h3 {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .svc-body p {
        font-size: .96rem;
        margin-bottom: 22px;
        flex: 1;
    }

/* ردیف جزئیات خدمت (صفحه خدمات) */
.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 100px;
}

    .svc-row:last-child {
        border-bottom: none;
    }

    .svc-row.flip .svc-row-media {
        order: 2;
    }

.svc-row-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.svc-row-num {
    font-family: var(--font-num);
    font-weight: 800;
    font-size: .9rem;
    color: var(--gold-deep);
    letter-spacing: 2px;
}

.svc-row h3 {
    font-size: 1.7rem;
    margin: 12px 0 18px;
}

.svc-row .feat {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

    .svc-row .feat li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: .96rem;
        color: var(--ink);
        font-weight: 600;
    }

    .svc-row .feat i {
        color: var(--gold-deep);
        margin-top: 7px;
        font-size: .8rem;
    }

/* ==========================================================================
   نوار آمار سورمه‌ای
   ========================================================================== */
.stats-band {
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
}

    .stats-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('../Images/photo-1605902711622-cfb43c4437b5.jpg') center/cover;
        opacity: .08;
    }

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat .stat-num {
    font-family: var(--font-num);
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--gold-bright);
    line-height: 1;
}

    .stat .stat-num::after {
        content: '';
        display: block;
        width: 30px;
        height: 2px;
        background: var(--gold);
        margin: 14px auto 0;
    }

.stat .stat-label {
    color: var(--silver);
    margin-top: 16px;
    font-size: .95rem;
}

.stat + .stat {
    position: relative;
}

/* ==========================================================================
   هیئت مدیره
   ========================================================================== */
.board-intro {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--body);
    font-size: 1.05rem;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.board-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}

    .board-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.board-photo {
    aspect-ratio: 1/1;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
    position: relative;
    display: grid;
    place-items: center;
}

    .board-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }

    .board-photo .ph {
        color: rgba(220,193,136,.4);
        font-size: 4rem;
    }

    .board-photo .ph-note {
        position: absolute;
        bottom: 14px;
        font-size: .72rem;
        color: rgba(255,255,255,.45);
    }

.board-body {
    padding: 26px 26px 30px;
    text-align: center;
}

    .board-body h3 {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

.board-role {
    color: var(--gold-deep);
    font-weight: 700;
    font-size: .92rem;
}

    .board-role::after {
        content: '';
        display: block;
        width: 36px;
        height: 2px;
        background: var(--gold);
        margin: 14px auto;
    }

.board-body p {
    font-size: .92rem;
    color: var(--body);
    text-align: justify;
}

.board-quote {
    background: var(--paper);
    border-right: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    margin: 0 0 18px;
    font-size: .9rem;
    color: var(--navy-700);
    font-weight: 600;
    text-align: right;
}

/* ==========================================================================
   تماس
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info .ci-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

    .contact-info .ci-item:last-child {
        border-bottom: none;
    }

.contact-info .ci-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    flex-shrink: 0;
    background: var(--navy-800);
    color: var(--gold-bright);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.contact-info .ci-title {
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}

.contact-info .ci-text {
    font-size: .95rem;
    color: var(--body);
    line-height: 1.9;
    margin-right: 2rem;
}

    .contact-info .ci-text a {
        direction: ltr;
        display: inline-block;
    }

.contact-phone-list {
    display: block;
    direction: ltr;
    width: 12.5ch;
    margin-right: 2.3rem;
}

.contact-phone {
    display: block !important;
    width: 100%;
    font-family: var(--font-num);
    font-size: .95rem;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    line-height: 1.9;
    white-space: nowrap;
    text-align: justify;
    text-align-last: justify;
    unicode-bidi: isolate;
}

.contact-info .ci-text a:hover {
    color: var(--gold-deep);
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 18px;
}

    .field label {
        display: block;
        font-size: .88rem;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 8px;
    }

    .field input, .field select, .field textarea {
        width: 100%;
        padding: 13px 16px;
        border: 1.5px solid var(--line);
        border-radius: var(--radius-sm);
        font-family: inherit;
        font-size: .95rem;
        color: var(--ink);
        background: var(--paper);
        transition: border-color var(--t), background var(--t);
    }

    .field textarea {
        resize: vertical;
        min-height: 130px;
    }

        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: #fff;
        }

.form-note {
    font-size: .85rem;
    color: var(--muted);
    margin-top: 6px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    margin-top: 60px;
}

    .map-wrap iframe {
        width: 100%;
        height: 380px;
        border: 0;
        display: block;
        filter: grayscale(.2);
    }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
    background: linear-gradient(120deg, var(--navy-800), var(--navy-600));
    border-radius: var(--radius-lg);
    padding: 64px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

    .cta::before {
        content: '';
        position: absolute;
        top: -40%;
        left: -5%;
        width: 380px;
        height: 380px;
        background: radial-gradient(circle, rgba(198,161,91,.22), transparent 70%);
    }

.cta-text {
    position: relative;
    z-index: 2;
}

    .cta-text h2 {
        color: #fff;
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        line-height: 1.5;
    }

    .cta-text p {
        color: var(--silver);
        margin-top: 12px;
        max-width: 520px;
    }

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================================
   فوتر
   ========================================================================== */
.footer {
    background: var(--navy-900);
    color: var(--silver);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer .brand .b-name {
    color: #fff;
}

.footer .brand .b-sub {
    color: var(--muted);
}

.footer .f-about {
    margin-top: 22px;
    font-size: .92rem;
    line-height: 2;
    color: var(--silver);
}

.footer .f-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

    .footer .f-social a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,.06);
        display: grid;
        place-items: center;
        color: var(--silver);
        transition: all var(--t);
    }

        .footer .f-social a:hover {
            background: var(--gold);
            color: var(--navy-900);
            transform: translateY(-3px);
        }

.footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

    .footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 32px;
        height: 2px;
        background: var(--gold);
    }

.footer .f-links li {
    margin-bottom: 13px;
}

.footer .f-links a {
    font-size: .93rem;
    color: var(--silver);
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

    .footer .f-links a i {
        font-size: .65rem;
        color: var(--gold);
        transition: transform var(--t);
    }

    .footer .f-links a:hover {
        color: #fff;
    }

        .footer .f-links a:hover i {
            transform: translateX(-4px);
        }

.footer .f-contact li {
    display: flex;
    gap: 13px;
    margin-bottom: 16px;
    font-size: .92rem;
    line-height: 1.8;
}

.footer .f-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.footer .f-contact a {
    direction: ltr;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .85rem;
    color: var(--muted);
}

    .footer-bottom a:hover {
        color: var(--gold-bright);
    }

/* ==========================================================================
   صفحه‌داخلی: هدر عنوان
   ========================================================================== */
.page-hero {
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
    padding: 72px 0;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1500&q=80') center/cover;
        opacity: .12;
    }

    .page-hero .container {
        position: relative;
        z-index: 2;
    }

    .page-hero h1 {
        color: #fff;
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        margin-top: 12px;
    }

.crumb {
    font-size: .88rem;
    color: var(--silver);
    margin-top: 16px;
}

    .crumb a:hover {
        color: var(--gold-bright);
    }

    .crumb i {
        font-size: .65rem;
        margin: 0 8px;
        opacity: .6;
    }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow var(--t);
}

    .faq-item.active {
        box-shadow: var(--shadow-sm);
    }

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    text-align: right;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.02rem;
}

    .faq-q i {
        color: var(--gold-deep);
        transition: transform var(--t);
        flex-shrink: 0;
    }

.faq-item.active .faq-q i {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t);
}

.faq-a-inner {
    padding: 0 26px 24px;
    color: var(--body);
    font-size: .96rem;
}

/* ==========================================================================
   بک‌تو‌تاپ + ریلودر
   ========================================================================== */
.back-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-bright);
    display: grid;
    place-items: center;
    font-size: 1rem;
    z-index: 900;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--t);
}

    .back-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-top:hover {
        background: var(--gold);
        color: var(--navy-900);
    }

/* ==========================================================================
   انیمیشن ریویل
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

    .reveal.d1 {
        transition-delay: .08s;
    }

    .reveal.d2 {
        transition-delay: .16s;
    }

    .reveal.d3 {
        transition-delay: .24s;
    }

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ==========================================================================
   ریسپانسیو
   ========================================================================== */
@media (max-width: 991px) {
    .sec {
        padding: 80px 0;
    }

    .intro-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-media {
        max-width: 520px;
    }

    .adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

        .svc-row.flip .svc-row-media {
            order: 0;
        }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .cta {
        padding: 48px 36px;
    }
}

@media (max-width: 640px) {
    .sec {
        padding: 64px 0;
    }

    .topbar .tb-group:first-child {
        display: none;
    }

    .topbar .container {
        justify-content: center;
    }

    .svc-grid, .adv-grid, .board-grid, .stats-grid, .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 30px;
    }

    .intro-badge {
        right: auto;
        left: 16px;
        bottom: -20px;
        padding: 18px 20px;
    }

    .contact-card {
        padding: 28px 22px;
    }

    .cta-text h2 {
        font-size: 1.4rem;
    }
}
