/* Hero specifica contatti */
.contact-hero {
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(180deg, #05000a 0%, #1a002e 100%);
    border-bottom: 1px solid #bc13fe;
}

.contact-hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.contact-hero p { font-family: 'AquireLight', sans-serif; color: #ccc; font-size: 1.2rem; }

/* Layout Griglia */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 50px;
}

.contact-info { flex: 1; min-width: 300px; }
.contact-form-wrapper { flex: 1.5; min-width: 300px; }

/* Info Boxes */
.info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 3px solid #bc13fe;
    transition: 0.3s;
}

.info-box:hover { background: rgba(255, 255, 255, 0.08); transform: translateX(5px); }
.info-box i { font-size: 1.5rem; color: #bc13fe; margin-bottom: 10px; }
.info-box h3 { color: #fff; margin-bottom: 5px; font-family: 'AquireBold', sans-serif; }
.info-box p { color: #ccc; }
.text-link { color: #00ffff; text-decoration: none; font-weight: bold; margin-top: 5px; display: inline-block; }

/* FAQ */
.faq-section { margin-top: 40px; }
.faq-section h3 { color: #fff; font-family: 'AquireBold', sans-serif; margin-bottom: 20px; font-size: 1.5rem; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.faq-item h4 { color: #00ffff; margin-bottom: 5px; }
.faq-item p { color: #aaa; font-size: 0.95rem; }

/* FORM STYLE */
.contact-form-wrapper {
    background: rgba(15, 10, 25, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #bc13fe;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.1);
}

.contact-form-wrapper h2 {
    color: #fff;
    font-family: 'AquireBold', sans-serif;
    margin-bottom: 30px;
    text-align: center;
}

.input-group { margin-bottom: 20px; }

.form-contatto input, 
.form-contatto textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box; /* Importante! */
}

.form-contatto input:focus,
.form-contatto textarea:focus {
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #bc13fe, #00ffff);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    font-family: 'AquireBold', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.1rem;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.privacy-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-container { flex-direction: column; }
    .contact-hero h1 { font-size: 2.5rem; }
}