/* ===========================================================
   CONTACT PAGE — PREMIUM UI
=========================================================== */

.contact-section {
    background: white;
    padding: 34px;
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}

/* -----------------------------------
   Header Accent Ribbon
----------------------------------- */
.contact-header {
    position: relative;
    padding-left: 22px;
    margin-bottom: 24px;
}

.contact-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 6px;
    border-radius: 6px;
    background: linear-gradient(#2dd4bf, #00cfe8);
    box-shadow: 0 0 16px rgba(0,207,232,0.45);
}

/* -----------------------------------
   Contact Highlight Boxes (Call/Email/Visit)
----------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
}

@media(min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-highlight {
    background: rgba(255,255,255,0.65);
    padding: 22px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.contact-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #0a8a78;
    text-shadow: 0 0 6px rgba(0,207,232,0.4);
}

/* -----------------------------------
   Inline Info Rows
----------------------------------- */
.info-row {
    margin-bottom: 14px;
    font-size: 1rem;
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 500;
}

.info-row span {
    font-size: 1.4rem;
    color: #0a8a78;
}

/* -----------------------------------
   Map Container
----------------------------------- */
.map-container {
    margin-top: 26px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}
