/* Stili per la pagina contatti - stile Apple */
.page-contatti {
    background-color: #000;
    color: #f5f5f7;
    font-family: 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

.contatti-header {
    background: #000;
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.contatti-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contatti-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #5856d6, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.contatti-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
    color: #86868b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.contatti-content {
    background-color: #000;
    padding: 80px 0;
}

/* Form styling */
.contact-form {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-bottom: 40px;
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-control {
    background-color: #2c2c2e;
    border: none;
    border-radius: 10px;
    color: #f5f5f7;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #3a3a3c;
    box-shadow: 0 0 0 3px rgba(88, 86, 214, 0.3);
}

.form-control::placeholder {
    color: #86868b;
}

.btn-primary {
    background: linear-gradient(90deg, #5856d6, #2196f3);
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #4a49b7, #1a7fd1);
}

/* Info cards */
.info-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.info-card i {
    font-size: 40px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #5856d6, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f5f5f7;
}

.info-card p {
    color: #86868b;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer styling */
.footer {
    background-color: #000000;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer h5 {
    color: #5856d6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f5f5f7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2196f3;
}

.social-links a {
    color: #f5f5f7;
    font-size: 24px;
    margin-right: 15px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #2196f3;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    background-color: #000000;
    color: #86868b;
}

/* Responsive styles */
@media (max-width: 992px) {
    .contatti-title {
        font-size: 42px;
    }
    
    .contatti-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .contatti-header {
        padding: 80px 0 40px;
    }
    
    .contatti-title {
        font-size: 36px;
    }
    
    .contatti-subtitle {
        font-size: 18px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contatti-title {
        font-size: 32px;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
}