.eb-contact-bottom-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: stretch;
}

.eb-contact-map-wrap {
    display: flex;
    flex-direction: column;
}

.eb-contact-map-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--eb-txt-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eb-contact-map-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--eb-bdr);
}

.eb-contact-map-frame {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    border: 1px solid var(--eb-bdr);
    border-bottom: none;
    flex: 1;
    min-height: 260px;
}

.eb-contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 260px;
}

.eb-contact-map-addr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--eb-off);
    border: 1px solid var(--eb-bdr);
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    color: var(--eb-txt-mid);
    flex-shrink: 0;
}

.eb-contact-map-addr svg {
    stroke: var(--eb-gold);
    fill: none;
    stroke-width: 1.8;
}

.eb-contact-process-panel {
    background-color: var(--eb-dark, #1a2233);
    border-radius: 10px;
    padding: 28px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.eb-contact-process-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.eb-contact-process-panel-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.eb-contact-process-panel-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--eb-gold-lt);
    margin-bottom: 10px;
}

.eb-contact-process-panel-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    line-height: 1.2;
}

.eb-contact-process-panel-desc p{
    font-size: 14px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.6;
    /* margin-bottom: 20px; */
    font-weight: 400;
}

.eb-contact-process-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding-left: 0;
}

.eb-contact-ps-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.eb-contact-ps-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.eb-contact-ps-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(222, 170, 87, .15);
    border: 1px solid rgba(222, 170, 87, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--eb-gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.eb-contact-ps-title {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2px;
}

.eb-contact-ps-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.55;
    font-weight: 400;
}

.eb-contact-ps-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 11px 20px;
    background: var(--eb-gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background .2s;
}

.eb-contact-ps-cta:hover {
    background: var(--eb-gold-dk);
}

@media (max-width: 1100px) {
    .eb-contact-bottom-row {
        grid-template-columns: 1fr;
    }
}
