.bc-contact{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:30px;
    align-items:start;
}

.bc-branches{
    display:flex;
    flex-direction:column;
    gap:10px;

    background:#f9fafb;
    padding:15px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

    position:sticky;
    top:20px;

    max-height:80vh;
    overflow-y:auto;
}

.bc-branch-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:18px;
    cursor:pointer;
    transition:.3s ease;
    position:relative;
}

.bc-branch-card:hover{
    border-color:#00843D;
    transform:translateY(-2px);
}

.bc-branch-card.active{
    border-color:#00843D;
    border-left:10px solid #00843D;
    padding-left:13px;
    background:#f4fbf7;
    box-shadow:0 4px 12px rgba(0,132,61,.15);
    
}


.bc-branch-card.active::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:5px;
    background:#00843D;
    border-radius:20px 0 0 20px;
}

.bc-branch-card h3{
    margin:0 0 10px;
    font-size:20px;
    font-weight:700;
}

.bc-branch-card p{
    margin:0;
    color:#666;
    line-height:1.6;
}

.bc-selected{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

    position:sticky;
    top:20px;
}

.bc-selected h2{
    margin:0 0 15px;
    font-size:36px;
    line-height:1.2;
}

#bc-address{
    margin-bottom:25px;
    color:#555;
    line-height:1.7;
}

.bc-contact-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.bc-contact-actions a{
    text-decoration:none;
    padding:14px 24px;
    border-radius:999px;
    font-weight:600;
    transition:.3s ease;
}

#bc-phone-link{
    background:#00843D;
    color:#fff;
}

#bc-phone-link:hover{
    transform:translateY(-2px);
}

#bc-messenger-link{
    border:1px solid #00843D;
    color:#00843D;
}

#bc-messenger-link:hover{
    background:#00843D;
    color:#fff;
}

#bc-phone,
#bc-email,
#bc-hours{
    margin-bottom:12px;
    color:#444;
    line-height:1.7;
}

.bc-selected > a:last-child{
    display:inline-block;
    margin-top:20px;
    color:#00843D;
    font-weight:600;
    text-decoration:none;
}

.bc-selected > a:last-child:hover{
    text-decoration:underline;
}

#bc-gmail-link{
    background:#EA4335;
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    font-weight:600;
    text-decoration:none;
    transition:.3s ease;
}

#bc-gmail-link:hover{
    background:#c5221f;
    transform:translateY(-2px);
}

.bc-filters{
    padding:15px;
    background:#f9fafb;
    border:1px solid #e5e7eb;
    border-radius:16px;
}


@media (max-width: 768px){

    .bc-contact{
        grid-template-columns:1fr;
    }

    .bc-selected{
        padding:25px;
    }

    .bc-selected h2{
        font-size:28px;
    }

    .bc-contact-actions{
        flex-direction:column;
    }

    .bc-contact-actions a{
        width:100%;
        text-align:center;
    }

    .bc-branches,
    .bc-selected{
        position:static;
        top:auto;

    }

}