/* ============================================================ */
/* ===== RESET & BASE ===== */
/* ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9fc;
    padding-top: 85px;
}

/* ============================================================ */
/* ===== HEADER ===== */
/* ============================================================ */

.custom-header {
    background: #0b1a33;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    padding: 14px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.custom-header.scrolled {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    background: rgba(11, 26, 51, 0.95);
    backdrop-filter: blur(10px);
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
}

.logo img {
    width: 60px;
    /* اصلاح شد */
    height: auto;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-right: -10px;
}

.logo-text span {
    color: #f7c948;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    display: block;
    margin-top: -4px;
}

/* ===== NAVBAR WRAPPER ===== */
.navbar-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ===== TOGGLE BUTTON ===== */
.navbar-toggler-custom {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    display: none;
    order: 2;
}

.navbar-toggler-custom:focus {
    outline: none;
}

.navbar-toggler-custom span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 4px;
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== NAVIGATION ===== */
.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}

.nav-menu .nav-item {
    position: relative;
}

.nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-menu .nav-link i {
    font-size: 0.85rem;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-menu .nav-link:hover {
    color: #f7c948;
    background: rgba(247, 201, 72, 0.12);
}

.nav-menu .nav-link:hover i {
    opacity: 1;
    color: #f7c948;
}

.nav-menu .nav-link.active {
    color: #f7c948;
    background: rgba(247, 201, 72, 0.15);
}

/* ===== DROPDOWN ===== */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    background: #0b1a33;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 8px;
    min-width: 220px;
    margin-top: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nav-item.dropdown .dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background: rgba(247, 201, 72, 0.12);
    color: #f7c948;
}

.nav-item.dropdown .dropdown-menu .dropdown-item i {
    color: #f7c948;
    opacity: 0.7;
}

.nav-item.dropdown .dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 6px 0;
}

/* ===== CONTACT BUTTON ===== */
.btn-contact-header {
    background: linear-gradient(145deg, #f7c948, #e6b83a) !important;
    color: #0b1a33 !important;
    padding: 10px 28px !important;
    border-radius: 60px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(247, 201, 72, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    margin-right: auto;
    text-decoration: none;
}

.btn-contact-header:hover {
    background: linear-gradient(145deg, #ffe07a, #f7c948) !important;
    color: #0b1a33 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(247, 201, 72, 0.5) !important;
}

.btn-contact-header i {
    font-size: 0.9rem;
    opacity: 1 !important;
    color: #0b1a33;
}

/* ============================================================ */
/* ===== HERO SECTION ===== */
/* ============================================================ */

.container-fluid {
    padding: 0 !important;
}

.row.g-0 {
    margin: 0 !important;
}

.row.g-0>* {
    padding: 0 !important;
}

.hero-section {
    min-height: calc(100vh - 85px);
    background: #0b1a33;
    display: flex;
    align-items: center;
}

.hero-section .col-lg-6 {
    min-height: calc(100vh - 85px);
}

.hero-content {
    padding: 40px 50px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: #f7c948;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 6px;
    background: rgba(247, 201, 72, 0.25);
    border-radius: 10px;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn-primary-custom {
    background: linear-gradient(145deg, #f7c948, #e6b83a);
    color: #0b1a33 !important;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(247, 201, 72, 0.3);
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(247, 201, 72, 0.45);
    background: linear-gradient(145deg, #ffe07a, #f7c948);
    color: #0b1a33 !important;
}

.btn-secondary-custom {
    background: transparent;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #f7c948;
    color: #f7c948 !important;
    transform: translateY(-3px);
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1a33;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 992px) {
    body {
        padding-top: 75px;
    }

    .logo-text {
        font-size: 1.4rem;
        margin-right: -5px;
    }

    .logo img {
        width: 140px;
    }

    .navbar-toggler-custom {
        display: block;
    }

    .navbar-collapse-custom {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        height: 100vh;
        background: #0b1a33;
        padding: 80px 24px 30px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: -4px 0 40px rgba(0, 0, 0, 0.5);
    }

    .navbar-collapse-custom.show {
        transform: translateX(0);
    }

    .menu-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .menu-close-btn:hover {
        background: rgba(247, 201, 72, 0.15);
        border-color: #f7c948;
        color: #f7c948;
    }

    .nav-menu-mobile {
        display: flex;
        flex-direction: column;
        gap: 4px;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .nav-menu-mobile .nav-item {
        width: 100%;
    }

    .nav-menu-mobile .nav-link {
        padding: 12px 16px;
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        border-bottom: none !important;
        text-decoration: none !important;
    }

    .nav-menu-mobile .nav-link:hover {
        background: rgba(247, 201, 72, 0.1);
        color: #f7c948;
    }

    .nav-menu-mobile .nav-link i {
        width: 24px;
        text-align: center;
    }

    .btn-contact-mobile {
        background: linear-gradient(145deg, #f7c948, #e6b83a) !important;
        color: #0b1a33 !important;
        padding: 14px 20px !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        text-align: center;
        display: block;
        text-decoration: none;
        margin-top: 16px;
        transition: 0.3s;
    }

    .btn-contact-mobile:hover {
        background: linear-gradient(145deg, #ffe07a, #f7c948) !important;
        transform: translateY(-2px);
    }

    .btn-contact-mobile i {
        margin-left: 8px;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        padding: 8px 0;
        margin: 4px 0 4px 20px;
        box-shadow: none;
        width: auto;
        display: none;
    }

    .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }

    .nav-item.dropdown .dropdown-menu .dropdown-item {
        padding: 10px 18px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
        background: rgba(247, 201, 72, 0.08);
        color: #f7c948;
    }

    .nav-item.dropdown .dropdown-menu .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.04);
    }

    .nav-item.dropdown>.nav-link {
        border-bottom: none !important;
        text-decoration: none !important;
    }

    .nav-item.dropdown>.nav-link::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-right: auto;
        transition: 0.3s;
        border: none !important;
        text-decoration: none !important;
        background: none !important;
    }

    .nav-item.dropdown.show>.nav-link::after {
        transform: rotate(180deg);
    }

    .btn-contact-desktop {
        display: none !important;
    }

    /* ===== HERO RESPONSIVE ===== */
    .hero-section {
        min-height: auto;
    }

    .hero-section .col-lg-6 {
        min-height: auto;
    }

    .hero-content {
        padding: 50px 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
        margin-top: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        min-height: 400px;
        height: 400px;
    }

    .hero-image img {
        /* object-fit: cover; */
    }
}

@media (max-width: 576px) {
    .custom-header {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 1.2rem;
        margin-right: -3px;
    }

    .logo-sub {
        font-size: 0.5rem;
    }

    .logo img {
        width: 110px;
    }

    .navbar-collapse-custom {
        width: 280px;
    }

    /* ===== HERO MOBILE ===== */
    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title span::after {
        height: 4px;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

 

    

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-image {
        min-height: 250px;
        height: 250px;
    }
}

@media (min-width: 993px) {
    .navbar-toggler-custom {
        display: none !important;
    }

    .navbar-collapse-custom {
        display: flex !important;
        flex: 1;
        position: static !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        border: none !important;
        overflow-y: visible !important;
    }

    .menu-close-btn {
        display: none !important;
    }

    .nav-menu-mobile {
        flex-direction: row !important;
        justify-content: center;
        flex: 1;
    }

    .btn-contact-mobile {
        display: none !important;
    }

    .nav-item.dropdown .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ============================================================ */
/* ===== زیرمجموعه‌های هلدینگ پویا ===== */
/* ============================================================ */

/* ============================================================ */
/* ===== زیرمجموعه‌های هلدینگ پویا ===== */
/* ============================================================ */

.subsidiaries-section {
    padding: 80px 0;
    background: #0b1a33;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: #f7c948;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f7c948, #e6b83a);
    border-radius: 4px;
}

/* ============================================================ */
/* ===== کارت‌ها (پایه) ===== */
/* ============================================================ */

.subsidiary-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    min-height: 250px;
    padding: 28px 24px;
    border-radius: 20px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.subsidiary-card:hover {
    transform: translateY(-8px);
}

/* ===== خط بالای کارت ===== */
.subsidiary-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.subsidiary-card:hover::before {
    opacity: 1;
}

/* ===== افکت دایره‌ای پشت لوگو ===== */
.subsidiary-card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.3;
    transition: 0.5s;
}

.subsidiary-card:hover::after {
    transform: scale(1.3);
    opacity: 0.5;
}

/* ============================================================ */
/* ===== هر کارت با رنگ متفاوت ===== */
/* ============================================================ */

/* ----- کارت 1: کارتوس (آبی) ----- */
.card-kartus {
    border-color: rgba(0, 150, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 150, 255, 0.05);
}

.card-kartus::before {
    background: linear-gradient(90deg, #0096ff, #00d4ff);
}

.card-kartus::after {
    background: radial-gradient(rgba(0, 150, 255, 0.15), transparent 70%);
}

.card-kartus:hover {
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 150, 255, 0.15);
}

.card-kartus .card-icon {
    border-color: rgba(0, 150, 255, 0.2);
    background: rgba(0, 150, 255, 0.08);
}

.card-kartus .card-icon i,
.card-kartus .card-icon img {
    filter: brightness(0) invert(1);
}

.card-kartus:hover .card-icon {
    background: linear-gradient(145deg, #0096ff, #00d4ff);
}

/* ----- کارت 2: آکادمی کاریزما (طلایی) ----- */
.card-karizma {
    border-color: rgba(247, 201, 72, 0.25);
    box-shadow: 0 4px 30px rgba(247, 201, 72, 0.05);
}

.card-karizma::before {
    background: linear-gradient(90deg, #f7c948, #e6b83a);
}

.card-karizma::after {
    background: radial-gradient(rgba(247, 201, 72, 0.15), transparent 70%);
}

.card-karizma:hover {
    border-color: rgba(247, 201, 72, 0.6);
    box-shadow: 0 20px 50px rgba(247, 201, 72, 0.15);
}

.card-karizma .card-icon {
    border-color: rgba(247, 201, 72, 0.2);
    background: rgba(247, 201, 72, 0.08);
}

.card-karizma:hover .card-icon {
    background: linear-gradient(145deg, #f7c948, #e6b83a);
}

/* ----- کارت 3: ذهن برتر (بنفش) ----- */
.card-zehn {
    border-color: rgba(180, 80, 255, 0.25);
    box-shadow: 0 4px 30px rgba(180, 80, 255, 0.05);
}

.card-zehn::before {
    background: linear-gradient(90deg, #b450ff, #8b5cf6);
}

.card-zehn::after {
    background: radial-gradient(rgba(180, 80, 255, 0.15), transparent 70%);
}

.card-zehn:hover {
    border-color: rgba(180, 80, 255, 0.6);
    box-shadow: 0 20px 50px rgba(180, 80, 255, 0.15);
}

.card-zehn .card-icon {
    border-color: rgba(180, 80, 255, 0.2);
    background: rgba(180, 80, 255, 0.08);
}

.card-zehn:hover .card-icon {
    background: linear-gradient(145deg, #b450ff, #8b5cf6);
}

/* ----- کارت 4: کاریزما سیستم (فیروزه‌ای/سبز) ----- */
.card-system {
    border-color: rgba(0, 230, 200, 0.25);
    box-shadow: 0 4px 30px rgba(0, 230, 200, 0.05);
}

.card-system::before {
    background: linear-gradient(90deg, #00e6c8, #00c9a7);
}

.card-system::after {
    background: radial-gradient(rgba(0, 230, 200, 0.15), transparent 70%);
}

.card-system:hover {
    border-color: rgba(0, 230, 200, 0.6);
    box-shadow: 0 20px 50px rgba(0, 230, 200, 0.15);
}

.card-system .card-icon {
    border-color: rgba(0, 230, 200, 0.2);
    background: rgba(0, 230, 200, 0.08);
}

.card-system:hover .card-icon {
    background: linear-gradient(145deg, #00e6c8, #00c9a7);
}

/* ============================================================ */
/* ===== اجزای کارت ===== */
/* ============================================================ */

/* ===== آیکون کارت ===== */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
}

.card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.subsidiary-card:hover .card-icon {
    transform: scale(1.05) rotate(-4deg);
}

.subsidiary-card:hover .card-icon img {
    filter: brightness(0) invert(0);
}

.subsidiary-card:hover .card-icon i {
    color: #0b1a33;
}

/* ===== محتوای کارت ===== */
.card-content {
    flex: 1;
    width: 100%;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.subsidiary-card:hover .card-content h3 {
    color: #f7c948;
}

.card-content span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin: 0;
}

/* ===== فلش دکمه ===== */
.card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-top: 8px;
}

.subsidiary-card:hover .card-arrow {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateX(-4px);
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 992px) {
    .subsidiaries-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .subsidiary-card {
        min-height: 220px;
        padding: 24px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    


}


@media (max-width: 992px) {
    .hero-image img {
        object-fit: contain !important;
        margin-top: 50px;
    }
}



@media (max-width: 576px) {
    .subsidiaries-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-title::after {
        width: 60px;
        bottom: -10px;
    }

    .subsidiary-card {
        min-height: auto;
        padding: 18px 16px;
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
        flex-shrink: 0;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content span {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .card-content p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .card-arrow {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .card-arrow i {
        font-size: 0.7rem;
    }
}

/* ============================================================ */
/* ===== درباره هلدینگ پویا ===== */
/* ============================================================ */

.about-section {
    padding: 80px 0;
    background: #0b1a33;
}

.about-content {
    max-width: 550px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-title span {
    color: #f7c948;
    position: relative;
}

.about-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 100%;
    height: 4px;
    background: rgba(247, 201, 72, 0.25);
    border-radius: 4px;
}

.about-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 2;
    margin-bottom: 30px;
}

/* ===== دکمه بیشتر بدانید ===== */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #f7c948, #e6b83a);
    color: #0b1a33;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 201, 72, 0.2);
    border: none;
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 201, 72, 0.35);
    background: linear-gradient(145deg, #ffe07a, #f7c948);
    color: #0b1a33;
}

.btn-about i {
    transition: transform 0.3s ease;
}

.btn-about:hover i {
    transform: translateX(-4px);
}

/* ============================================================ */
/* ===== آمار ===== */
/* ============================================================ */

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(247, 201, 72, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #f7c948;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 1rem;
    }

    .btn-about {
        margin: 0 auto;
    }

    .about-stats {
        gap: 15px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-desc {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .btn-about {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

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

    .stat-item {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* ============================================================ */
/* ===== بخش تماس با ما ===== */
/* ============================================================ */

.cta-section {
    padding: 50px 0;
    background: #0b1a33;
    position: relative;
    overflow: hidden;
}

/* ===== نور طلایی یکدست روی بک‌گراند (بیشتر) ===== */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(247, 201, 72, 0.25), rgba(247, 201, 72, 0.05) 50%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* ===== نور طلایی قوی از بالا ===== */
.cta-section::after {
    content: '';
    position: absolute;
    top: -30%;
    left: 0;
    right: 0;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(247, 201, 72, 0.2), transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

/* ===== نور تزئینی پایین ===== */
.cta-section .glow-left {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: radial-gradient(ellipse at bottom, rgba(247, 201, 72, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ===== انیمیشن ===== */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-title span {
    color: #f7c948;
    position: relative;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== دکمه تماس با ما ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #f7c948, #e6b83a);
    color: #0b1a33;
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(247, 201, 72, 0.3);
    border: none;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(247, 201, 72, 0.5);
    background: linear-gradient(145deg, #ffe07a, #f7c948);
    color: #0b1a33;
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(-4px);
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 992px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-desc {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    .btn-cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 30px 0;
    }

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-desc {
        font-size: 0.85rem;
        padding: 0 10px;
        margin-bottom: 18px;
    }

    .btn-cta {
        padding: 10px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================ */
/* ===== FOOTER ===== */
/* ============================================================ */

.main-footer {
    background: #07131f;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== ستون 1: برند ===== */
.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-logo span span {
    color: #f7c948;
}

.footer-about {
    font-size: 0.92rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    margin-bottom: 20px;
}

/* ===== شبکه‌های اجتماعی ===== */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #f7c948;
    border-color: #f7c948;
    color: #0b1a33;
    transform: translateY(-3px);
}

/* ===== لینک‌ها ===== */
.footer-links h5 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 30px;
    height: 3px;
    background: #f7c948;
    border-radius: 4px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: #f7c948;
    padding-right: 6px;
}

/* ===== خبرنامه ===== */
.footer-newsletter h5 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.footer-newsletter h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 30px;
    height: 3px;
    background: #f7c948;
    border-radius: 4px;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 0.9rem;
    direction: rtl;
    outline: none;
    transition: 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: rgba(247, 201, 72, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.newsletter-form button {
    padding: 12px 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(145deg, #f7c948, #e6b83a);
    color: #0b1a33;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(247, 201, 72, 0.3);
}

/* ===== اطلاعات تماس ===== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-contact span i {
    color: #f7c948;
    margin-left: 8px;
    width: 16px;
}

/* ===== کپی رایت ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: #f7c948;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================================ */
/* ===== RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 992px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 30px 0 15px;
    }

    .footer-logo span {
        font-size: 1.2rem;
    }

    .footer-links h5,
    .footer-newsletter h5 {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

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

    .footer-links ul li a {
        font-size: 0.85rem;
    }
}


