/*==================================================
                ABOUT HERO
==================================================*/
.about-hero {
    position: relative;
    overflow: hidden;
}

/* دایره‌های محو پشت تصویر */
.about-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(231, 171, 60, .08);
    border-radius: 50%;
    top: -180px;
    left: -120px;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(231, 171, 60, .05);
    border-radius: 50%;
    bottom: 0px;
    right: -125px;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-subtitle {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 60px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 34px;
    margin-bottom: 20px;
}

.about-btns {
    margin-top: 40px;
}

.about-btns a {
    margin-left: 12px;
}

.secondary-btn {
    display: inline-block;
    padding: 12px 35px;
    font-weight: 600;
    transition: .3s;
}

.about-image {
    position: relative;
    z-index: 2;
    padding: 18px;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: var(--box-shadow);
}

/* کادر دور تصویر */
.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 4px solid var(--accent-color);
    border-radius: 18px;
    z-index: -1;
}

/*============================
        Responsive
============================*/
@media (max-width: 991px) {
    .about-content {
        margin-top: 50px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 34px;
        line-height: 48px;

    }

    .about-btns a {
        display: block;
        margin: 12px auto;
        width: 230px;
    }

}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 28px;
        line-height: 42px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 30px;
    }

}

/*=================================
        WHY US
=================================*/

.why-us-section .section-title {
    margin-bottom: 55px;
}

.why-us-section .section-title span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-us-section .section-title p {
    margin-top: 15px;
    color: var(--text-color);
}

.why-box {
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    transition: .35s;
    margin-bottom: 30px;
    height: 100%;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-color);
}

.why-box .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.why-box:hover .icon {
    background: var(--primary-color);
}

.why-box .icon i {
    font-size: 34px;
    color: var(--primary-color);
    transition: .3s;
}

.why-box:hover .icon i {
    color: var(--background-color);
}

.why-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.why-box p {
    color: var(--text-color);
    line-height: 30px;
    margin: 0;
}

/*=====================================
            COUNTER
=====================================*/
.counter-section {
    background: #252525;
    position: relative;
}

.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.section-title-light span {
    color: #e7ab3c;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title-light h2 {
    color: #fff;
}

.counter-box {
    text-align: center;
    padding: 30px 15px;
}

.counter-box h2 {
    display: inline-block;
    color: #e7ab3c;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-box span {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.counter-box p {
    color: #d8d8d8;
    font-size: 17px;
    margin-top: 10px;
}

/*=============================
        Statistics
=============================*/

.statistics-section .section-title {
    margin-bottom: 55px;
}

.statistics-section .section-title span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.statistics-section .section-title p {
    margin-top: 15px;
    color: var(--text-color);
}

.statistics-box {
    background: var(--background-card);
    border-radius: 22px;
    padding: 55px 35px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: rgb(166 123 46 / 0.6);
}

.border-none::after {
    display: none;
}

.stat-item h2 {
    font-size: 52px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-item span {
    font-size: 17px;
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 991px) {
    .statistics-box {
        padding: 35px 25px;
    }

    .stat-item {
        margin: 25px 0;
    }

    .stat-item::after {
        display: none;
    }

}

/*=========================
          FAQ
==========================*/

.faq-section .section-title {
    margin-bottom: 60px;
}

/*==============================
        Contact Card
===============================*/
.faq-contact-card {
    background: var(--background-card);
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
}

.faq-section .section-title span {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-section .section-title p {
    margin-top: 15px;
    color: var(--text-color);
}

.faq-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icon-box i {
    font-size: 38px;
    color: var(--primary-color);
}

.faq-contact-card h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-contact-card p {
    color: var(--text-color);
    line-height: 32px;
    margin-bottom: 30px;
}

.faq-contact-info {
    text-align: right;
    margin-bottom: 35px;
}

.faq-contact-info div {
    margin-bottom: 15px;
}

.faq-contact-info i {
    width: 26px;
    color: var(--accent-color);
}
