/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for desktop */
    gap: 40px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px var(--black_15);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 10px;
}

.input-field {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--cultured-2);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--smlkh-button);
}

.textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    background: var(--smlkh);
    color: var(--white);
    padding: 10px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--smlkh-button);
}

.contact-map {
    height: 100%;
    width: auto;
    margin: 55px 0 0 40px;
}

.map-iframe {
    width: auto;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stacked view for mobile */
    }

    .contact-form {
        padding: 25px;
        margin-bottom: 40px;
    }

    .map-iframe {
        height: 300px;
    }

    .btn-submit {
        width: 100%;
    }

    .contact-map {
        margin: 0 0 0 25px;
        width: auto;
        height: auto;
    }
}
