/* ====================================================
   Back to top button
   ==================================================== */
.backtotop {
    cursor: pointer;
    background: var(--color-3);
    bottom: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px;
    position: fixed;
    right: 12px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    z-index: 999;
    border-radius: 4px;
    border: 1px solid #FFF;
}

.backtotop svg {
    width: 26px;
    height: 18px;
    margin-bottom: -1px;
}

.backtotop svg path {
    stroke: #fff;
}

/* ====================================================
   Support Widget / Contact Panel
   ==================================================== */
.support-widget {
    position: fixed;
    bottom: 69px;
    right: 15px;
    z-index: 99;
}

.trigger-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-5);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 167, 84, 0.4);
    transition: transform 0.2s;
}

.trigger-btn:hover {
    transform: scale(1.05);
}

.trigger-btn .icon-bvc-member img {
    /* width: 34px;
    height: 34px; */
    border-radius: 50%;
    object-fit: cover;
}

.trigger-btn .icon-close-main {
    display: none;
    width: 22px;
    height: 22px;
    fill: #fff;
}

.trigger-btn.active .icon-bvc-member {
    display: none;
}

.trigger-btn.active .icon-close-main {
    display: block;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-5);
    animation: pulse-ring 2s ease-out infinite;
    pointer-events: none;
}

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

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

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

.contact-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    z-index: 999;
}

.contact-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 14px 0;
    background: transparent;
    color: #0f172a;
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.panel-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
    line-height: 1.2;
}

.panel-info span {
    font-size: 13px;
    color: #22c55e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    flex-shrink: 0;
}

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

.close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.panel-greeting {
    padding: 0;
    font-size: 14px;
    color: #475569;
    margin: 0 0 16px 0;
    border-bottom: none;
    line-height: 1.5;
    font-weight: 400;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none !important;
    background: #edf5fd;
    border: 1px solid #d0e4ff;
    color: #0f172a !important;
    transition: all 0.2s ease;
    gap: 10px;
    margin-bottom: 10px;
}

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

.contact-item:hover {
    background: #e2f0fe;
    border-color: #3b82f6;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.contact-item .icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-item .icon-wrap img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: contain;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    display: block;
    line-height: 1.25;
}

.contact-text p {
    font-size: 13px;
    color: #64748b;
    margin: 2px 0 0 0;
    line-height: 1.3;
    font-weight: 400;
}

.contact-arrow {
    margin-left: auto;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
}

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

.icon-bvc-member svg {
    width: 30px;
    height: 30px;
    fill: #FFF;
}

.icon-headset {
    fill: #3b82f6;
    width: 38px;
    height: 38px;
}


/* ====================================================
   Site Footer Custom Layout (CLB ToÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡n 9+)
   ==================================================== */
.site-footer {
    background-color: #f0f0f0;
    color: #333333;
    font-family: inherit;
    padding-top: 40px;
    position: relative;
}
.site-footer:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002970f0;
    z-index: 10;
}

.footer-main-content {
    padding-bottom: 35px;
    position: relative;
    z-index: 11;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1.6fr 1.1fr;
    gap: 32px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-col img {
    margin-bottom: 15px;
}
.footer-col iframe {
    width: 100%;
    height: 255px;
    border-radius: 5px;
}

/* Map Column */
.footer-map-box {
    width: 100%;
    overflow: hidden;
    color: #fff;
}

.footer-map-box iframe {
    display: block;
    width: 100%;
    height: 190px;
    border: 0;
    border-radius: 12px;
}

/* Brand Column */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-col-brand>p {
    margin: 0 0 10px 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: #fff;
}

.footer-col-brand p img.image,
.footer-col-brand img.image {
    max-height: 80px;
    width: auto !important;
    display: block;
    object-fit: contain;
    margin-bottom: 8px;
}

.brand-icon-wrapper {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.brand-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.brand-title-text {
    font-size: 24px;
    font-weight: 800;
    color: #001594;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 13.5px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0 0 16px 0;
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.social-item {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    overflow: hidden;
    background-color: var(--color-3);
}

.social-item img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.social-item:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-item svg {
    width: 20px;
    height: 20px;
}

.social-fb {
    background-color: #1877f2;
}

.social-yt {
    background-color: #ff0000;
}

.social-zalo {
    background-color: #ea4335;
}

/* Section Titles */
.footer-col-title,
.footer-col-info h2,
.footer-col-info h3,
.footer-col-menu h2,
.footer-col-menu h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

/* Contact Info Column */
.footer-contact-items,
.footer-col-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px 10px;
}

.contact-line,
.footer-col-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
}

.contact-icon,
.footer-col-info ul li img.image,
.footer-col-info ul li img {
    width: 20px;
    height: 20px;
    /* border-radius: 50%; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    /* padding: 4px; */
    object-fit: contain;
}

.footer-col-info ul li img {
    margin-bottom:2px
}

.contact-icon svg {
    width: 14px;
    height: 14px;
}

.contact-val,
.footer-col-info ul li a {
    color: #fff;
    text-decoration: none;
    word-break: break-word;
}

.contact-val strong {
    color: #001594;
    font-weight: 700;
}

.phone-link {
    font-weight: 700;
    color: #001594;
    font-size: 15px;
}

.email-link {
    font-weight: 600;
    color: #001594;
}

.contact-val:hover,
.footer-col-info ul li a:hover {
    color: #1a56b0;
}

/* Menu Column */
.footer-quick-links,
.footer-col-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-quick-links li a,
.footer-col-menu ul li {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col-menu ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #001594;
    font-weight: 700;
    font-size: 13px;
}

.footer-col-menu ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-quick-links li a:hover,
.footer-col-menu ul li:hover,
.footer-col-menu ul li a:hover {
    color: #001594;
}

.arrow-icon {
    color: #001594;
    font-weight: 700;
    font-size: 13px;
}

/* Copyright Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid #e1e7f0;
    padding: 16px 0;
    background-color: #f0f0f0;
    position: relative;
    z-index: 11;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #4a5568;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.copyright-left {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright-left p {
    margin: 0;
}

.copyright-left p a {
    color: #001594;
    text-decoration: none;
    font-weight: 700;
}
.elementor-shortcode {
    padding: 0;
    color: #0057a5;
}
.elementor-shortcode h2 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 15px 0;
}
.elementor-shortcode input {
  width: 100%;
  background: #ffffff2b;
  padding: 12px 15px;
  color: #fff;
  border-radius: 0px;
  margin-bottom: 0;
  font-size: 14px;
  border: 1px solid #ffffff2b;
}
.elementor-shortcode input::placeholder {
    color: #eee;
}
.elementor-shortcode select::placeholder {
    color: #eee;
}
.elementor-shortcode textarea::placeholder {
    color: #eee;
}
.elementor-shortcode select {
  width: 100%;
  background: #ffffff2b;
  padding: 15px 15px;
  color: #eee;
  border-radius: 0px;
  /* margin-bottom: 10px; */
  font-size: 14px;
  border: none;
}
.elementor-shortcode select option {
    color: #333;
}
.contact__form-submit button {
    font-style: normal;
    font-weight: 500;
    background: linear-gradient(135deg, var(--header-red) 0%, var(--header-red-hover) 100%);
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    border: solid 1px #ffffffd9;
    font-size: 16px;
    /* margin-top: 8px; */
    text-transform: uppercase;
}
.elementor-shortcode textarea {
    width: 100%;
    background: #ffffff2b;
    border: none;
    padding: 10px 15px;
    color: #fff;
    border-radius: 0px;
    height: 75px;
    border: 1px solid #ffffff2b;
    font-family: 'Roboto';
    font-size: 14px;
}
.box-select-short-coders {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 10px; */
}
.box-select-short-coders .tp-select {
    width: 49%;
} 
.register-form-box {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 20px 0;
}
.register-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-bottom {
    width: 60px;
    bottom: 45px;
    right: 5px;
    position: fixed !important;
    z-index: 99800;
    background-color: transparent !important;
    padding: 6px 0;
    border-radius: 3px 0 0 3px;
    box-shadow: none;
    border-top: none;
}
#button-contact-vr {
    position: fixed;
    bottom: 60px;
    right: -5px;
    z-index: 99999;
}
#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px
}

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

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230,8,8,0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px
}

.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    /* padding: 3px; */
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%)
}

#instagram-vr .phone-vr-circle-fill {
    background: rgb(17,143,253);
    background: linear-gradient(160deg,rgba(17,143,253,1) 20%,rgba(188,60,218,1) 50%,rgba(253,223,5,1) 80%);
    background-size: contain;
    box-shadow: 0 0 0 0 #c840c9;
    background-color: rgb(79 103 254);
    border: 0
}

#instagram-vr .phone-vr-img-circle {
    background: transparent
}

#telegram-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2c9fd8;
    background-color: rgb(44 159 216 / 74%)
}

#telegram-vr .phone-vr-img-circle {
    background: #2c9fd8
}

@-webkit-keyframes phone-vr-circle-fill {
    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)
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.phone-bar a {
    position: absolute;
    margin-top: -65px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 7px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap
}

.phone-bar a:hover {
    opacity: 0.8;
    color: #fff
}

@media(max-width: 736px) {
    .phone-bar {
        display:none
    }
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33,150,243,0.7)
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196F3
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113,68,151,0.8)
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196F3;
    background-color: rgba(33,150,243,0.7)
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196F3
}

div#whatsapp-vr .phone-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #1fd744;
    background-color: rgb(35 217 72 / 70%)
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle {
    background: #1cd741
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%
}

#fanpage-vr img {
    max-width: 35px;
    max-height: 35px
}

#fanpage-vr .phone-vr-img-circle {
    background-color: #1877f2
}

#fanpage-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 rgb(24 119 242 / 65%);
    background-color: rgb(24 119 242 / 70%)
}
#fanpage-vr .phone-vr-circle-fill:nth-child(1) {
    /* box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.65); */
    /* background-color: rgba(253, 0, 0, 0.7); */
}
#fanpage-vr .phone-vr-img-circle:first-child {
    background:#f00
}

#gom-all-in-one .button-contact {
    transition: 1.6s all;
    -moz-transition: 1.6s all;
    -webkit-transition: 1.6s all
}

#button-contact-vr.active #gom-all-in-one .button-contact {
    margin-left: -100%
}

#all-in-one-vr .phone-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    color: #fff;
    padding: 5px 15px 5px 48px;
    border-radius: 50px;
    margin-left: -64px;
    width: max-content;
    cursor: pointer
}

#popup-showroom-vr,div#popup-form-contact-vr {
    display: none
}

#popup-showroom-vr.active,div#popup-form-contact-vr.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999
}
.fix_appoint {
    position: fixed;
    z-index: 99;
    right: 12px;
    bottom: 326px;
    top: initial !important;
}
.btn_appointment a {
    background:#b10454;
    border-radius: 50%;
    width: 55px;
    height: 55px;
}
.btn_appointment {
    display: flex;
    align-items: center;
}
.fix_appoint span {
    position: relative;
    background: #b10454;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 26px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(127px);
    transition: all 0.5s;
    display: inline-block;
    z-index: 1;
}
.fix_appoint svg {
    position: relative;
    max-width: 60px;
    z-index: 2;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: playx 1.5s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 50%;
    padding: 7px;
    left: 3px;
    top: 4px;
}
@keyframes playx {
    0% {
        transform: scale(1) skew(1deg)
    }

    10% {
        transform: scale(1) skew(1deg)
    }

    20% {
        transform: scale(1) skew(1deg);
        box-shadow: 0 0 0 5px rgba(255, 0, 128, 0.33),0 0 0 10px rgba(255,0,128,0.33)
    }

    30% {
        transform: scale(1) skew(1deg)
    }

    40% {
        transform: scale(1) skew(1deg)
    }

    50% {
        transform: scale(1) skew(1deg);
        box-shadow: 0 0 0 5px rgba(255, 0, 128, 0.33),0 0 0 10px rgba(255, 0, 128, 0.33),0 0 0 15px rgba(255, 0, 128, 0.33)
    }

    100% {
        transform: scale(1) skew(1deg)
    }
}


/* Responsive Breakdown */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-content,
    .copyright-left {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-main-content {
        padding-bottom: 20px;
    }
}
