section.map-full iframe {
    display: block
}

.footer-section ul li a {
    color: #aaa
}


.footer-section ul li p {
    margin-bottom: 0;
}
.footer .email-input::placeholder {
    color: #fff;
}
.footer-section.lien-ket ul {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.footer-section ul li {
    margin-bottom: 10px
}

section.map-full .image-caption {
    display: none
}

.footer-section ul li a {
    color: #fff;
    font-size: 14px;
}

.footer {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden
}

section.map-full iframe {
    width: 100%
}

.social-links ul {
    display: flex;
    gap: 10px
}

.social-links ul li {
    max-width: 45px
}

.footer .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 40px
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #cdcdcd47
}

.footer .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0
}

.footer .contact-details h3 {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 500
}

.footer .contact-details p {
    font-size: 18px;
    color: #fff;
    font-weight: 600
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start
}

.footer .footer-section h2 {
    font-size: 28px;
    color: #fff;
    font-weight: 700
}

.footer .footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 9px
}

.footer .brand-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px
}

.footer .logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,#ffc107,#ff9800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0
}

.footer .brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.footer .brand-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer .social-links {
    display: flex;
    gap: 15px
}

.footer .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 18px
}

.footer .social-link:hover {
    background: linear-gradient(135deg,#ffc107,#ff9800);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255,193,7,0.4)
}

.footer .footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px
}

.footer .footer-links li {
    margin-bottom: 12px
}

.footer .footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s ease;
    position: relative
}

.footer .footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px)
}

.footer .newsletter-description {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5
}

.footer .email-input-container {
    position: relative;
    margin-top: 20px;
    display: none;
}

.footer .email-input {
    width: 100%;
    padding: 18px 59px 18px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all .3s ease;
    background: none;
    border-bottom: 1px solid #fff;
    padding-left: 10px
}

.footer .email-input::placeholder {
    color: #888
}

.footer .submit-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer .submit-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255,193,7,0.4)
}

.footer .copyright {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #777;
    font-size: 14px
}

@media (max-width: 768px) {
    .footer .contact-info {
        grid-template-columns:1fr;
        gap: 25px
    }

    .footer-top {
        padding: 30px 0;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .footer .footer-links {
        grid-template-columns: 1fr;
        gap: 15px
    }
}

.footer .contact-item {
    animation: slideInUp .8s ease
}

.footer .contact-item:nth-child(2) {
    animation-delay: .2s
}

.footer .contact-item:nth-child(3) {
    animation-delay: .4s;
    border: none
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.footer main {
    height: 1000px
}

.newsletter-section p {
    color: #fff;
    font-size: 14px;
}

.footer .social-links ul li img {
    width: 28px
}

.footer-top {
    padding: 40px 0;
      background: linear-gradient(90deg, rgb(1 31 65) 0%, rgb(6 41 81) 50%, rgba(6, 46, 92, 1) 100%);
}

.footer-bottom {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0 20px;
    /* background: linear-gradient(90deg,rgba(0, 40, 85, 1) 0%, rgba(3, 46, 94, 1) 50%, rgba(6, 46, 92, 1) 100%); */
}

.footer .footer-section h2 img {
    height: 88px
}

.footer .footer-section h3:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: #fff;
    bottom: 0
}

@media(max-width: 990px) {
    .footer .contact-item {
        border:none
    }
}

.hotline-phone-ring-wrap {
    position: fixed;
    bottom: 10px;
    right: -28px;
    z-index: 99
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: block
}

.hotline-phone-ring-circle {
    width: 85px;
    height: 85px;
    top: 10px;
    left: 10px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid #cf3034;
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: .5
}

@-webkit-keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: .1
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: .5
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .6
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .6
    }
}

@-webkit-keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg)
    }
}

.hotline-phone-ring-circle-fill {
    width: 55px;
    height: 55px;
    top: 26px;
    left: 26px;
    position: absolute;
    background-color: #ff3d3d;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.hotline-phone-ring-img-circle {
    background-color: #cf3034;
    width: 33px;
    height: 33px;
    top: 37px;
    left: 37px;
    position: absolute;
    background-size: 20px;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center
}

.hotline-phone-ring-img-circle .pps-btn-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.hotline-phone-ring-img-circle .pps-btn-img img {
    width: 20px;
    height: 20px
}

.hotline-bar {
    position: absolute;
    background: #E88A25;
    background: -webkit-linear-gradient(left,#e88a25,#cf3034);
    background: -o-linear-gradient(right,#e88a25,#cf3034);
    background: -moz-linear-gradient(right,#e88a25,#cf3034);
    background: linear-gradient(to right,#ff3d3d,#ff3d3d);
    height: 40px;
    width: 180px;
    line-height: 40px;
    border-radius: 3px;
    padding: 0 10px;
    background-size: 100%;
    cursor: pointer;
    transition: all .8s;
    -webkit-transition: all .8s;
    z-index: 9;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25),0 10px 10px rgba(0,0,0,0.1);
    border-radius: 50px!important;
    border: 2px solid #fff;
    right: 33px;
    bottom: 37px
}

.hotline-bar>a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-indent: 2px;
    display: block;
    letter-spacing: 1px;
    line-height: 38px
}

@media(max-width: 1300px) {
    .footer-primary .hotline-support a span {
        font-size:17px
    }
}

@media(max-width: 1300px) {
    .footer-primary .hotline-support a span {
        font-size:17px
    }
}

@media(max-width: 990px) {
    .hotline-bar {
        display:none
    }
}

@media (min-width: 980px) {
    .support-bottom {
        box-shadow:none;
        border-top: none
    }
}

.support-bottom {
    width: 50px;
    bottom: 92px;
    right: 10px;
    position: fixed!important;
    z-index: 99;
    background-color: transparent!important;
    padding: 6px 0;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    border-top: none
}

.support-bottom .btn-list {
    display: block!important;
    flex-direction: row!important;
    flex-wrap: nowrap!important;
    padding: 6px!important;
    justify-content: space-around!important
}

.support-bottom .btn-float-container {
    width: 100%;
    margin-bottom: 6px
}

.support-bottom a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    display: inline-block!important;
    border: none!important;
    font-size: 18px!important;
    color: #fff!important;
    text-align: center!important;
    position: relative;
    border-radius: 50%!important;
    cursor: pointer!important;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.11);
    background: none
}

.support-bottom .button-call {
    background-image: url(../images/calling.gif);
    background-size: 100% 100%
}

.support-bottom i {
    width: 44px;
    height: 44px;
    display: block
}

.support-bottom i {
    font-size: 28px
}

.support-bottom .btn-float-container span {
    display: none!important
}

.support-bottom .button-messenger {
    background-image: url(../images/icon-messenger.svg);
    background-size: 75% 75%!important;
    background: #2460dd;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%
}

.support-bottom .button-zalo {
    background-image: url(../images/icon-zalo.svg)
}

.backtotop {
    cursor: pointer;
    background: #999;
    bottom: 10px;
    color: #fff!important;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    padding: 2px;
    position: fixed;
    right: 12px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 9999;
    border-radius: 2px
}

.backtotop svg {
    width: 28px;
    height: 22px;
    margin-bottom: -8px
}

.backtotop svg path {
    stroke: #fff
}

.copyright h3 {
    font-size: 14px;
}
























.suppor-wegert-bvc .support-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.suppor-wegert-bvc .contact-panel {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    width: 351px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: scale(0.85) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    visibility: hidden;
    display: none;
    position: absolute;
    z-index: 9;
    opacity: 0;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
}

.suppor-wegert-bvc .contact-panel.open {
    z-index: 999;
    opacity: 1;
    pointer-events: all;
    transform: scale(1) translateY(0);
    display: block;
    visibility: visible;
}

.suppor-wegert-bvc .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #f1f5f9;
}

.suppor-wegert-bvc .panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.suppor-wegert-bvc .panel-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.suppor-wegert-bvc .panel-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.suppor-wegert-bvc .panel-info span {
    font-size: 13px;
    color: #22c55e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.suppor-wegert-bvc .online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.suppor-wegert-bvc .close-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.suppor-wegert-bvc .close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.suppor-wegert-bvc .panel-greeting {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.5;
}

.suppor-wegert-bvc .contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suppor-wegert-bvc .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.22s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
}

.suppor-wegert-bvc .contact-item:hover {
    transform: translateX(-3px);
}

.suppor-wegert-bvc .contact-item.zalo {
    background: #e8f4fd;
    border-color: #c3e0f8;
}

.suppor-wegert-bvc .contact-item.zalo:hover {
    background: #d0eafb;
    border-color: #0068ff;
}

.suppor-wegert-bvc .contact-item.zalo .icon-wrap {
    background: #0068ff;
}

.suppor-wegert-bvc .contact-item.phone {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.suppor-wegert-bvc .contact-item.phone:hover {
    background: #dcfce7;
    border-color: #22c55e;
}

.suppor-wegert-bvc .contact-item.phone .icon-wrap {
    background: #22c55e;
}

.suppor-wegert-bvc .contact-item.facebook {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.suppor-wegert-bvc .contact-item.facebook:hover {
    background: #dbeafe;
    border-color: #1877f2;
}

.suppor-wegert-bvc .contact-item.facebook .icon-wrap {
    background: #1877f2;
}

.suppor-wegert-bvc .icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.suppor-wegert-bvc .icon-wrap svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.suppor-wegert-bvc .contact-text {
    flex: 1;
}

.suppor-wegert-bvc .contact-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.suppor-wegert-bvc .contact-text span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.suppor-wegert-bvc .contact-arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    transition: transform 0.2s;
}

.suppor-wegert-bvc .contact-item:hover .contact-arrow {
    transform: translateX(2px);
    color: #475569;
}

.suppor-wegert-bvc .trigger-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.suppor-wegert-bvc .trigger-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(59, 130, 246, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.suppor-wegert-bvc .trigger-btn.active {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.4);
}

.suppor-wegert-bvc .trigger-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
    transition: all 0.35s ease;
    position: absolute;
}

.suppor-wegert-bvc .icon-headset {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.suppor-wegert-bvc .icon-close-main {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
}

.suppor-wegert-bvc {
    position: fixed;
    right: 50px;
    z-index: 9;
    bottom: 90px;
}

.suppor-wegert-bvc .trigger-btn.active .icon-headset {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

.suppor-wegert-bvc .trigger-btn.active .icon-close-main {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.suppor-wegert-bvc .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.5);
    animation: pulse-ring 2.5s ease-out infinite;
}

.suppor-wegert-bvc .pulse-ring:nth-child(2) {
    animation-delay: 0.8s;
}

.suppor-wegert-bvc .trigger-btn.active .pulse-ring {
    display: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.suppor-wegert-bvc .badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef4444;
    border: 2.5px solid white;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-bounce 1s ease infinite alternate;
}

@keyframes badge-bounce {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.suppor-wegert-bvc .trigger-btn.active .badge {
    display: none;
}

.trigger-btn.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #06b6d4a3 0%, #3b82f6 100%);
    border-radius: 100%;
}





@media (max-width: 768px) {
    .footer-bottom {
        padding: 25px 0 20px;
    }

    .footer .copyright {
        margin-top: 20px;
        padding-top: 20px;
    }
}