/* ========================================== */
/* قسم المميزات */
/* ========================================== */

.features-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    direction: rtl;
}

.features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 350px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 3px solid #b42f4c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #b42f4c;
    box-shadow: 0 8px 20px rgba(180, 47, 76, 0.3);
    transform: scale(1.05);
}

.feature-item:hover .feature-icon svg {
    stroke: #fff;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    text-align: right;
}

/* ========================================== */
/* الموبايل والآيباد */
/* ========================================== */

@media (max-width: 992px) {
    .features-section {
        padding: 40px 0;
    }

    .features-grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }

    .feature-item {
        max-width: 100%;
        width: 100%;
        justify-content: flex-start;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon svg {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        padding: 0 20px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon svg {
        width: 35px;
        height: 35px;
    }

    .feature-title {
        font-size: 15px;
    }
}
