
/* Branch Cards & Contact Redesign */
.branches-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.branch-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.branch-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branch-name {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin: 0;
    font-weight: 700;
    font-family: var(--font-heading);
}

.branch-badge {
    font-size: 0.75rem;
    background: #f0fdf4;
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.branch-info-item:last-child {
    margin-bottom: 0;
}

.branch-icon {
    width: 36px;
    height: 36px;
    background: #f4f9f5;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.branch-info-text {
    flex: 1;
}

.branch-info-text h5 {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.branch-info-text p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.branch-info-text a {
    color: #333;
    transition: color 0.2s;
}

.branch-info-text a:hover {
    color: var(--primary-green);
}
