/* =========================================
   BARRA CONTATTI RAPIDI (TOP BAR)
   ========================================= */

.itw-new-contact-bar {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem 2.5rem;
    margin-bottom: 2.5rem; /* Spazio tra la barra e il form */
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
    border: 0.0625rem solid rgba(3, 169, 244, 0.1);

    /* Cambiato in flex-column per permettere il footer interno */
    display: flex;
    flex-direction: column;
}

/* Contenitore principale della barra (Tel, Mail, Bottoni) */
.itw-new-contact-bar-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Gruppo dei link testuali (Tel, Mail, WA) */
.itw-new-contact-bar-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.itw-new-contact-bar-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #2d3436;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.itw-new-contact-bar-item i {
    color: #03A9F4;
    font-size: 1.15rem;
}

.itw-new-contact-bar-item:hover {
    color: #03A9F4;
    transform: translateY(-0.15rem);
}

/* Gruppo dei bottoni a destra */
.itw-new-contact-bar-actions {
    display: flex;
    gap: 1rem;
}

.itw-new-contact-bar-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.itw-new-contact-bar-btn-primary {
    background-color: #03A9F4;
    color: #ffffff !important;
    box-shadow: 0 0.25rem 0.75rem rgba(3, 169, 244, 0.2);
}

.itw-new-contact-bar-btn-primary:hover {
    background-color: #0288D1;
    transform: translateY(-0.1rem);
    box-shadow: 0 0.4rem 1rem rgba(3, 169, 244, 0.3);
}

.itw-new-contact-bar-btn-outline {
    background-color: transparent;
    color: #03A9F4 !important;
    border: 0.125rem solid #03A9F4;
}

.itw-new-contact-bar-btn-outline:hover {
    background-color: #03A9F4;
    color: #ffffff !important;
    transform: translateY(-0.1rem);
}

/* --- NUOVA AREA FOOTER DELLA BARRA --- */
.itw-new-contact-bar-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgba(0, 0, 0, 0.05); /* Linea di divisione leggerissima */
    font-size: 0.85rem;
    color: #636e72;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.02rem;
}

.itw-new-contact-bar-footer span.text-primary {
    color: #03A9F4 !important;
    font-weight: 700;
}

/* Responsività Mobile */
@media (max-width: 991px) {
    .itw-new-contact-bar {
        padding: 1.5rem;
    }
    .itw-new-contact-bar-main {
        justify-content: center;
        text-align: center;
    }
    .itw-new-contact-bar-group {
        justify-content: center;
        width: 100%;
        gap: 1.5rem;
    }
    .itw-new-contact-bar-actions {
        width: 100%;
        justify-content: center;
    }
}