/* ==========================================
   Features Section - Grid Fix
   ========================================== */

/* Force 2+2+1 layout with 2 columns */
#what-we-do .features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Alternative: Force 3 columns for 5 cards (will show as 3+2) */
/*
#what-we-do .features-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
*/

/* Alternative: Force all 5 in one row */
/*
#what-we-do .features-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}
*/

/* Feature card styles */
#what-we-do .feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#what-we-do .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

#what-we-do .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

#what-we-do .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

#what-we-do .feature-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

#what-we-do .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#what-we-do .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6b7280;
}

#what-we-do .feature-list li i {
    color: #10b981;
    flex-shrink: 0;
    font-size: 0.875rem;
}

/* Tablet */
@media (max-width: 1024px) {
    #what-we-do .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #what-we-do .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    #what-we-do .feature-card {
        padding: 25px;
    }
}