:root {
    --text-muted: #64748b;
}


/* Header Gradient */
.header-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Personalizzate */
.organ-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.organ-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(13, 110, 253, 0.2);
}

/* Icon Box */
.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
    background: transparent !important;
    border: 1px solid var(--color-primary) !important;
}

.organ-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Colori per le categorie */
.c-motore {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.c-cambio-m {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.c-trasm {
    background-color: rgba(13, 202, 253, 0.1);
    color: #0dcaf0;
}

.c-cambio-a {
    background-color: rgba(102, 16, 242, 0.1);
    color: #6610f2;
}

.c-raffr {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.c-alim {
    background-color: rgba(255, 193, 7, 0.15);
    color: #d39e00;
}

.c-elettrici {
    background-color: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.c-guida {
    background-color: rgba(32, 201, 151, 0.1);
    color: #20c997;
}

.c-freni {
    background-color: rgba(214, 51, 132, 0.1);
    color: #d63384;
}

.c-manodopera {
    background-color: rgba(99, 102, 241, 0.1);
    color: #4f46e5;
}

/* Badge personalizzato */
.axxo-badge {
    background-color: var(--color-style-red);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Box Avvertenze */
.disclaimer-box {
    background: linear-gradient(to right, #ffffff, #f1f5f9);
    border-left: 4px solid #0d6efd;
    border-radius: 0.5rem;
}

/* Animazione di entrata Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Ritardi per l'effetto a cascata */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.delay-7 {
    animation-delay: 0.7s;
}

.delay-8 {
    animation-delay: 0.8s;
}

.delay-9 {
    animation-delay: 0.9s;
}

.delay-10 {
    animation-delay: 1.0s;
}

.torch-red .services-area a:hover {
    background: transparent;
    color: var(--color-style-two) !important;
}

.torch-red .services-area h4 .axxo-badge {
    color: var(--white) !important;
    text-align: center;
}