/*** ================== Main Footer =================== ***/

/* Footer Style One */
.main_footer{
    position: relative;
    padding: 100px 0px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(0deg, rgba(32, 44, 56, 0.9), rgba(32, 44, 56, 0.9)), url(../../images/footer/footer-bg-01.jpg);
}
/* End Footer Top */

/* Footer Middle */
.footer_middle{
    position: relative;
    padding-bottom: 40px;
}
.about_widget .footer_logo{
    margin-bottom: 32px;
}
.about_widget p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: var(--bs-white);
    margin-bottom: 20px;
}
.about_widget h5{
    position: relative;
    font-weight: 700;
    padding-left: 45px;
    padding-bottom: 5px;
    color: var(--bs-white);
}
.about_widget h5:before{
    position: absolute;
    left: 0px;
    top: 50%;
    height: 1px;
    width: 35px;
    content: '';
    background-color: var(--bs-white);
}
.footer_link_btn a{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    transition: .5s;
    color: var(--secondary-color);
    font-family: var(--manrope);
}
.footer_link_btn a:hover{
    color: var(--primary-color);
}
.footer_widget_title{
    font-weight: 700;
    color: var(--bs-white);
    margin-bottom: 30px;
}
.footer_widget ul{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
}
.footer_widget ul li a{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    transition: .5s;
    display: inline-block;
    color: var(--bs-white);
    font-family: var(--manrope);
}
.footer_widget ul li a:hover{
    color: var(--secondary-color);
}
/* End Footer Middle */

/* Footer Bottom */
.footer_bottom_home_one{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright_text_home_one{
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--bs-white);
}
.copyright_text_home_one a{
    color: var(--bs-white);
}
/* End Footer Bottom */

@media only screen and (max-width: 1280px){
    .about_widget p br{
        display: none;
    }
}
@media only screen and (max-width: 991px){
    .footer_middle{
        padding-bottom: 80px;
    }
    .main_footer{
        padding-bottom: 40px;
    }
    .about_widget{
        margin-bottom: 40px;
    }
}
@media only screen and (max-width: 767px){
    .footer_widget{
        margin-bottom: 40px;
    }
    .get_in_touch_widget{
        margin-bottom: 0px;
    }
}
@media only screen and (max-width: 450px){
    .main_footer{
        padding: 50px 0px 20px;
    }
    .footer_bottom_home_one{
        display: block;
        text-align: center;
    }
    .copyright_text_home_one{
        margin-bottom: 20px;
    }
    .social_links_style_two ul{
        display: block;
        text-align: center;
    }
    .social_links_style_two ul li{
        display: inline-block;
        padding: 0px 5px;
    }
}

/* 二维码小部件样式 */
.qrcode_widget .qrcode_flex {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.qrcode_widget .qrcode_item {
    text-align: center;
    color: #fff;
    flex: 0 0 auto;
}

.qrcode_widget .qrcode_item img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.qrcode_widget .qrcode_item img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.qrcode_widget .qrcode_item span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* 响应式调整 */
@media (max-width: 1199px) and (min-width: 992px) {
    .qrcode_widget .qrcode_item img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 991px) {
    .qrcode_widget .qrcode_flex {
        justify-content: flex-start;
    }
    .qrcode_widget .qrcode_item img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .qrcode_widget .qrcode_flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .qrcode_widget .qrcode_item img {
        width: 100px;
        height: 100px;
    }
    .qrcode_widget .footer_widget_title {
        text-align: center;
    }
}