:root {
    --primary-blue: #0040ff;
    --primary-green: #00d974;
    --light-gray: #f8f9fa;
    --border-color: #e2e8f0;
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.form-section {
    background: white;
    padding: 5rem 0;
}

.form-container {
    display:flex;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.form-visual {
    flex:0 0 40%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
    height:100%;
}

.form-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path d="M100,200 Q200,100 300,200 T500,200" stroke="white" stroke-width="2" fill="none" opacity="0.3"/><circle cx="150" cy="150" r="3" fill="white" opacity="0.4"/><circle cx="250" cy="250" r="2" fill="white" opacity="0.4"/><circle cx="350" cy="180" r="4" fill="white" opacity="0.3"/></svg>');
}

.contact-visual-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.visual-icon:nth-child(2) {
    animation-delay: -1s;
}

.visual-icon:nth-child(3) {
    animation-delay: -2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.form-content {
    flex:1 1 60%;
    padding: 3rem;
}

@media (max-width: 768px) {
    .form-content {
        .form-container{flex-direction:column;}
        .form-visual,
        .form-content{flex:0 0 100%;}
    }
    .contact-visual-icons {
        gap: 1rem;
    }
    .visual-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
