/* ================================
   SIDEBAR
   ================================ */

.sidebar {
    width: 300px;
    background: rgba(255, 255, 255, 0.015);

    border-right: 1px solid rgba(255, 255, 255, 0.05);

    padding: 28px 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    overflow-x: hidden;
    overflow-y: auto;
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 91, 0, 0.45);
    border-radius: 20px;
}

.sidebar-top {
    min-height: auto;
}

/* ================================
   LOGO
   ================================ */

.logo {
    margin-bottom: 40px;
    text-align: center;
}

.logo img {
    width: 120px;
    object-fit: contain;
}

/* ================================
   MENU
   ================================ */

.menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu a,
.dropdown-toggle {
    text-decoration: none;
    color: #8f8f8f;

    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    padding: 16px 18px;

    border-radius: 16px;

    transition: 0.3s ease;

    background: rgba(255, 255, 255, 0.01);

    border: 1px solid rgba(255, 255, 255, 0.02);

    font-size: 16px;
    cursor: pointer;
}

.dropdown-toggle {
    justify-content: space-between;
}

.dropdown-label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dropdown-toggle:hover {
    color: #fff;
    background: linear-gradient(145deg, #bc4a08, #101010);
}

.menu a:hover,
.menu a.active,
.dropdown.active .dropdown-toggle
{
    color: #fff;

    background: linear-gradient(145deg, #1c1c1c, #121212);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.menu i {
    width: 20px;
    color: #ff5b00;
}

/* ================================
   DROPDOWN
   ================================ */

.dropdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-arrow {
    margin-left: auto;
    color: #777;
    font-size: 13px;
    transition: 0.3s ease;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #ff5b00;
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 14px;
    transition: max-height 0.35s ease;
}

.dropdown.active .dropdown-menu {
    max-height: 760px;
}

.dropdown-menu a {
    align-items: flex-start;
    padding: 13px 16px;
    gap: 10px;
    border-radius: 13px;
    border: 1px solid rgba(184, 187, 12, 0.02);
    font-size: 14px;
    line-height: 1.35;
    background: rgba(229, 236, 14, 0.012);
}

.dropdown-menu a:hover {
color: #fff;
background:linear-gradient(145deg, #bc4a08, #101010);;
}
/* ================================
   SUPPORT CARD (SIDEBAR BOTTOM)
   ================================ */

.support-card {
    margin-top: 25px;

    padding: 24px;

    border-radius: 22px;

    background:rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.04);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.support-card:hover{
background: linear-gradient(145deg, #bc4a08, #101010);
}

.support-card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.support-card p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 14px;
}

.support-card button {
    width: 100%;
    margin-top: 18px;

    border: none;
    padding: 14px;

    border-radius: 14px;

    background: #ff5b00;
    color: #fff;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.support-card button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 24px rgba(255, 91, 0, 0.4);
}

/* ================================
   RESPONSIVE — SIDEBAR
   ================================ */

@media (max-width: 1300px) {
    .sidebar {
        width: 100%;
    }
}
