/* Section Contact */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.contact-form {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}
