/* Header and Navigation Styles */
.header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.logo {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 5px;
    animation: fadeInDown 0.8s ease;
}

.company-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.phone-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    animation: fadeInDown 0.8s ease 0.4s both;
}

.theme-toggle {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--card-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    color: var(--text-color);
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

/* Хамбургер меню стилове */
.hamburger-menu {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--card-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-color);
    z-index: 1000;
}

.hamburger-menu:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

.menu-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    background: var(--card-color);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    background: var(--primary-color);
    color: white;
}

.menu-item.active {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.menu-item i {
    width: 20px;
    text-align: center;
}

.current-mode {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}