.premium-footer {
        position: relative;
        padding: 100px 5% 40px;
        background: var(--bg-color);
        border-top: 1px solid var(--card-border);
    }

    .footer-container {
        max-width: 1300px; /* Slightly wider for the "more right" feel */
        margin: 0 auto;
        position: relative;
    }

    .footer-grid {
        display: grid;
        /* Adjusted grid: branding takes 2 parts, center stays, nav pushed right */
        grid-template-columns: 2fr 1.5fr 1fr; 
        gap: 40px;
        margin-bottom: 80px;
    }

    /* --- SECTION 1: LOGO ABOVE NAME --- */
    .footer-logo-vertical {
        display: flex;
        flex-direction: column; /* Stack logo on top of name */
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }

    .footer-logo-circle {
        width: 60px;
        height: 60px;
        /* background: var(--gradient); */
        
            background-image: url("../images/bk.png");
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 24px;
        /* border-radius: 50%; */
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 800;
        font-size: 1.4rem;
        box-shadow: 0 10px 25px rgba(255, 123, 0, 0.25);
    }

    .footer-company-name {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--text-main);
    }

    .footer-address {
        color: var(--text-muted);
        line-height: 1.8;
        font-size: 0.95rem;
        opacity: 0.8;
    }

    /* --- SECTION 2: SOCIAL --- */
    .footer-heading {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-main);
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .social-links {
        display: flex;
        gap: 15px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-main);
        transition: 0.3s;
    }

    .social-btn:hover {
        border-color: var(--primary-orange);
        color: var(--primary-orange);
        background: rgba(255, 123, 0, 0.05);
    }

    /* --- SECTION 3: NAVIGATION (PUSHED RIGHT) --- */
    .navigation {
        text-align: right; /* Aligns text to the right for a modern feel */
    }

    .footer-nav-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav-list a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.95rem;
        transition: color 0.3s;
    }

    .footer-nav-list a:hover {
        color: var(--primary-orange);
    }

    /* --- FOOTER BOTTOM --- */
    .footer-divider {
        height: 1px;
        width: 100%;
        background: linear-gradient(to right, transparent, var(--card-border), transparent);
        margin-bottom: 30px;
    }

    .footer-bottom {
        text-align: center;
        color: var(--text-muted);
        font-size: 0.85rem;
        opacity: 0.6;
    }

    .footer-glow-divider {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 1px;
        background: radial-gradient(circle, var(--primary-orange) 0%, transparent 100%);
        opacity: 0.2;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        .navigation { text-align: left; }
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-logo-vertical { align-items: center; }
        .navigation { text-align: center; }
        .social-links { justify-content: center; }
    }