/* ========================================
   CONTATTI PAGE - MenuEventi
======================================== */

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 150, 190, 0.15);
    border-color: #2596be;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.3);
}

.contact-info-card h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-label {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.contact-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2596be;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: #04c1de;
    transform: scale(1.05);
}

.btn-whatsapp,
.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-email {
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    color: white;
}

.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.3);
    color: white;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Form Modern Style */
.form-group-modern {
    position: relative;
    margin-bottom: 2rem;
}

.form-control-modern {
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-control-modern:focus {
    outline: none;
    border-color: #2596be;
    background: white;
    box-shadow: 0 5px 20px rgba(37, 150, 190, 0.1);
}

.form-control-modern:focus + label {
    color: #2596be;
    transform: translateY(-140%) scale(0.85);
    background: white;
    padding: 0 0.5rem;
}

.form-control-modern:not(:placeholder-shown) + label {
    transform: translateY(-140%) scale(0.85);
    background: white;
    padding: 0 0.5rem;
}

.form-group-modern label {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group-modern textarea + label {
    top: 1.5rem;
    transform: none;
}

.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label {
    transform: translateY(-170%) scale(0.85);
}

.form-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #2596be;
    font-size: 1.1rem;
}

.form-group-modern textarea ~ .form-icon {
    top: 1.5rem;
    transform: none;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 150px;
}

select.form-control-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232596be' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
}

/* Submit Button */
.btn-submit-form {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.3);
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 150, 190, 0.4);
}

.btn-submit-form i {
    font-size: 1.2rem;
}

/* Contact Info Side */
.contact-info-side {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 3rem;
    border-radius: 30px;
    height: 100%;
}

.contact-info-side h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2596be;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 150, 190, 0.2);
}

.info-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.social-links-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(37, 150, 190, 0.2);
}

.social-links-contact h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.social-link-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: #2596be;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link-contact:hover {
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.3);
}

/* FAQ Accordion Modern */
.accordion-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button-modern {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.accordion-button-modern:hover {
    background: #f8fafc;
    color: #2596be;
}

.accordion-button-modern:not(.collapsed) {
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    color: white;
}

.accordion-button-modern i {
    font-size: 1.5rem;
    color: #2596be;
}

.accordion-button-modern:not(.collapsed) i {
    color: white;
}

.accordion-body-modern {
    padding: 1.5rem 2rem 2rem 5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    background: white;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.cta-box-modern {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #2596be 0%, #04c1de 100%);
    color: white;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.3);
}

.btn-cta-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 150, 190, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .contact-info-side {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .cta-box-modern {
        padding: 3rem 2rem;
        text-align: center;
    }

    .btn-cta-modern {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-control-modern {
        padding: 1rem 0.75rem 1rem 3rem;
    }

    .form-group-modern label {
        left: 3rem;
        font-size: 0.9rem;
    }

    .accordion-button-modern {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-body-modern {
        padding: 1.25rem 1.5rem 1.5rem 4rem;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}