/* =============================
   GLOBAL
============================= */
body.corporate-body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f8fb;
}

.container {
    max-width: 1200px;
}

/* =============================
   TOP BAR
============================= */
.top-bar {
    background: #0b2545;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

    .top-bar a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
    }

        .top-bar a:hover {
            text-decoration: underline;
        }

/* Hide top bar on very small devices */
@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
}

/* =============================
   NAVBAR
============================= */
.corporate-navbar {
    background: linear-gradient(90deg, #0b2545, #133b6b);
    padding: 15px 0;
}

    .corporate-navbar .nav-link {
        color: #ffffff !important;
        font-weight: 500;
        margin-right: 15px;
        position: relative;
    }

        .corporate-navbar .nav-link:hover {
            color: #00c6ff !important;
        }

/* Mobile menu styling */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #0b2545;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .corporate-navbar .nav-link {
        margin: 10px 0;
    }

    .btn-premium {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* =============================
   PREMIUM BUTTON
============================= */
.btn-premium {
    background: #00c6ff;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 8px 20px;
}

    .btn-premium:hover {
        background: #0096c7;
        color: #fff;
    }

/* =============================
   MAIN CONTENT
============================= */
main {
    min-height: 60vh;
}

/* =============================
   FOOTER
============================= */
.corporate-footer {
    background: #0b2545;
    color: #ffffff;
    padding: 60px 0 20px 0;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

    .footer-links a:hover {
        color: #00c6ff;
    }

.footer-divider {
    border-color: rgba(255,255,255,0.2);
}

/* Tablet adjustments */
@media (max-width: 768px) {

    .corporate-footer {
        padding: 40px 0 20px 0;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 20px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {

    body {
        font-size: 14px;
    }

    .corporate-navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .corporate-footer {
        padding: 30px 0 10px 0;
    }
}
