/* CSS cho Contact Info Box */
.contact-box-bottom {
    position: fixed;
    bottom: 120px;
    z-index: 99;
    right: 20px;
}
.contact-box-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.08);
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.contact-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.contact-icon-box svg {
    width: 100%;
    height: 100%;
}
.contact-info {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
.contact-info b {
    display: block;
    font-size: 14px;
}
.contact-info span {
    color: #868686;
    font-size: 12px;
    display: block;
}
/* CSS cho vị trí bên trái */
.contact-box-bottom.left {
    left: 20px;
    right: auto;
}
.contact-box-bottom.left .contact-box-wrapper {
    flex-direction: row-reverse;
}
.contact-box-bottom.left .contact-icon-box {
    margin-left: 10px;
    margin-right: 0px;
}
.contact-box-bottom.left .contact-info {
    align-items: flex-end;
    text-align: right;
}
/* Responsive styles */
@media (max-width: 1390px) {
    .contact-box-bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .contact-box-bottom.left {
        align-items: flex-start;
    }
    .contact-box-wrapper {
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 5px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .contact-info {
        opacity: 0;
        width: 0;
        transition: opacity 0.3s ease, width 0.3s ease;
    }
    .contact-icon-box {
        margin-right: 0;
        margin-left: 0;
    }
	.contact-box-bottom.left .contact-icon-box {
		margin-right: 10px;
	}
    
    /* Hiệu ứng hover */
    .contact-box-wrapper:hover {
        width: 180px; /* Giảm kích thước khi hover */
        padding: 5px 10px;
        justify-content: flex-start;
    }
    .contact-box-wrapper:hover .contact-info {
        opacity: 1;
        width: auto;
        margin: 0 10px;
    }
    .contact-box-wrapper:hover .contact-icon-box {
        margin-right: 0;
    }
    .contact-box-bottom.left .contact-box-wrapper:hover .contact-icon-box {
        margin-right: 0;
        margin-left: 0;
    }
    .contact-box-bottom.left .contact-box-wrapper:hover .contact-info {
		align-items: flex-end;
		text-align: right;
    }
}
@media (max-width: 1024px) {
    .contact-box-bottom {
        display: none;
    }
}