/* ====================================
   Why Us Section - لماذا تختارنا
   Space Theme Design
   ==================================== */

/* Section Container */
.about-section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.about-values-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.2;
}

.about-section-desc {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Grid - Simple Clean Layout */
.about-why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Card - Clean White Design */
.about-why-card {
    position: relative;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 200, 220, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Card Accent Colors - Subtle */
.about-why-card:nth-child(1) {
    border-color: rgba(6, 182, 212, 0.15);
}

.about-why-card:nth-child(2) {
    border-color: rgba(139, 92, 246, 0.15);
}

.about-why-card:nth-child(3) {
    border-color: rgba(236, 72, 153, 0.15);
}

.about-why-card:nth-child(4) {
    border-color: rgba(16, 185, 129, 0.15);
}

/* Card Hover Effect - Subtle */
.about-why-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.about-why-card:nth-child(1):hover {
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.2), 0 4px 12px rgba(6, 182, 212, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(6, 182, 212, 0.3);
}

.about-why-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2), 0 4px 12px rgba(139, 92, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(139, 92, 246, 0.3);
}

.about-why-card:nth-child(3):hover {
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.2), 0 4px 12px rgba(236, 72, 153, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(236, 72, 153, 0.3);
}

.about-why-card:nth-child(4):hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(16, 185, 129, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Icon Container - Clean Simple Design */
.about-why-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
}

.about-why-card:nth-child(1) .about-why-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.3) 100%);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-why-card:nth-child(2) .about-why-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.3) 100%);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-why-card:nth-child(3) .about-why-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.3) 100%);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-why-card:nth-child(4) .about-why-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.3) 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-why-card:hover .about-why-icon {
    transform: scale(1.1);
}

.about-why-icon i {
    font-size: 32px;
    transition: all 0.3s ease;
}

.about-why-card:nth-child(1) .about-why-icon i {
    color: #06b6d4;
}

.about-why-card:nth-child(2) .about-why-icon i {
    color: #8b5cf6;
}

.about-why-card:nth-child(3) .about-why-icon i {
    color: #ec4899;
}

.about-why-card:nth-child(4) .about-why-icon i {
    color: #10b981;
}

/* Title - Clean Typography */
.about-why-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
}

/* Description - Clean Readability */
.about-why-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
}

/* Removed decorative elements for cleaner design */

/* Responsive Design */
@media (max-width: 1200px) {
    .about-why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-section-title {
        font-size: 32px;
    }
    
    .about-section-desc {
        font-size: 16px;
    }
    
    .about-why-us-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-why-card {
        padding: 28px 20px;
    }
    
    .about-why-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-why-icon i {
        font-size: 28px;
    }
    
    .about-why-title {
        font-size: 20px;
    }
    
    .about-why-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-values-header {
        margin-bottom: 40px;
    }
    
    .about-section-title {
        font-size: 28px;
    }
}
