.footer-member-07 .footer {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    background-color: rgb(51, 51, 51);
    background-repeat: repeat-x !important;
    background-size: unset !important;
    background-position: center !important;
}

.footer-member-07 .footer-main {
    padding: 48px 20px 40px;
}

.footer-member-07 .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

/* ====================================================
   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: 9999;
}

.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: #111;
}

.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: 320px;
    background: #1a1c22;
    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: 13px;
    color: #bbb;
    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;
    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;
}

@media (min-width: 1024px) {
    .footer-member-07 .footer-main {
        padding: 56px 0px 48px;
    }

    .footer-member-07 .footer-inner {
                grid-template-columns: 228px 208px 1fr 225px;
        gap: 26px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-member-07 .footer-main {
        padding: 56px 20px 48px;
    }

    .footer-member-07 .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-member-07 .footer-col-brand,
    .footer-member-07 .footer-col-map {
        grid-column: 1 / -1;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .footer-member-07 .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-member-07 .footer-col-brand,
    .footer-member-07 .footer-col-map {
        grid-column: 1 / -1;
    }
}

.footer-member-07 .footer-col h2,
.footer-member-07 .footer-col h3,
.footer-member-07 .footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer-member-07 .footer-col h2::after,
.footer-member-07 .footer-col h3::after,
.footer-member-07 .footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: #e05b1a;
    border-radius: 2px;
}

.footer-member-07 .footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-member-07 .footer-logo-icon {
    flex-shrink: 0;
}

.footer-member-07 .footer-brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-member-07 .footer-brand-top {
    font-size: 18px;
    font-weight: 800;
    color: #e05b1a;
    letter-spacing: 2px;
}

.footer-member-07 .footer-brand-bottom {
    font-size: 13px;
    font-weight: 700;
    color: #4caf50;
    letter-spacing: 3px;
}

.footer-member-07 .footer-brand-desc {
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.75;
}

.footer-col.footer-col-brand img {
    width: 137px !important;
}

.footer-member-07 .footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.footer-member-07 .footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3b3c40;
    border-radius: 6px;
    color: #fff;
    transition: background-color 0.25s, opacity 0.25s;
    flex-shrink: 0;
}

.footer-member-07 .footer-social-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-member-07 .footer-social-btn:hover {
    background-color: #e05b1a;
    opacity: 0.9;
}

.footer-member-07 .footer-download-btn {
    display: inline-block;
    background-color: #e05b1a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 4px;
    transition: background-color 0.25s;
    white-space: nowrap;
}

.footer-member-07 .footer-download-btn:hover {
    background-color: #c44d10;
}

.footer-member-07 .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-member-07 .footer-col ul li {
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #ccc;
}

.footer-member-07 .footer-col ul li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #777;
    margin-top: 9px;
    flex-shrink: 0;
}

.footer-member-07 .footer-col ul li a {
    color: #ccc;
    transition: color 0.25s;
    text-decoration: none;
}

.footer-member-07 .footer-col ul li a:hover {
    color: #fff;
}

.footer-member-07 .footer-col ul li strong,
.footer-member-07 .footer-col ul li b {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-member-07 .footer-col-map .footer-map-wrap {
    overflow: hidden;
    line-height: 0;
}

.footer-member-07 .footer-col-map .footer-map-wrap iframe,
.footer-member-07 .footer-col-map iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: none;
}

.footer-member-07 .footer-bottom {
    background-color: #23262b;
    border-top: 1px solid #3d4148;
    padding: 14px 20px;
}

.footer-member-07 .footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-member-07 .footer-bottom {
        padding: 14px 48px;
    }

    .footer-member-07 .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-member-07 .footer-bottom-left a {
    color: #fff;
    transition: color 0.25s;
}

.footer-member-07 .footer-bottom-left a:hover {
    color: #e05b1a;
}

.footer-col.footer-col-map iframe {
    width: 100%;
    height: 215px;
}

.footer-member-07 .footer-bottom-right {
    color: #fff;
    white-space: nowrap;
}

.footer-member-07 .reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-member-07 .reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.footer-member-07 .delay-100 {
    transition-delay: 100ms;
}

.footer-member-07 .delay-200 {
    transition-delay: 200ms;
}

.footer-member-07 .delay-300 {
    transition-delay: 300ms;
}

.footer-member-07 .products-slider,
.footer-member-07 .blog-slider {
    margin-top: 2rem;
}

.footer-member-07 .products-slider .slick-slide,
.footer-member-07 .blog-slider .slick-slide {
    margin: 0 12px;
}

.footer-member-07 .products-slider .slick-list,
.footer-member-07 .blog-slider .slick-list {
    margin: 0 -12px;
}

.footer-member-07 .slick-prev:before,
.footer-member-07 .slick-next:before {
    color: #18281e;
    font-size: 24px;
}

.footer-member-07 .hero-slider .slick-dots {
    bottom: 2rem;
}

.footer-member-07 .hero-slider .slick-dots li button:before {
    color: #fff;
}

.footer-member-07 .hero-slider .slick-dots li.slick-active button:before {
    color: #d65702;
}