/* ─── Contact Layout ───────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,.12);
    position: sticky;
    top: 130px;
}

.contact-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #eee;
}

.contact-map iframe {
    width: 100%;
    height: 560px;
    border: 0;
    display: block;
}

/* ─── Phone Display ─────────────────────────────────────────────────────────── */
.phone-display { text-align: center; margin-bottom: 35px; }
.phone-display h2 { margin-bottom: 16px; font-size: 28px; }
.phone-display a {
    font-size: 26px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: opacity .3s;
}
.phone-display a:hover { opacity: .8; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
    .contact-layout { grid-template-columns: 1fr; gap: 30px; }
    .contact-map { height: 350px; position: static; }
}
