/* Header styling fixes */
.hero-badge {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    display: block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

.hero-badge::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    animation: none;
}

.hero-badge:hover {
    transform: none;
    box-shadow: none;
    background: none;
}

.section-badge {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    text-align: center;
}

.section-badge::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    animation: none;
}

.section-badge:hover {
    transform: none;
    box-shadow: none;
    background: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-badge {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    /* Fix for mobile menu toggle button */
    .mobile-nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 1010;
        padding: 10px;
        border-radius: 8px;
        position: relative;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .business-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .section-badge {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/* Перезаписываем все возможные стили для элементов меню */
.business-nav a,
nav.business-nav a,
.business-header .business-nav a,
a[href="../sb/index.html"],
a[href="../lb/index.html"],
.business-nav a.active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
}

.business-nav a[href="../sb/index.html"].active,
.business-nav a[href="../lb/index.html"].active {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: none !important;
}

/* Предотвращаем синий фон для кнопок в мобильном меню */
.business-nav a,
.business-nav a.active,
.business-nav a:active,
.business-nav a:link,
.business-nav a:visited,
.business-nav a:hover {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    background: rgba(0,0,0,0) !important;
    -webkit-background: none !important;
    -moz-background: none !important;
} 