*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
        --pro-navy: #012a58;
        --pro-gold: #96b4d5;
        --pro-gray: #64748b;
        --pro-border: rgba(255, 255, 255, 0.1);
    }

    .pro-footer {
        background-color: var(--pro-navy);
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        padding-top: 0;
    }

    /* Top Bar Styling */
    .footer-top-bar {
        background: var(--pro-gold);
        padding: 15px 0;
        color: #000;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .bar-container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        padding: 0 20px;
    }

    .bar-item i { margin-right: 8px; }

    /* Main Footer Area */
    .footer-main { padding: 80px 0 60px; }

    .pro-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 25px;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
    }

    .pro-logo {
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 20px;
        color: #fff;
    }

    .pro-logo span { color: var(--pro-gold); }

    .brand-info p {
        color: var(--pro-gray);
        line-height: 1.6;
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .pro-heading {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--pro-gold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .pro-links { list-style: none; }
    .pro-links li { margin-bottom: 12px; }
    .pro-links a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
        transition: 0.3s;
    }

    .pro-links a:hover { color: var(--pro-gold); }

    .pro-contact-box p {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #cbd5e1;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .pro-contact-box i { color: var(--pro-gold); margin-top: 4px; }

    .pro-social { display: flex; gap: 12px; }
    .pro-social a {
        width: 36px; height: 36px;
        text-decoration: none;
        background: rgba(255,255,255,0.05);
        display: flex; align-items: center; justify-content: center;
        border-radius: 6px; color: #fff; transition: 0.3s;
    }
    .pro-social a:hover { background: var(--pro-gold); color: #000; }

    /* Copyright Section */
    .pro-copyright {
        border-top: 1px solid var(--pro-border);
        padding: 30px 0;
        background-color: #fff;
    }

    .bottom-flex {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: #000;
    }

    .bottom-flex a { 
        color: #012a58; 
        font-size: 1rem;
        text-decoration: none; }

    /* Responsive */
    @media (max-width: 992px) {
        .pro-container { grid-template-columns: repeat(2, 1fr); }
        .footer-top-bar { display: none; }
    }

    @media (max-width: 600px) {
        .pro-container { grid-template-columns: 1fr; text-align: center; }
        .pro-contact-box p { justify-content: center; word-break: break-all;}
        .pro-social { justify-content: center; }
        .bottom-flex { flex-direction: column; gap: 10px; text-align: center; }
    }