@font-face {
    font-family: "Yekan";
    src: url("../fonts/woff2/YekanBakhFaNum-Bold.woff2") format("woff2"),
    url("../fonts/woff/YekanBakhFaNum-Bold.woff") format("woff"),
    url("../fonts/font.css") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #061225;
    --navy-2: #071A32;
    --navy-3: #0B223D;
    --card: #0B1C34;
    --card-2: #102947;
    --gold: #D9A64A;
    --gold-2: #F0C46B;
    --white: #FFFFFF;
    --soft: #EAF0F8;
    --text: #F8FAFC;
    --muted: #AEBBD0;
    --line: rgba(217, 166, 74, .26);
    --shadow: 0 24px 70px rgba(0, 0, 0, .28);
    --radius: 26px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "Yekan", system-ui, -apple-system, sans-serif;
     background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #e8f4fc 35%,
            #d7ecfa 70%,
            #C4E2F5 100%
        );
    color: var(--text);
    line-height: 1.9;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit
}

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

.container {
    width: min(1220px, 92%);
    margin-inline: auto
}

.cursor-glow {
    position: fixed;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 166, 74, .15), transparent 68%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%)
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #061225;
    border-bottom: 1px solid rgba(217, 166, 74, .12)
}

.nav {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff
}

.logo-mark {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 12px 30px rgba(217, 166, 74, .22)
}

.logo b {
    display: block;
    font-size: 25px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: 1px
}

.logo small {
    font-size: 12px;
    color: rgba(255, 255, 255, .78)
}

.nav-links {
    display: flex;
    gap: 26px;
    color: #fff;
    font-size: 14px;
    font-weight: 700
}

.nav-links a {
    opacity: .88;
    transition: .25s
}

.nav-links a:hover {
    color: var(--gold);
    opacity: 1
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 15px;
    padding: 13px 24px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .25s;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 16px 38px rgba(217, 166, 74, .24)
}

.btn-outline {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(217, 166, 74, .55);
    color: #fff
}

.full {
    width: 100%;
    border: 0;
    font-family: "Yekan", system-ui;

}

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 58px 0 36px;
    background: linear-gradient(135deg, #061225 0%, #071A32 55%, #092743 100%)
}

.hero-map {
    position: absolute;
    inset: 0;
    opacity: .19;
    background-image: radial-gradient(circle, rgba(217, 166, 74, .42) 1px, transparent 1px);
    background-size: 18px 18px
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns:1.02fr .98fr;
    align-items: center;
    gap: 44px
}

.hero-art img {
    border-radius: 34px;
    filter: drop-shadow(0 34px 65px rgba(0, 0, 0, .38))
}

.eyebrow {
    display: inline-flex;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 10px
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 78px);
    line-height: 1.25;
    margin: 0 0 18px
}

.hero h1 strong {
    color: var(--gold)
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, .78);
    max-width: 640px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0 26px
}

.hero-badges {
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82)
}

.hero-badges img {
    width: 30px;
    height: 30px
}

.section {
    padding: 34px 0
}

.glass-panel {
    background: linear-gradient(180deg, rgba(13, 34, 61, .86), rgba(8, 24, 46, .88));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 28px
}

.section-title span {
    color: var(--gold);
    font-weight: 900
}

.section-title h2 {
    font-size: clamp(26px, 3vw, 40px);
    margin: 4px 0;
    color: #fff;
    line-height: 1.4
}

.service-grid {
    display: grid;
    gap: 18px
}

.service-grid.six {
    grid-template-columns:repeat(6, 1fr)
}

.service-card {
    background: linear-gradient(180deg, rgba(16, 41, 71, .92), rgba(7, 20, 39, .92));
    border: 1px solid rgba(217, 166, 74, .22);
    border-radius: 22px;
    padding: 26px 16px;
    text-align: center;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
    position: relative;
    overflow: hidden;
    transition: .25s
}

.service-card:nth-child(even) {
    background: linear-gradient(180deg, rgba(12, 48, 80, .92), rgba(8, 25, 48, .94))
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(217, 166, 74, .55)
}

.service-card img {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px
}
.service-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.service-card a {
    display: inline-block;
    margin-top: 14px;
    color: var(--gold);
    font-weight: 900
}

.overview {
    padding-top: 8px;
}

.overview-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: stretch;
}

.stats-panel,
.countries {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stats-panel {
    padding: 32px;
    background: radial-gradient(circle at 30% 15%, rgba(217, 166, 74, .16), transparent 34%),
    linear-gradient(135deg, #071A32, #061225);
}

.stats-panel h2 {
    text-align: center;
    margin: 0 0 24px;
    color: #fff;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stats div {
    text-align: center;
    border: 1px solid rgba(217, 166, 74, .22);
    border-radius: 20px;
    padding: 22px 10px;
    background: rgba(255, 255, 255, .035);
}

.stats b {
    display: block;
    font-size: clamp(26px, 4vw, 34px);
    color: var(--gold);
    line-height: 1.3;
}

.stats span {
    font-size: 14px;
    color: var(--muted);
}

.countries {
    padding: 28px;
    background: linear-gradient(135deg, rgba(16, 41, 71, .86), rgba(8, 24, 46, .92));
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.panel-head h2 {
    margin: 0;
    color: #fff;
}

.mini-btn {
    border: 1px solid rgba(217, 166, 74, .4);
    background: rgba(217, 166, 74, .08);
    color: var(--gold);
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
}

.country-slider {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.country-track {
    flex: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px;
}

.country-track::-webkit-scrollbar {
    display: none;
}

.country-card {
    height: 190px;
    scroll-snap-align: center;
    border: 1px solid rgba(217, 166, 74, .28);
    border-radius: 22px;
    padding: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: .3s ease;
}

.country-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 166, 74, .65);
}

.country-card span {
    font-size: 36px;
    display: block;
    margin-bottom: 6px;
}

.country-card b {
    font-size: 21px;
    color: #fff;
}

.slider-btn {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(217, 166, 74, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 1120px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .country-track {
        grid-auto-columns: minmax(210px, 280px);
    }
}

@media (max-width: 720px) {
    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .panel-head {
        flex-direction: column;
        text-align: center;
    }

    .countries,
    .stats-panel {
        padding: 20px;
    }

    .country-slider {
        gap: 8px;
    }

    .country-track {
        grid-auto-columns: 78%;
    }

    .country-card {
        height: 170px;
    }

    .slider-btn {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .country-track {
        grid-auto-columns: 86%;
    }
}

.country-card {
    height: 190px;
    border: 1px solid rgba(217, 166, 74, .28);
    border-radius: 22px;
    padding: 18px;
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    transition: .3s ease;
}

.country-card span {
    font-size: 34px;
    display: block
}

.country-card b {
    font-size: 20px
}

.country-card small {
    color: rgba(255, 255, 255, .72)
}

.slider-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(217, 166, 74, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    color: var(--gold);
    font-size: 24px;
    cursor: pointer
}

.map-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 34px;
    padding: 40px 10px 20px;
}

/* خط مسیر نقشه */
.map-timeline::before {
    content: "";
    position: absolute;
    top: 103px;
    left: 9%;
    right: 9%;
    height: 3px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(217, 166, 74, .35),
            var(--gold),
            rgba(217, 166, 74, .35),
            transparent
    );
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(217, 166, 74, .35);
}

/* خط دوم برای ردیف پایین */
.map-timeline::after {
    content: "";
    position: absolute;
    top: 365px;
    left: 9%;
    right: 9%;
    height: 3px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(217, 166, 74, .35),
            var(--gold),
            rgba(217, 166, 74, .35),
            transparent
    );
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(217, 166, 74, .25);
}

.map-step {
    position: relative;
    z-index: 2;
    min-height: 220px;
    padding: 88px 22px 24px;
    text-align: center;
    border: 1px solid rgba(217, 166, 74, .24);
    border-radius: 28px;
    background: radial-gradient(circle at 50% 0%, rgba(217, 166, 74, .18), transparent 42%),
    linear-gradient(180deg, rgba(16, 41, 71, .92), rgba(7, 20, 39, .95));
    box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
    transition: .3s ease;
}

.map-step:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 166, 74, .65);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .3);
}

.map-icon {
    position: absolute;
    top: -44px;
    left: 50%;
    width: 104px;
    height: 104px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: radial-gradient(circle, rgba(217, 166, 74, .22), rgba(6, 18, 37, .98) 68%);
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 10px rgba(217, 166, 74, .07),
    0 18px 45px rgba(0, 0, 0, .28);
}

.map-icon::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px dashed rgba(217, 166, 74, .45);
    animation: rotateRing 14s linear infinite;
}

.map-icon span {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(217, 166, 74, .35);
}

.map-icon img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, .35));
}

.map-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
}

.map-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

/* نقطه‌های اتصال روی مسیر */
.map-step::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(217, 166, 74, .12);
}

/* حالت زیگزاگ برای شبیه نقشه شدن */
.map-step:nth-child(2),
.map-step:nth-child(5) {
    transform: translateY(34px);
}

.map-step:nth-child(2):hover,
.map-step:nth-child(5):hover {
    transform: translateY(26px);
}

@keyframes rotateRing {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

/* تبلت */
@media (max-width: 1120px) {
    .map-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 72px 26px;
    }

    .map-timeline::before,
    .map-timeline::after {
        display: none;
    }

    .map-step:nth-child(2),
    .map-step:nth-child(5) {
        transform: none;
    }

    .map-step:nth-child(2):hover,
    .map-step:nth-child(5):hover {
        transform: translateY(-8px);
    }
}

/* موبایل */
@media (max-width: 720px) {
    .map-timeline {
        grid-template-columns: 1fr;
        gap: 66px;
        padding: 38px 0 10px;
    }

    .map-timeline::before {
        display: block;
        top: 40px;
        bottom: 20px;
        right: 50%;
        left: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(
                180deg,
                transparent,
                rgba(217, 166, 74, .35),
                var(--gold),
                rgba(217, 166, 74, .35),
                transparent
        );
    }

    .map-step {
        min-height: auto;
        padding: 86px 18px 24px;
    }

    .map-content h3 {
        font-size: 19px;
    }

    .map-content p {
        font-size: 13px;
    }
}

.step h3 {
    margin: 0;
    color: #fff
}

.step p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 0
}

.bottom-panels {
    padding-bottom: 48px;
}

.support-grid {
    display: grid;
    grid-template-columns: .95fr 1.1fr .95fr;
    gap: 24px;
    align-items: stretch;
}

.support-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 34px 28px;
    border: 1px solid rgba(217, 166, 74, .24);
    border-radius: 30px;
    background: radial-gradient(circle at 50% 0%, rgba(217, 166, 74, .18), transparent 38%),
    linear-gradient(180deg, rgba(16, 41, 71, .94), rgba(7, 20, 39, .96));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
    transition: .3s ease;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 166, 74, .62);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
}

.support-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(217, 166, 74, .16), transparent 30%);
    pointer-events: none;
}

.support-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(217, 166, 74, .25);
}

.support-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    text-align: center;
    color: #fff;
    font-size: 25px;
}

.quote {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    text-align: center;
    font-size: 15px;
    line-height: 2.1;
}

.client-box {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(217, 166, 74, .22);
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
}

.client-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(217, 166, 74, .14);
    border: 1px solid rgba(217, 166, 74, .45);
    color: var(--gold);
    font-weight: 900;
    font-size: 20px;
}

.client-box b {
    display: block;
    color: var(--gold);
    line-height: 1.5;
}

.client-box small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.consult-card {
    background: radial-gradient(circle at 50% 0%, rgba(240, 196, 107, .24), transparent 42%),
    linear-gradient(180deg, rgba(217, 166, 74, .18), rgba(16, 41, 71, .92)),
    linear-gradient(135deg, #102947, #071427);
}

.form-desc {
    position: relative;
    z-index: 1;
    margin: -4px 0 18px;
    text-align: center;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
}

.consult-card .form-row,
.consult-card input,
.consult-card select,
.consult-card button {
    position: relative;
    z-index: 1;
}

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

input,
select {
    width: 100%;
    border: 1px solid rgba(217, 166, 74, .30);
    border-radius: 16px;
    padding: 15px 16px;
    background: rgba(6, 18, 37, .62);
    color: #fff;
    outline: 0;
    margin-bottom: 12px;
    font-family: inherit;
}

input:focus,
select:focus {
    border-color: rgba(217, 166, 74, .7);
    box-shadow: 0 0 0 4px rgba(217, 166, 74, .08);
}

input::placeholder {
    color: rgba(255, 255, 255, .55);
}

select option {
    color: #111;
}

.faq-box {
    position: relative;
    z-index: 1;
}

.faq-box details {
    border: 1px solid rgba(217, 166, 74, .22);
    border-radius: 18px;
    padding: 15px 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, .035);
    transition: .25s ease;
}

.faq-box details[open] {
    border-color: rgba(217, 166, 74, .52);
    background: rgba(217, 166, 74, .07);
}

.faq-box summary {
    cursor: pointer;
    font-weight: 900;
    color: #fff;
    list-style: none;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary::after {
    content: "+";
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(217, 166, 74, .12);
    color: var(--gold);
    font-size: 18px;
}

.faq-box details[open] summary::after {
    content: "−";
}

.faq-box p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

@media (max-width: 1120px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-card {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .support-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .support-card h2 {
        font-size: 22px;
    }

    .client-box {
        justify-content: center;
        text-align: right;
    }
}

.footer {
    background: linear-gradient(180deg, #04101F, #020912);
    border-top: 1px solid rgba(217, 166, 74, .18);
    padding: 60px 0 0;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    transition: .25s;
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(-4px);
}

/* برند */
.brand-col p {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    margin: 12px 0 20px;
    line-height: 1.9;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 60px;
}

.footer-logo h3 {
    font-size: 12px;
    color: #fff;
}

/* سوشال */
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(217, 166, 74, .08);
    border: 1px solid rgba(217, 166, 74, .3);
    transition: .3s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* تماس */
.contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .75);
}

.contact-item span {
    color: var(--gold);
}

/* پایین */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 18px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

/* ریسپانسیو */
@media (max-width: 1120px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .55)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s ease
}

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

@media (max-width: 1120px) {
    .nav-links {
        position: fixed;
        inset: 84px 0 auto 0;
        background: rgba(6, 18, 37, .98);
        padding: 24px;
        display: none;
        flex-direction: column
    }

    .nav-links.active {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .nav > .btn {
        display: none
    }

    .hero-grid, .overview-grid, .bottom-grid {
        grid-template-columns:1fr
    }

    .service-grid.six {
        grid-template-columns:repeat(3, 1fr)
    }

    .timeline {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 720px) {
    .hero {
        text-align: center
    }

    .hero-actions, .hero-badges {
        justify-content: center
    }

    .service-grid.six, .timeline, .stats, .form-row, .footer-grid {
        grid-template-columns:1fr
    }

    .panel-head {
        flex-direction: column;
        text-align: center
    }

    .logo small {
        display: none
    }

    .country-card {
        min-width: 136px
    }

    .footer {
        text-align: center
    }

    .glass-panel {
        padding: 20px
    }
}

.articles {
    padding-top: 34px;
}

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

.article-card {
    background: linear-gradient(180deg, rgba(16, 41, 71, .92), rgba(7, 20, 39, .94));
    border: 1px solid rgba(217, 166, 74, .22);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .20);
    transition: .3s ease;
}

.article-card:hover {
    transform: translateY(-7px);
    border-color: rgba(217, 166, 74, .6);
}

.article-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

.article-card:hover .article-img img {
    transform: scale(1.08);
}

.article-content {
    padding: 22px;
}

.article-tag {
    display: inline-flex;
    background: rgba(217, 166, 74, .12);
    color: var(--gold);
    border: 1px solid rgba(217, 166, 74, .35);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.article-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 21px;
    line-height: 1.6;
}

.article-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.article-content a {
    display: inline-block;
    margin-top: 16px;
    color: var(--gold);
    font-weight: 900;
}

@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-img {
        height: 190px;
    }

    .article-content {
        padding: 18px;
    }
}