/* =========================================================
   SahiMaap — HEADER
   ========================================================= */

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

.navbar {
    width: 100%;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #dceaf1;
    position: relative;
    z-index: 100;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 245px;
}

.logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 17px;
    line-height: 1.2;
    color: #124d6b;
    font-weight: 700;
}

.logo-text p {
    font-size: 10px;
    color: #557381;
    margin-top: 2px;
}

/* ==================== NAVIGATION ==================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
    color: #3d5c6b;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #087ca1;
}

/* Active navigation underline */

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #0b82a8;
    border-radius: 5px;
}

/* ==================== MOBILE MENU BUTTON ==================== */

.menu-btn {
    display: none;
    border: none;
    background: transparent;
    color: #124d6b;
    font-size: 25px;
    cursor: pointer;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .navbar {
        min-height: 70px;
        padding: 10px 5%;
    }

    .logo-area {
        min-width: 0;
    }

    .logo {
        width: 45px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 14px;
    }

    .logo-text p {
        font-size: 8px;
    }

    /* Hide desktop navigation */

    .nav-links {
        display: none;
    }

    /* Show hamburger */

    .menu-btn {
        display: block;
    }

    /* Mobile navigation */

    .nav-links.mobile-active {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 15px 7%;
        background: #ffffff;
        border-bottom: 1px solid #dceaf1;
        box-shadow: 0 8px 20px rgba(20, 70, 90, 0.08);
    }

    .nav-links.mobile-active a {
        width: 100%;
        padding: 12px 0;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 500px) {

    .logo-text p {
        display: none;
    }
}