﻿/* HERO */
.servizi-hero {
    height: 50vh;
    background: url('../img/camion.png') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
}

    .servizi-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.45);
    }

.servizi-hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

    .servizi-hero-content h1 {
        font-size: 3rem;
        margin-bottom: 15px;
        color: white; /* DEVE RIMANERE BIANCO */
    }

/* SERVIZI PRINCIPALI */
.servizi-lista h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0B7A3E; /* VERDE */
}

.servizi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.servizio-card {
    background: #ffffffcc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

    .servizio-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    }

    .servizio-card h3 {
        color: #0B7A3E; /* VERDE */
        margin-bottom: 10px;
    }

    .servizio-card p {
        color: #000; /* NERO */
        font-size: 1.1rem;
    }

/* PLUS */
.servizi-plus h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0B7A3E; /* VERDE */
}

.plus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.plus-item {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .plus-item strong {
        display: block;
        font-size: 1.3rem;
        color: #0B7A3E; /* VERDE */
        margin-bottom: 10px;
    }

/* CTA */
.servizi-cta {
    text-align: center;
    padding: 80px 20px;
    background: #062A18;
    color: white;
}

    .servizi-cta h2 {
        margin-bottom: 20px;
        font-size: 2rem;
    }

/* CTA COMPATTA - SERVIZI */
.servizi-cta-compact {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.cta-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 30px;
    border-radius: 16px;
    max-width: 350px;
    width: 90%;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(4px);
}

    .cta-box h3 {
        font-size: 22px;
        color: #0B7A3E; /* VERDE */
        margin-bottom: 15px;
        font-weight: 600;
    }

.cta-btn {
    display: inline-block;
    background: #0B7A3E;
    color: white;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s ease;
}

    .cta-btn:hover {
        background: #095f30;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .servizi-grid,
    .plus-grid {
        grid-template-columns: 1fr;
    }

    .servizi-hero {
        height: 40vh;
    }

    .servizi-hero-content h1 {
        font-size: 2.2rem;
    }

    .cta-box {
        padding: 20px;
        max-width: 90%;
    }

        .cta-box h3 {
            font-size: 20px;
        }

    .cta-btn {
        font-size: 15px;
        padding: 9px 18px;
    }
}
