/* ============================================================
   04. NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 100px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 40px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
}

.nav-links a:hover {
    opacity: .7;
}

.nav-links a.active {
    font-weight: 700;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0F1327;
    padding: 13px 19px;
    border-radius: 12px;
    height: 65px;
}

.lang-option {
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.lang-option.active {
    background: rgba(255, 255, 255, .15);
}

/* Mobile toggle — hidden on desktop */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 38px;
    cursor: pointer;
}

/* Mobile slide-out menu */
.mobile-menu {
    position: fixed;
    top: 95px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 95px);
    background: #07133a;
    display: flex;
    flex-direction: column;
    transition: .3s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-lang {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    color: var(--white);
}

@media (max-width: 1024px) {

    .btn-primary {
        order: 1;
        justify-self: start;
    }

    .navbar-logo {
        order: 2;
        justify-self: end;
    }

    .menu-toggle {
        order: 3;
        justify-self: end;
    }

    .navbar-logo img {
        height: 30px;
    }

    .mobile-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }

    /* Navbar */
    .navbar {
        height: 80px;
        padding: 12px 20px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }

    .nav-links,
    .navbar .navbar-actions {
        display: none;
    }

    .mobile-lang {
        zoom: 80%;
        align-self: center;
    }

    .menu-toggle {
        display: block;
    }

    .btn-primary {
        font-size: 14px;
        gap: 10px;
        padding: 10px 12px;
    }

    .btn-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 15px 40px;
    }

    .footer-nav {
        gap: 60px;
    }

}


/* ============================================================
   13. FOOTER CTA & BOTTOM BAR
   ============================================================ */
.footer-cta {
    margin: 0 100px 60px;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 32px;
    background: url('assets/images/chatgpt-image-may-12-2026-09_37_24-pm-2.png') center/cover;
}

.footer-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1464px;
    gap: 163px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-contact-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.footer-contact-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-contact-val {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
}

.footer-nav {
    display: flex;
    gap: 200px;
    flex: 1;
    justify-content: center;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-nav-heading {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    opacity: .8;
    transition: opacity .2s;
}

.footer-nav-link:hover {
    opacity: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-logo {
    font-size: 40px;
    font-weight: 900;
    background: var(--grad-blue-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-date {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.footer-conf-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--white);
    text-align: right;
}

.social-row {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
}

.bottom-bar {
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.bottom-bar p {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
}


@media (max-width: 1024px) {

    /* Footer */
    .footer-cta {
        margin: 0 20px 40px;
        height: auto;
        padding: 32px 20px;
    }

    .footer-cta-inner {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: flex-end;
        width: 100%;
    }

    .footer-nav {
        gap: 40px;
        gap: 50px;
        align-self: anchor-center;
    }

    .footer-contact-title {
        font-size: 18px;
    }

    .footer-contact-label,
    .footer-contact-val {
        font-size: 16px;
    }

    .footer-nav-heading {
        font-size: 18px;
    }

    .footer-conf-name {
        font-size: 15px;
    }

    .bottom-bar {
        padding: 16px 20px;
        text-align: center;
    }

    .section-divider {
        margin: 0 20px;
    }
}