
    /*
    * =======================================================================
    * 🔴 SmmPanelUS-Footer: Component Styles v1.5 (Full Localization)
    * =======================================================================
    */
    :root {
        --SmmPanelUS-footer-1-color-primary: rgba(75, 117, 238, 1);
        --SmmPanelUS-footer-1-color-accent: rgba(249, 70, 43, 1);
        --SmmPanelUS-footer-1-color-text: #0D0E1E;
        --SmmPanelUS-footer-1-color-text-muted: #6c757d;
        --SmmPanelUS-footer-1-color-border: #E9ECEF;
        --SmmPanelUS-footer-1-color-input-bg: #F5F5F7;
        --SmmPanelUS-footer-1-color-bg: #FFFFFF;
    }
    body.theme-dark-active {
        --SmmPanelUS-footer-1-color-text: #FFFFFF;
        --SmmPanelUS-footer-1-color-text-muted: #a0a3bd;
        --SmmPanelUS-footer-1-color-border: #333448;
        --SmmPanelUS-footer-1-color-input-bg: rgba(255, 255, 255, 0.05);
        --SmmPanelUS-footer-1-color-bg: rgba(13, 14, 30, 1);
    }
    
    .SmmPanelUS-Footer {
        background-color: var(--SmmPanelUS-footer-1-color-input-bg);
        color: var(--SmmPanelUS-footer-1-color-text-muted);
        padding: 80px 0;
        font-size: 1rem;
    }
    .SmmPanelUS-Footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 25px;
    }
    
    /* 1. Top Section */
    .SmmPanelUS-Footer-topSection {
        padding-bottom: 50px;
        margin-bottom: 50px;
        border-bottom: 1px solid var(--SmmPanelUS-footer-1-color-border);
    }
    .SmmPanelUS-Footer-logo {
        text-align: center;
        margin-bottom: 60px;
    }
    .SmmPanelUS-Footer-logo img {
        height: 60px;
        transition: transform 0.3s ease;
    }
    .SmmPanelUS-Footer-logo img:hover {
        transform: scale(1.05);
    }
    .SmmPanelUS-Footer-mainGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 50px;
    }
    .SmmPanelUS-Footer-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--SmmPanelUS-footer-1-color-text);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }
    .SmmPanelUS-Footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, var(--SmmPanelUS-footer-1-color-primary), var(--SmmPanelUS-footer-1-color-accent));
        border-radius: 2px;
    }
    .SmmPanelUS-Footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .SmmPanelUS-Footer-list a,
    .SmmPanelUS-Footer-list--contact span {
        text-decoration: none;
        color: var(--SmmPanelUS-footer-1-color-text-muted);
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 14px;
        font-weight: 500;
    }
    .SmmPanelUS-Footer-list a:hover {
        color: var(--SmmPanelUS-footer-1-color-primary);
    }
    .SmmPanelUS-Footer-list i {
        width: 22px;
        text-align: center;
        font-size: 1.1rem;
        color: var(--SmmPanelUS-footer-1-color-primary);
        opacity: 0.8;
    }
    .SmmPanelUS-Footer-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .SmmPanelUS-Footer-btnPrimary, .SmmPanelUS-Footer-btnAccent {
        text-align: center;
        padding: 14px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        color: white !important;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    .SmmPanelUS-Footer-btnPrimary { background-color: var(--SmmPanelUS-footer-1-color-primary); }
    .SmmPanelUS-Footer-btnAccent { background-color: var(--SmmPanelUS-footer-1-color-accent); }
    .SmmPanelUS-Footer-btnPrimary:hover, .SmmPanelUS-Footer-btnAccent:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
    
    /* Language Switcher */
    .SmmPanelUS-Footer-langSwitcher { position: relative; }
    .SmmPanelUS-Footer-langBtn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        background-color: var(--SmmPanelUS-footer-1-color-bg);
        color: var(--SmmPanelUS-footer-1-color-text);
        border: 1px solid var(--SmmPanelUS-footer-1-color-border);
        border-radius: 12px;
        height: 52px;
        padding: 0 20px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .SmmPanelUS-Footer-langBtn:hover {
        border-color: var(--SmmPanelUS-footer-1-color-primary);
    }
    .SmmPanelUS-Footer-langBtn .dropdown-arrow {
        font-size: 0.8rem;
        color: var(--SmmPanelUS-footer-1-color-text-muted);
        transition: transform 0.3s ease;
    }
    .SmmPanelUS-Footer-langSwitcher.is-open .dropdown-arrow {
        transform: rotate(180deg);
    }
    .SmmPanelUS-Footer-langDropdown {
        display: none;
        position: absolute;
        bottom: calc(100% + 10px);
        left: 0;
        width: 100%;
        background-color: var(--SmmPanelUS-footer-1-color-bg);
        border: 1px solid var(--SmmPanelUS-footer-1-color-border);
        border-radius: 12px;
        box-shadow: 0 -8px 25px rgba(0,0,0,0.1);
        list-style: none;
        padding: 8px;
        margin: 0;
        z-index: 10;
    }
    .SmmPanelUS-Footer-langSwitcher.is-open .SmmPanelUS-Footer-langDropdown { display: block; }
    .SmmPanelUS-Footer-langDropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px;
        text-decoration: none;
        color: var(--SmmPanelUS-footer-1-color-text) !important;
        border-radius: 8px;
        font-weight: 500;
    }
    .SmmPanelUS-Footer-langDropdown a:hover {
        background-color: var(--SmmPanelUS-footer-1-color-input-bg);
    }
    .SmmPanelUS-Footer-langDropdown a span {
        font-weight: 700;
        color: var(--SmmPanelUS-footer-1-color-primary);
        background-color: var(--SmmPanelUS-footer-1-color-input-bg);
        border-radius: 6px;
        font-size: 0.8rem;
        width: 32px;
        height: 24px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }
    
    /* 2. Services Section */
    .SmmPanelUS-Footer-servicesSection {
        padding-bottom: 50px;
        margin-bottom: 50px;
        border-bottom: 1px solid var(--SmmPanelUS-footer-1-color-border);
    }
    .SmmPanelUS-Footer-servicesGrid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 40px 30px;
    }
    .SmmPanelUS-Footer-serviceTitle {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--SmmPanelUS-footer-1-color-text);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .SmmPanelUS-Footer-serviceTitle i {
        font-size: 1.3rem;
        color: var(--SmmPanelUS-footer-1-color-text-muted);
    }
    .SmmPanelUS-Footer-serviceList {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .SmmPanelUS-Footer-serviceList a {
        text-decoration: none;
        font-size: 0.95rem;
        color: var(--SmmPanelUS-footer-1-color-text-muted);
        transition: color 0.3s ease;
    }
    .SmmPanelUS-Footer-serviceList a:hover {
        color: var(--SmmPanelUS-footer-1-color-primary);
    }
    
    /* 3. Bottom Section */
    .SmmPanelUS-Footer-bottomSection {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    .SmmPanelUS-Footer-copyright {
        font-size: 0.9rem;
        margin: 0;
        opacity: 0.8;
    }
    .SmmPanelUS-Footer-legalLinks {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 30px;
    }
    .SmmPanelUS-Footer-legalLinks a {
        text-decoration: none;
        font-size: 0.9rem;
        color: var(--SmmPanelUS-footer-1-color-text-muted);
        transition: color 0.3s ease;
        opacity: 0.8;
    }
    .SmmPanelUS-Footer-legalLinks a:hover {
        color: var(--SmmPanelUS-footer-1-color-primary);
        opacity: 1;
    }
    
    @media (min-width: 768px) {
        .SmmPanelUS-Footer-bottomSection {
            flex-direction: row;
            justify-content: space-between;
            text-align: left;
        }
    }
