:root {
    --blue: #47a0cccf;
    --blue-dark: #1f4e79;
    --white: #ffffff;
    --text: #1e2a3a;
}


/* RESET */
.agh-header * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HEADER */
.agh-header {
    position: relative;
    z-index: 9999;
}
/* TOPBAR */
.agh-topbar {
    background: linear-gradient(135deg, #47a0cccf, #2e8fbf);
    padding: 6px 0;
}

/* FLEX CONTAINER */
.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT TEXT */
.topbar-left {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* RIGHT ICONS */
.topbar-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
}

.topbar-right {
    text-align: right;
}

.topbar-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
}

/* NAVBAR */
.agh-navbar {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    position: relative;
    transition: all 0.3s ease;
}

/* 🔥 STICKY NAVBAR */
.agh-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: slideDown 0.3s ease;
}

/* SLIDE EFFECT */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 74px;
    /* padding-top: 15px; */
}

/* MENU */
.agh-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.agh-nav a {
    color: #4b9fc9;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
    padding: 6px 0;

    display: block !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 9999;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ONE ITEM PER LINE */
.dropdown-menu li {
    display: block !important;
    width: 100% !important;
}

.dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 14px;
    color: #2b2b2b;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #47a0cccf;
    color: #ffffff;
}

/* ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.lang img {
    width: 20px;
    margin-right: 5px;
}

.btn-appointment {
    background: #429bc6;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-appointment:hover {
    background: #136995;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #000000;
    margin: 4px 0;
}

/* DEFAULT */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* MOBILE */
@media (max-width: 991px) {

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .hamburger {
        display: flex;
    }

    .agh-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        transition: .3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .agh-nav.active {
        left: 0;
    }

    .agh-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .agh-nav li {
        border-bottom: 1px solid #eee;
    }

    .agh-nav a {
        color: #1e2a3a;
        padding: 14px 20px;
        display: block;
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        display: none;
        background: #f7f9fb;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

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

    .dropdown-menu li a {
        padding-left: 40px;
        font-size: 14px;
    }

    .mobile-btn {
        margin: 15px;
        text-align: center;
    }
}


