/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    background: linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef6ff 100%
    );

    border-bottom: 2px solid #00AEEF;

    box-shadow: 0 8px 30px rgba(0, 86, 214, 0.12);
}

/* =========================
   NAV CONTENT
========================= */

.nav-content {
    width: 100%;
    min-height: 150px !important;
    padding: 0 28px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 150px !important;
    width: auto !important;
    max-height: none !important;
    display: block;
    object-fit: contain;
}

/* =========================
   NAV LINKS
========================= */

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a,
.nav-link-btn {
    color: #071827;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-link-btn:hover {
    color: #0056b3;
}

/* =========================
   CTA BUTTON
========================= */

.nav-cta {
    color: #ffffff !important;
    padding: 12px 20px !important;
    border-radius: 50px;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #0056b3, #00acee) !important;
    box-shadow: 0 10px 25px rgba(0, 172, 238, 0.28);
}

.nav-cta:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* =========================
   DROPDOWNS
========================= */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 42px;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid rgba(0, 172, 238, 0.20);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 12px;
    display: none;
    z-index: 1000;
}

.nav-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu a,
.dropdown-menu button {
    width: 100%;
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #071827;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
    background: #f4f9ff;
    color: #0056b3;
}

.language-menu form {
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }

    .navbar-logo {
        height: 95px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .navbar-logo {
        height: 75px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a,
    .nav-link-btn {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 10px 16px !important;
    }
}