* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* ================= HEADER ================= */
.contact-header {
    background: #C84A51;
    color: #fff;
    text-align: center;
    padding: 120px 20px 170px;
    position: relative;
}

/* CONTACT TEXT */
.contact-header p {
    display: inline-block;
    position: relative;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    padding-bottom: 14px;
    letter-spacing: 1px;
}

/* UNDERLINE (LIKE ABOUT US) */
.contact-header p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;          /* same width as text */
    height: 4px;          /* thickness */
    background: #f39c12;
}

/* .contact-header p {
    max-width: 720px;
    margin: auto;
    font-size: 14px;
    color: #d0d0d0;
    line-height: 1.6;
} */

/* ================= CONTACT INFO CARD ================= */
.contact-info-strip {
    position: absolute;
    left: 50%;
    top: 210px;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.contact-info-inner {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

/* COLUMN */
.info-col {
    flex: 1;
    text-align: center;
}

/* ICON */
.icon-circle {
    width: 55px;
    height: 55px;
    background: #B9121B;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 20px;
}

/* TITLE */
.info-col h4 {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* TEXT */
.info-col p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

/* ================= MAP ================= */
.map-section {
    margin-top: 50px;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .contact-header {
        padding-bottom: 130px;
    }

    .contact-info-strip {
        position: static;
        transform: none;
        margin-top: -30px;
    }

    .contact-info-inner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 25px;
    }

    .map-section {
        margin-top: 60px;
    }
}
