/* Clean & Premium Cyber Footer */
:root {
    --cb-bg: #0a0b0d;
    --cb-card: #121418;
    --cb-primary: #ff3c3c;
    --cb-primary-glow: rgba(255, 60, 60, 0.4);
    --cb-text-main: #ffffff;
    --cb-text-sub: #8d9196;
    --cb-border: rgba(255, 255, 255, 0.08);
}

#tb-footer {
    background: #000;
    color: var(--cb-text-main);
    padding: 0;
    font-family: 'Kanit', sans-serif;
    position: relative;
    border-top: 1px solid var(--cb-border);
    overflow-x: hidden;
}

/* Reset existing styles that cause square boxes */
#tb-footer ul li a::after,
#tb-footer ul li a::before {
    content: none !important;
    display: none !important;
}

#footer-bottom-cms {
    background: transparent !important;
    border: none !important;
    padding: 60px 0 0 0;
    text-align: left !important;
}

/* Logo & Desc Section */
.cb-brand-section {
    margin-bottom: 40px;
}

.cb-brand-logo {
    max-width: 150px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
    margin-bottom: 25px;
}

.cb-brand-desc {
    color: var(--cb-text-sub);
    font-size: 14px;
    line-height: 1.8;
    max-width: 320px;
}

/* Footer Section Headings */
.cb-footer-heading {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cb-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--cb-primary);
    box-shadow: 0 0 10px var(--cb-primary-glow);
}

/* Link Lists - Using CSS dots instead of broken icons */
.cb-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cb-link-item {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cb-link-item a {
    color: var(--cb-text-sub) !important;
    text-decoration: none !important;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.cb-link-item a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cb-primary);
    border-radius: 50%;
    margin-right: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--cb-primary-glow);
}

.cb-link-item a:hover {
    color: #fff !important;
    transform: translateX(8px);
}

.cb-link-item a:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--cb-primary);
}

/* Contact Badges */
.cb-contact-card {
    display: flex;
    align-items: center;
    background: var(--cb-card);
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--cb-border);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cb-contact-card:hover {
    border-color: var(--cb-primary);
    background: rgba(255, 60, 60, 0.04);
}

.cb-contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 60, 60, 0.1);
    color: var(--cb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 15px;
    padding: 8px;
}

.cb-contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.cb-contact-info h6 {
    margin: 0;
    font-size: 12px;
    color: var(--cb-text-sub);
    text-transform: uppercase;
}

.cb-contact-info p {
    margin: 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Social Glow Buttons */
.cb-social-wrap {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.cb-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cb-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid var(--cb-border);
    transition: all 0.3s ease;
}

.cb-social-btn:hover {
    background: var(--cb-primary);
    border-color: var(--cb-primary);
    box-shadow: 0 0 15px var(--cb-primary-glow);
    transform: translateY(-3px);
}

/* Footer Bottom Bar - Seamless Design */
.cb-footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px 0;
    margin-top: 30px;
}

.cb-copyright {
    color: #5d6268;
    font-size: 13px;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    #footer-bottom-cms {
        padding: 50px 0 30px 0;
        text-align: center !important;
    }

    .cb-brand-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .cb-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cb-link-item a {
        justify-content: center;
    }

    .cb-social-wrap {
        justify-content: center;
    }

    .cb-contact-card {
        justify-content: center;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
}