/* --- CONTACT PAGE STYLES --- */

.contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2, .contact-form-wrap h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.info-block {
    display: block;
    margin-bottom: 40px;
}

.info-block i {
    font-size: 24px;
    color: #A68A64;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.info-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #3A2318;
}

.info-details p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.info-details a {
    color: #666;
    transition: color 0.3s;
}

.info-details a:hover {
    color: #A68A64;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border: 1px solid #E1D8C9;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #333;
    border-radius: 2px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #A68A64;
}

textarea.form-control {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    font-size: 16px;
    padding: 18px;
    cursor: pointer;
}

.map-embed {
    width: 100%;
    display: block;
    line-height: 0;
}

.map-embed iframe {
    pointer-events: none; /* simple way to stop accidental scrolling, but can be removed if user wants to drag map */
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
