.contact-map {
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 520px;
    border: none;
}

/* FLOATING CARD */
.contact-card {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);

    width: 340px;
    background: #1f4c8f;
    color: #fff;

    padding: 28px;
    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* TITLE */
.contact-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TEXT */
.office-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.office-address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 14px;
    margin-bottom: 8px;
}

/* BUTTON */
.btn-direction {
    display: inline-block;
    margin-top: 15px;

    background: #e53935;
    color: #fff;

    padding: 8px 14px;
    border-radius: 6px;

    font-weight: 600;
    text-decoration: none;
}
.contact-offices {
    padding: 50px 20px;
    background: #f7f8fb;
}

.office-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    text-align: justify;
    min-width: 100%;
}

/* DIVIDER */
.office-divider {
    width: 1px;
    background: #ddd;
    height: 80px;
}

/* BLOCK */
.office-block h3 {
    color: #144A93;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.office-block p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}
.contact-call-strip {
    background: #1f4c8f;
    color: #fff;
    text-align: center;
    padding: 45px 20px;
}

.contact-call-strip h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* NUMBERS */
.call-numbers {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* DESC */
.call-desc {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* FEATURES */
.call-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.call-features span {
    font-size: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    width: 220px;
}
.contact-call-strip .container {
    max-width: 900px;          /* 🔥 controls center width */
    margin: 0 auto;            /* 🔥 center container */
    text-align: center;
}

/* CENTER NUMBERS PROPERLY */
.call-numbers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* CENTER DESCRIPTION */
.call-desc {
    text-align: center;
}

/* FIX FEATURE LIST WIDTH */
.call-features {
    display: flex;
    flex-direction: column;
    align-items: center;       /* 🔥 KEY FIX */
    gap: 10px;
    margin-top: 20px;
}

/* MAKE EACH LINE CONSISTENT WIDTH */
.call-features span {
    display: block;
    width: 260px;              /* 🔥 consistent line width */
    text-align: center;
    padding-bottom: 6px;

    border-bottom: 1px solid rgba(255,255,255,0.4);
}