/* ================= TOP BAR ================= */
.top-bar {
    position: relative;
    background: #1b345c;
    height: 65px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-left: 50px;
}
.top-bar::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 260px;
    background: #ffffff;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    z-index: 1;
}
.top-logo {
    position: absolute;
    left: 50px;
    top: 50%;           
    transform: translateY(-50%); 
    z-index: 2;
}
.top-logo img {
    height: 70px;
}
.top-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    font-size: 14px;
    white-space: nowrap;
}
.top-info i {
    color: #a6e8f0; 
    margin-right: 6px;
}
.top-info a {
    margin-right: 6px;
    text-decoration: none;
    color: #fff;

}
.navbar {
    background: #ffffff;
    padding: 18px 60px;
    display: flex;
    justify-content: center; 
    align-items: center;
    border-bottom: 1px solid #948f8f;
    position: relative;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}
.nav-links a {
    text-decoration: none;
    color: #000000; 
    font-weight: 600;
    font-size: 15px;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1b345c;
    transition: 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.hamburger {
    display: none;
}
.logo-mobile {
    display: none; 
}
.logo-mobile img {
    height: 50px; 
}
@media screen and (max-width: 992px) {

    .top-bar {
        display: none;
    }
    .navbar {
        padding: 10px 20px;
        justify-content: space-between; 
    }
    .logo-mobile {
        display: block;
    }
    .hamburger {
        display: block;
        font-size: 28px;
        color: #1b345c;
        cursor: pointer;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px; 
        width: 250px;
        height: 100%;
        background: #1b345c;
        flex-direction: column;
        gap: 25px;
        padding-top: 100px;
        padding-left: 20px;
        transition: 0.3s;
        z-index: 1000;
    }
    .nav-links li a {
        color: #fff;
        font-size: 18px;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
    }
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

.admin-secret {
    position: absolute;
    right: 12px;
    top: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.admin-secret i {
    font-size: 10px;
    color: #1b345ce0;
}



/* ================= FOOTER ================= */
.footer {
    background: #0f1f3a; 
    color: #ccc;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: auto 1px auto 1px auto; 
    gap: 35px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    align-items: start;
}
.divider {
    width: 2.5px;
    background: #f3eeee;
    height: 100%;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.logo-col {
    align-items: center;
    text-align: center;
}
.logo-col img {
    height: 92px;
    margin-bottom: 30px;
    border-radius: 5px;
}
.company-description {
    font-size: 14px;
    color: #d6d6d6;
    max-width: 340px;
    text-align: justify;
    line-height: 1.7;
    margin-top: 10px;
    opacity: 0.9;
}

.links-col {
    align-items: flex-start;
}
.links-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.links-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px; 
    font-size: 15px;
    transition: color 0.3s;
}
.links-col a:hover {
    color: #5a91eb;
}
.contact-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.contact-col p {
    font-size: 15px; 
    color: #ccc;
    margin-bottom: 12px;
}
.contact-col i {
    margin-right: 8px;
    color: #5a91eb; 
}
.contact-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b345cda;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 20%;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s, transform 0.3s;
}
.social-icons a:hover {
    background: #fff;
    transform: scale(1.1);
}
.footer-bottom {
    background: #0f1f3ae5; 
    color: #ffffffbe; 
    position: relative;
    text-align: center;
    padding: 20px 15px;
    font-size: 13px;
    line-height: 1.4;
}

.footer-bottom .developer {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaaaaa;
    font-size: 11px;
}
@media screen and (max-width: 768px) {

    .footer {
        display: flex;
        flex-direction: column; 
        gap: 30px; 
        padding: 40px 20px;
    }

    .logo-col {
        text-align: center;
        order: 1;
    }

    .links-col {
        order: 2;
        text-align: left; 
    }

    .links-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .links-col a {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact-col {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: left;
        text-align: left;
    }

    .contact-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .contact-col p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 15px 10px;
        text-align: center;
    }

    .footer-bottom .developer {
        position: static;   
        display: block;     
        margin-top: 6px;    
        transform: none;   
        font-size: 10px;
    }

    
    .divider {
        display: none;
    }
}

@keyframes slideUp {
    from { opacity: 0; transform: translate(-50%, 40px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 15px;
    }
}