/* 
--- CONTACT SECTION ---
No white background, 2-column layout (info left, map right)
*/
#contact {
    background: none;
    }

.contact-header {
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 10px;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: start;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    }

.address-phone-row p {
    margin: 0.3rem 0;
    font-weight: 300;
    }

.icon-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    }

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    }

.icon-btn:hover {
    transform: scale(var(--hover-scale));
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

.icon-btn svg {
    width: 18px;
    height: 18px;
    }
    
.map-embed iframe {
    width: 100%;
    height: 450px;
    border: 0;
    margin-top: 1rem;
    }