/* Contact Section - Two Column Layout */
.contact-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Left Side - Form */
.contact-form-side {
    background: rgba(1, 6, 28, 0.6);
    border: 2px solid #00f6fe;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
    animation: contactBoxGlow 4s ease-in-out infinite alternate;
}

@keyframes contactBoxGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 246, 254, 0.2), inset 0 0 10px rgba(0, 246, 254, 0.1);
        border-color: rgba(0, 246, 254, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 246, 254, 0.5), inset 0 0 15px rgba(0, 246, 254, 0.2);
        border-color: rgba(0, 246, 254, 1);
    }
}

.form-header h2 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-family: "Source Sans Pro", Arial, sans-serif;
}

/* Right Side - Map */
.contact-map-side {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #00f6fe;
    box-shadow: 0 0 15px rgba(0, 246, 254, 0.2);
    min-height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: grayscale(30%) brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) brightness(1) contrast(1);
}