/* AKPP Header Styles with Prefix */
.akpp-header * {
    box-sizing: border-box;
}
/* .akpp-header { margin-bottom:40px;}*/
.akpp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.akpp-flex {
    display: flex;
}

.akpp-flex-space-between {
    justify-content: space-between;
}

.akpp-flex-items-center {
    align-items: center;
}

.akpp-d-mob-none {
    display: flex;
}

.akpp-d-desk-none {
    display: none;
}

/* Top Header */
.akpp-header-top-wrap {
    background: #3f67f7;
    border-bottom: 1px solid #2d3748;
}

.akpp-header-top {
    padding: 10px 0;
    color: #e2e8f0;
    font-size: 14px;
}

.akpp-header-top-contacts > div {
    margin-right: 25px;
}

.akpp-header-top-contacts a {
    color: #e2e8f0;
    text-decoration: none;
}

.akpp-header-top-contacts a:hover {
    color: #63b3ed;
}

.akpp-header-top-contacts i {
    color: #fff;
    margin-right: 8px;
    width: 16px;
}

.akpp-header-socials {
    display: flex;
    gap: 15px;
}

.akpp-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 6px;
    color: #000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.akpp-social-link:hover {
    background: #63b3ed;
    color: #fff;
    transform: translateY(-2px);
}

/* Main Header */
.akpp-header-main-wrap {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.akpp-header-main {
    padding: 20px 0;
}

.akpp-header-main-logo {
    flex-shrink: 0;
}

.akpp-header-main-contacts {
    text-align: center;
    flex-grow: 1;
    margin: 0 30px;
}

.akpp-header-address {
    color: #2d3748;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akpp-header-address i {
    color: #4299e1;
    margin-right: 8px;
}

.akpp-header-phones {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.akpp-header-phone {
    color: #2d3748;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.akpp-header-phone:hover {
    color: #4299e1;
}

/* Callback Section */
.akpp-header__contacts {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.akpp-header__callback-btn {
    background: #3f67f7;
    border: none;
    border-radius: 6px;
    padding: 12px 60px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.akpp-header__callback-btn:hover {
    background: #3f67f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.akpp-header__chat-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.akpp-header__chat-btn:hover {
    border-color: #4299e1;
    background: #f7fafc;
}

.akpp-header__contacts-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    min-width: 200px;
}

.akpp-header__contacts-box.active {
    display: block;
}

.akpp-socials__list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.akpp-socials__link {
    display: block;
    color: #4a5568;
    transition: color 0.3s ease;
}

.akpp-socials__link:hover {
    color: #4299e1;
}

/* Menu */
.akpp-header-menu-wrap {
    background: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.akpp-header__nav-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.akpp-header__nav-item {
    position: relative;
}

.akpp-header__nav-link {
    display: block;
    padding: 15px 20px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.akpp-header__nav-link:hover {
    color: #63b3ed;
}

.akpp-header__nav-link-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.akpp-js-slide:hover .akpp-header__nav-link-icon {
    transform: rotate(180deg);
}

.akpp-header__nav2 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    min-width: 240px;
    z-index: 1000;
    display: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    list-style: none;
    padding: 0;
}

.akpp-header__nav-item:hover .akpp-header__nav2 {
    display: block;
}

.akpp-header__nav2 li {
    border-bottom: 1px solid #f7fafc;
}

.akpp-header__nav2 li:last-child {
    border-bottom: none;
}

.akpp-header__nav2 a {
    display: block;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.akpp-header__nav2 a:hover {
    color: #4299e1;
    background: #f7fafc;
}

/* Mobile Header */
.akpp-header-mobile-wrap {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.akpp-header-mobile-main {
    padding: 15px 0;
}

.akpp-header-mobile-logo {
    width: 100px;
}

.akpp-header-mobile-search {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4299e1;
}

.akpp-header-mobile-menu_btn {
    background: #4299e1;
    border-radius: 6px;
    padding: 10px 15px;
}

.akpp-header-mobile-menu_btn a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.akpp-header-mobile-menu_btn i {
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .akpp-d-mob-none {
        display: none !important;
    }

    .akpp-d-desk-none {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .akpp-header-top-contacts > div {
        margin-right: 15px;
        font-size: 12px;
    }

    .akpp-header-phones {
        flex-direction: column;
        gap: 5px;
    }

    .akpp-header-phone {
        font-size: 14px;
    }
}