/* قسم لماذا نحن الخيار الأول المحسن */
.why-us-section-enhanced {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.why-us-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(74, 155, 142, 0.03) 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, rgba(74, 155, 142, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* هيدر القسم */
.why-us-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-us-header .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.why-us-header .sub-title {
    font-size: 2rem;
    font-weight: 600;
    color: #4285f4;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-us-header .description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* شارات المميزات */
.features-badges-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-badges-enhanced .feature-badge-enhanced:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

.feature-badge-enhanced {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    flex-direction: row;
    justify-content: flex-start;
}

.feature-badge-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #4285f4;
}

.feature-badge-enhanced i {
    color: #4285f4;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-badge-enhanced span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* شبكة الكروت */
.why-us-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* كروت المميزات */
.why-us-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f3f4;
    text-align: center;
}

.why-us-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #4285f4;
}

.why-us-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-us-card-enhanced:hover::before {
    transform: scaleX(1);
}

/* أيقونات الكروت */
.card-icon-enhanced {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.why-us-card-enhanced:hover .card-icon-enhanced {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4);
}

/* محتوى الكروت */
.card-content-enhanced h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content-enhanced p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
}

/* الاستجابة للموبايل */
@media (max-width: 768px) {
    .why-us-section-enhanced {
        padding: 3rem 0;
    }
    
    .why-us-header {
        margin-bottom: 3rem;
    }
    
    .why-us-header .main-title {
        font-size: 2rem;
    }
    
    .why-us-header .sub-title {
        font-size: 1.6rem;
    }
    
    .why-us-header .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .features-badges-enhanced {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .features-badges-enhanced .feature-badge-enhanced:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 250px;
    }
    
    .feature-badge-enhanced {
        padding: 1rem 0.8rem;
        flex-direction: row;
        text-align: right;
        gap: 0.6rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .feature-badge-enhanced i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .feature-badge-enhanced span {
        font-size: 0.8rem;
        white-space: normal;
        text-align: right;
        line-height: 1.3;
        font-weight: 600;
        flex: 1;
    }
    
    .why-us-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .why-us-card-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .card-icon-enhanced {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-content-enhanced h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .card-content-enhanced p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .why-us-header .main-title {
        font-size: 1.8rem;
    }

    .why-us-header .sub-title {
        font-size: 1.4rem;
    }

    .features-badges-enhanced {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .features-badges-enhanced .feature-badge-enhanced:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 200px;
    }

    .feature-badge-enhanced {
        padding: 0.8rem 0.6rem;
        min-height: 60px;
        gap: 0.5rem;
    }

    .feature-badge-enhanced i {
        font-size: 1rem;
    }

    .feature-badge-enhanced span {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .why-us-cards-grid {
        gap: 1rem;
    }
    
    .why-us-card-enhanced {
        padding: 1.5rem 1rem;
    }
    
    .card-icon-enhanced {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .card-content-enhanced h4 {
        font-size: 1rem;
    }
    
    .card-content-enhanced p {
        font-size: 0.85rem;
    }
}
