/* =====================================================
   BLOOMSERVE HEADER (ORIGINAL CLEAN & STABLE)
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

/* =====================================
   NAVBAR & LOGO
===================================== */
.navbar {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* =====================================
   NORMAL CLEAN MENU
===================================== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.25s ease;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #0b86d5;
}

/* =====================================
   NAV ACTIONS (DESKTOP)
===================================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-actions .btn {
    height: 46px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.header-cta {
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #6366f1 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(99, 102, 241, 0.4);
}

.btn-hrms {
    background: #ffffff;
    color: #0b86d5 !important;
    border: 1.5px solid rgba(11, 134, 213, 0.4);
}

.btn-hrms:hover {
    border-color: #0b86d5;
    background: #f0f7ff;
}

/* =====================================
   MOBILE TOGGLE
===================================== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #0f172a;
    cursor: pointer;
    padding: 4px;
}

/* =====================================
   BODY OFFSET & RESPONSIVE
===================================== */
body {
    padding-top: 84px;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 64px !important;
    }

    .header, 
    .navbar {
        height: 64px !important;
    }

    .navbar {
        padding: 0 16px !important;
    }

    .logo img {
        height: 32px !important;
    }
}