/*==================================================
  HEADER
==================================================*/

:root{
    --primary:#0b4dbb;
    --primary-dark:#083d98;
    --secondary:#ff6b00;
    --yellow:#ffc107;
    --text:#1f2937;
    --light:#f8fafc;
    --border:#e5e7eb;
    --white:#ffffff;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/*==================================================
  TOPBAR
==================================================*/

.gjp-topbar{
    background:var(--primary);
    color:#fff;
    font-size:13px;
}

.gjp-topbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:42px;
}

.gjp-topbar-left{
    font-weight:500;
}

.gjp-topbar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.gjp-topbar-right a{
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:6px;
    transition:.3s;
}

.gjp-topbar-right a:hover{
    opacity:.85;
}

/*==================================================
  BRANDING
==================================================*/

.gjp-branding{
    background:#fff;
    padding:18px 0;
}

.gjp-branding-inner{
    display:grid;
    grid-template-columns:240px 1fr 280px;
    gap:35px;
    align-items:center;
}

/* Logo */

.gjp-logo img{
    width:220px;
    display:block;
}

/* Search */

.gjp-search-form{
    display:flex;
    align-items:center;
    height:56px;
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.gjp-search-form input{
    flex:1;
    border:none;
    outline:none;
    padding:0 20px;
    font-size:15px;
}

.gjp-search-form select{
    width:110px;
    border:none;
    border-left:1px solid var(--border);
    outline:none;
    background:#fff;
    padding:0 14px;
    font-size:15px;
    cursor:pointer;
}

.gjp-search-form button{
    width:60px;
    border:none;
    cursor:pointer;
    background:var(--primary);
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.gjp-search-form button:hover{
    background:var(--primary-dark);
}

/* Login Buttons */

.gjp-header-buttons{
    display:flex;
    justify-content:flex-end;
    gap:16px;
}

.gjp-login-btn,
.gjp-register-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:52px;
    width:130px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.gjp-login-btn{
    border:2px solid var(--primary);
    color:var(--primary);
    background:#fff;
}

.gjp-login-btn:hover{
    background:var(--primary);
    color:#fff;
}

.gjp-register-btn{
    background:var(--secondary);
    color:#fff;
}

.gjp-register-btn:hover{
    opacity:.92;
}

/*==================================================
  NAVIGATION
==================================================*/

.gjp-navbar{
    background:#fff;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.gjp-navbar-inner{
    display:flex;
    align-items:center;
}

.gjp-menu{
    display:flex;
    align-items:center;
    gap:6px;
    list-style:none;
    margin:0;
    padding:12px 0;
}

.gjp-menu li{
    position:relative;
}

.gjp-menu li a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    color:var(--text);
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:10px;
    transition:.3s;
}

.gjp-menu li a:hover{
    background:#eef5ff;
    color:var(--primary);
}

.current-menu-item a{
    background:var(--primary);
    color:#fff !important;
}

.menu-arrow{
    font-size:11px;
    margin-left:2px;
}

/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:1200px){

.gjp-branding-inner{
    grid-template-columns:1fr;
    gap:20px;
}

.gjp-header-buttons{
    justify-content:flex-start;
}

}

@media(max-width:992px){

.gjp-topbar-left{
    display:none;
}

.gjp-topbar-inner{
    justify-content:center;
}

.gjp-menu{
    overflow-x:auto;
    white-space:nowrap;
}

}

@media(max-width:768px){

.gjp-search-form{
    flex-wrap:wrap;
    height:auto;
}

.gjp-search-form input{
    width:100%;
    height:52px;
}

.gjp-search-form select{
    width:calc(100% - 60px);
    height:52px;
}

.gjp-search-form button{
    height:52px;
}

.gjp-header-buttons{
    flex-direction:column;
}

.gjp-login-btn,
.gjp-register-btn{
    width:100%;
}

}