/* =========================================
   HEADER STYLES - Best Smm Reseller
   ========================================= */

/* Main Header */
.main-header {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.main-header .container {
    max-width: 1320px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Logo */
.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    height: auto;
    max-height: 50px;
    width: 180px;
}

/* Desktop Menu - Hidden by default on mobile */
.menu {
    display: none;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li a {
    display: block;
    padding: 10px 16px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.menu ul li a:hover,
.menu ul li a.active {
    color: #2563eb;

}

/* Header Button - Hidden by default on mobile */
.header-btn {
    display: none;
    padding: 10px 24px;
    background: #2563eb;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
}

/* Hamburger Toggler - Visible by default on mobile */
.header-toggler {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.header-toggler i {
    font-size: 20px;
    color: #1f2937;
}

.header-toggler:hover {
    background: #e9ecef;
}

.header-toggler:hover i {
    color: #2563eb;
}

/* Mobile Offcanvas Sidebar */
.offcanvas {
    max-width: 300px;
    background: #ffffff;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-logo img {
    width: 150px;
    height: auto;
}

.btn-close {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.btn-close i {
    font-size: 18px;
    color: #6c757d;
}

.btn-close:hover {
    background: #e9ecef;
    transform: rotate(90deg);
}

.btn-close:hover i {
    color: #2563eb;
}

.offcanvas-body {
    padding: 20px;
}

/* Sidebar Menu */
.sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu li a,
.sidebar-link {
    display: block;
    padding: 14px 16px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.sidebar-menu li a:hover,
.sidebar-link:hover {
    color: #2563eb;
    background: #f0f7ff;
    padding-left: 22px;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.sidebar-footer .header-btn {
    width: 100%;
    padding: 14px;
    text-align: center;
}

/* Remove hover from sidebar Sign Up button */
.header-btn.w-100.text-center.sidebar-link:hover {
    background: #2563eb;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

/* =========================================
   RESPONSIVE - Desktop (LG+)
   Hide hamburger, show desktop menu
   ========================================= */
@media (min-width: 992px) {
    .header-toggler {
        display: none !important;
    }
    
    .menu {
        display: flex !important;
    }
    
    .header-btn {
        display: inline-block !important;
    }
}
.logo-white {
  width: 200px;
}

/* =========================================
   RESPONSIVE - Mobile (below 768px)
   ========================================= */

@media (max-width: 991.98px) {
    .logo img {
        width: 200px;
    }
    
    .header-toggler {
        width: 40px;
        height: 40px;
    }
    
    .login-hero {
        text-align: center;
        max-width: 100%;
    }
}

