/* sections/contact.css */
.contact-map-section {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-split-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
}

.contact-form-column,
.map-column {
    flex: 1 1 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.contact-form-column {
    background-color: var(--color-light);
    padding: 60px 5%;
    justify-content: center;
}

.contact-form-content {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.contact-title {
    font-size: clamp(2em, 4.5vw, 3em);
    color: var(--color-text-dark);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 40px;
}

.contact-title strong {
    font-weight: 800;
}

.contact-form .form-group {
    margin-bottom: 28px;
    position: relative;
}

.contact-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--color-grey-medium);
    background-color: transparent;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.map-column {
    background-color: var(--color-dark-alt);
    position: relative;
}

.map-column iframe {
    filter: invert(100%) hue-rotate(180deg) contrast(0.8) brightness(1.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Queries */
@media (max-width: 992px) {
    .contact-split-layout {
        flex-direction: column;
    }

    .contact-form-column,
    .map-column {
        flex-basis: auto;
        width: 100%;
        min-height: 450px;
    }

    .contact-form-column {
        padding: 50px 8%;
        order: 1;
    }

    .map-column {
        order: 2;
        min-height: 400px;
    }

    .contact-title {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-form-column {
        padding: 40px 15px;
        min-height: auto;
    }

    .contact-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
        margin-bottom: 30px;
    }

    .map-column {
        min-height: 300px;
    }
}