/* ====================================================
   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: 300px;
    background: #041c32;
    border: 1px solid rgba(212, 167, 84, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

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

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--color-3);
    color: #fff;
}

.panel-title {
    display: grid;
    grid-template-columns: 38px auto;
    align-items: center;
    gap: 10px;
}

.panel-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.panel-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    /* color: #111; */
}

.panel-info span {
    font-size: 11px;
    /* color: #333; */
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ecc71;
    display: inline-block;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.panel-greeting {
    padding: 14px 16px;
    font-size: 12px;
    color: #fff;
    margin: 0;
    border-bottom: 1px solid #2a2c32;
}

.contact-list {
    padding: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #eee !important;
    transition: background 0.2s;
    gap: 10px;
}

.contact-item:hover {
    background: rgba(212, 167, 84, 0.1);
    text-decoration: none;
}

.contact-item .icon-wrap {
    flex-shrink: 0;
}

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

.contact-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #eee;
}

.contact-text p {
    font-size: 13px;
}

.contact-arrow {
    margin-left: auto;
    color: var(--color-5);
    font-size: 20px;
}



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

.panel-avatar {
    display: flex;
}

.icon-headset {
    fill: #FFF;
}



/* CSS for Quote Modal */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-card {
    background-color: #ffffff !important;
    width: 100%;
    max-width: 680px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 35px 40px;
    box-sizing: border-box;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.quote-modal-overlay.active .quote-modal-card {
    transform: scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888888;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background-color 0.2s, transform 0.2s;
    border-radius: 50%;
}

.quote-modal-close:hover {
    color: #222222;
    background-color: #f0f0f0;
    transform: rotate(90deg);
}

.quote-modal-close svg {
    width: 20px;
    height: 20px;
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.quote-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px 0;
    line-height: 1.35;
    font-family: inherit;
}

.quote-modal-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
    font-family: inherit;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-form-label {
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    font-family: inherit;
}

.quote-form-input {
    width: 100%;
    background-color: #eeeeee;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.quote-form-input::placeholder {
    color: #999999;
}

.quote-form-input:focus {
    background-color: #ffffff;
    border-color: #cccccc;
}

/* Custom Radios */
.quote-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.quote-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #444444;
    user-select: none;
    position: relative;
    font-family: inherit;
}

.quote-radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.quote-radio-custom {
    height: 20px;
    width: 20px;
    background-color: #eeeeee;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s;
}

.quote-radio-label:hover input~.quote-radio-custom {
    background-color: #e2e6ea;
}

.quote-radio-custom:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333333;
}

.quote-radio-label input:checked~.quote-radio-custom:after {
    display: block;
}

.quote-radio-text {
    font-size: 14px;
    font-weight: 400;
}

.quote-submit-btn {
    width: 100%;
    background-color: var(--color-3);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    text-align: center;
    margin-top: 10px;
    font-family: inherit;
}

.quote-submit-btn:hover {
    background-color: var(--color-4);
}

.quote-submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 576px) {
    .quote-modal-card {
        padding: 25px 20px;
    }

    .quote-modal-title {
        font-size: 20px;
    }

    .quote-modal-subtitle {
        font-size: 13.5px;
        display: none;
    }
}

@media (max-width: 480px) {
    .quote-modal-close {
        top: 5px;
        right: 5px;
    }
}

/* ====================================================
   Site Footer Styles
   ==================================================== */
.site-footer {
    background-color: #003578;
    /* Rich dark navy blue */
    color: #cdd9e8;
    font-family: var(--font-family, 'Roboto', sans-serif);
    position: relative;
    overflow: hidden;
}

.site-footer a {
    color: #cdd9e8;
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.6fr;
    gap: 10px;
    padding: 50px 0 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 15px;
}

.footer-col:not(:first-child) {
    padding-left: 10px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    color: #a0b2c6;
    text-align: justify;
}

.footer-socials {
    display: flex;
    gap: 10px;
    /* margin-top: auto; */
    padding-top: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    transition: all 0.25s ease;
}

.social-link:hover {
    background-color: #0175be;
    border-color: #0175be;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    font-size: 14px;
    display: inline-block;
}

.footer-menu li a:hover {
    transform: translateX(4px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.contact-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.contact-text {
    line-height: 1.5;
}

.contact-text strong {
    font-weight: 600;
    color: #ffffff;
}

/* Footer Bottom (Copyright & Payments) */
.footer-bottom {
    background-color: #002b62;
    padding: 15px 0;
    border-top: 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #8c9dae;
}

.payment-methods {
    display: flex;
    gap: 8px;
    align-items: center;
}

.payment-badge {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
}

.payment-badge svg {
    display: block;
}

/* ====================================================
   CMS-injected raw HTML tags in footer columns
   ==================================================== */

/* Tiêu đề h2, h3 trong footer (thay thế .footer-title) */
.footer-col h2,
.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Logo & hình ảnh trong cột đầu tiên (footer-about) */
.footer-about p img,
.footer-about>img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}

/* Đoạn văn bản trong footer */
.footer-col p {
    font-size: 13.5px;
    line-height: 2;
    color: #a0b2c6;
    margin: 0 0 10px 0;
}

/* Danh sách ul/li thuần trong footer (thay thế .footer-menu) */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    color: #cdd9e8;
}

.footer-col ul li a {
    font-size: 14px;
    color: #cdd9e8;
    display: inline-block;
    transition: all 0.25s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Icon nhỏ inline trong li (ảnh map, hotline…) */
.footer-col ul li img.image,
.footer-col p img.image {
    /* width: 18px !important;
    height: 18px; */
    object-fit: contain;
    vertical-align: middle;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 4px;
}

/* Payment methods: ul/li ảnh thanh toán */
.payment-methods ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-methods ul li {
    display: flex;
    align-items: center;
}

.payment-methods ul li img.image {
    height: 28px !important;
    width: auto !important;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

/* Social link image */
.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
}

.social-link:hover img {
    filter: brightness(0) invert(1) opacity(0.85);
}

/* ====================================================
   Responsive Styles
   ==================================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 30px;
    }

    .footer-col:not(:last-child) {
        padding-right: 20px;
    }
}

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

    .footer-col:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .footer-col:not(:first-child) {
        padding-left: 0;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 25px;
    }

    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 20px;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 20px;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-methods ul li img.image {
        height: 18px !important;
    }
}


/* ==========================================================================
   SITE FOOTER V2 - Giao diện footer mới (background #f7f7f7)
   ========================================================================== */

.site-footer-v2 {
    background-color: #f7f7f7;
    border-top: 1px solid #e4e4e4;
    font-family: inherit;
    color: #333;
}

/* Container chung */
.sfv2-ctnr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- PHẦN CHÍNH (4 cột) --- */
.sfv2-main {
    padding: 40px 0 30px;
}

.sfv2-grid {
    display: grid;
    /* grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr; */
    grid-template-columns: 1fr 1fr 1fr 1.6fr;
    gap: 32px 40px;
    align-items: start;
}

/* --- TIÊU ĐỀ CỘT --- */
.sfv2-col h2,
.sfv2-col h3,
.sfv2-col h4,
.sfv2-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px 0;
    text-transform: uppercase;
}

.sfv2-col h2:not(:first-child),
.sfv2-col h3:not(:first-child),
.sfv2-col h4:not(:first-child),
.sfv2-col-title--mt {
    margin-top: 24px;
}

/* --- DANH SÁCH LINK / NỘI DUNG THUẦN DẠNG UL --- */
.sfv2-col ul,
.sfv2-links {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sfv2-col ul li,
.sfv2-links li {
    line-height: 1.5;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sfv2-col ul li img,
.sfv2-col ul li svg {
    max-width: 20px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
}

.sfv2-col ul li a,
.sfv2-col a:not(.sfv2-social-btn) {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
}

.sfv2-col ul li a:hover,
.sfv2-col a:not(.sfv2-social-btn):hover {
    color: var(--color-3, #005a8d);
}

.sfv2-col p {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.sfv2-col p:empty,
.sfv2-col p:has(br:only-child) {
    display: none;
}

.sfv2-links a.sfv2-upper {
    font-weight: 600;
    color: #333;
}

.sfv2-links a.sfv2-upper:hover {
    color: var(--color-3, #005a8d);
}

/* --- DANH SÁCH LIÊN HỆ (có icon) --- */
.sfv2-links--contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.sfv2-links--contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #888;
}

.sfv2-links--contact a {
    color: #555;
    text-decoration: none;
}

.sfv2-links--contact a:hover {
    color: var(--color-3, #005a8d);
}

/* --- MẠNG XÃ HỘI --- */
.sfv2-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.sfv2-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #e8e8e8;
    color: #333;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.sfv2-social-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.sfv2-social-btn:hover {
    transform: translateY(-2px);
}

/* --- DỊCH VỤ KHÁCH HÀNG --- */
.sfv2-customer-service {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sfv2-cs-btn,
.sfv2-cs-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sfv2-cs-btn {
    background: #e8e8e8;
    color: #333;
    border: 1px solid #d5d5d5;
}

.sfv2-cs-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.sfv2-cs-phone {
    background: #e8e8e8;
    color: #333;
    border: 1px solid #d5d5d5;
}

/* --- NEWSLETTER --- */
.sfv2-newsletter-desc {
    font-size: 12.5px;
    color: #777;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.sfv2-newsletter-form {
    width: 100%;
}

.sfv2-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sfv2-input-wrap:focus-within {
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.sfv2-email-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 11px 14px;
    font-size: 13px;
    background: transparent;
    color: #333;
}

.sfv2-email-input::placeholder {
    color: #aaa;
}

.sfv2-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #222;
    border: none;
    cursor: pointer;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.sfv2-submit-btn:hover {
    background: var(--color-3, #005a8d);
}

/* --- THANH DƯỚI (bottom bar) --- */
.sfv2-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-top: 1px solid #e0e0e0;
}

.sfv2-bottom-left {
    font-size: 15px;
    color: #555;
    display: flex;
    gap: 10px 30px;
    align-items: center;
    flex-wrap: wrap;
}

.sfv2-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sfv2-bottom-links a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sfv2-bottom-links a:hover {
    color: var(--color-3, #005a8d);
}

.sfv2-divider {
    color: #bbb;
    font-size: 12px;
}

.sfv2-bottom-right {
    display: flex;
    align-items: center;
}

.sfv2-region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sfv2-region:hover {
    color: #111;
}

/* --- THÔNG TIN CÔNG TY --- */
.sfv2-company {
    padding: 20px 0 24px;
    background-color: #f7f7f7;
    /* border-top: 1px solid #e0e0e0; */
}

.sfv2-company h2,
.sfv2-company h3,
.sfv2-company h4,
.sfv2-company-name {
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
    text-transform: uppercase;
}

.sfv2-company ul {
    list-style: none;
    margin: 0 0 10px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sfv2-company ul li {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
}

.sfv2-company p {
    font-size: 13.5px;
    color: #666;
    margin: 0 0 6px 0;
    line-height: 1.6;
}

.sfv2-company img {
    max-width: 150px;
    height: auto;
    margin-top: 8px;
}

/* ==========================================================================
   RESPONSIVE - Footer V2
   ========================================================================== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .sfv2-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 32px;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767px) {
    .sfv2-main {
        padding: 28px 0 20px;
    }

    .sfv2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sfv2-col-title--mt {
        margin-top: 16px;
    }

    .sfv2-customer-service {
        flex-direction: column;
    }

    .sfv2-cs-btn,
    .sfv2-cs-phone {
        width: 100%;
        justify-content: center;
    }

    .sfv2-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .sfv2-bottom-links {
        gap: 8px;
    }

    .sfv2-bottom-right {
        width: 100%;
    }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .sfv2-ctnr {
        padding: 0 15px;
    }

    .sfv2-socials {
        gap: 8px;
    }

    .sfv2-social-btn {
        width: 34px;
        height: 34px;
    }
}