/* ==========================================
   [SERVICES CSS] 7. BUTON "VEZI TOATE" (CORECTAT)
   ========================================== */
.services-all-btn-wrapper {
    text-align: center;
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.services-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #0000FF, #0000CC);
    color: #ffffff;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
    
    /* Forțăm butonul să nu se lungească ciudat */
    max-width: max-content; 
    height: auto;
}

.services-all-btn:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #00cc66, #00994d);
    color: #ffffff;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
}

/* REZOLVARE PICTOGRAMĂ MARE: Blocăm dimensiunile exact aici */
.services-all-btn svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    display: inline-block !important;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    margin: 0;
    padding: 0;
}