/* Global Sidebar Styles */
#side-menu {
    position: fixed;
    top: 0;
    right: -450px; /* Hidden by default */
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #111111;
    color: #ffffff;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.9, 0, 0.05, 1);
    display: flex;
    flex-direction: column;
    padding: 32px 40px;
    box-sizing: border-box;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

#side-menu.active {
    right: 0;
}

#side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

#side-menu-overlay.active {
    display: block;
    opacity: 1;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.side-menu-logo svg {
    fill: #ffffff;
    width: 80px;
    height: 20px;
}

.side-menu-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.side-menu-get-quote {
    background: #ffffff;
    color: #000000;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}

.side-menu-get-quote:hover {
    transform: scale(1.05);
}

#side-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#side-menu-close:hover {
    transform: rotate(90deg);
}

.side-menu-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 1024px) {
    .side-menu-body {
        flex-direction: column;
        gap: 60px;
    }
}

.side-menu-section h3 {
    color: #999999;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.side-menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-section li {
    margin-bottom: 20px;
}

.side-menu-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.side-menu-section a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.side-menu-section a:hover:after {
    width: 100%;
}

.careers-chip {
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
}

/* Specific styling for smaller links in Follow Us */
.side-menu-section.follow-us a {
    font-size: 18px;
}
