/* Mega Menu Styles */
.mega-menu {
    position: static !important; /* To let the mega menu span the header width if needed, or keep relative for centered */
}

/* Let's make dropdown relative to header, so we need .header to be position: relative which it already is */

.mega-menu-content {
    min-width: 900px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px) !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--logo-color, #159cc4);
    margin-bottom: 1rem;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.mega-col a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0 !important;
    font-size: 0.9rem !important;
    color: var(--text-dark, #070a11) !important;
    transition: color 0.3s, transform 0.3s;
}

.mega-col a:hover {
    color: var(--logo-color, #159cc4) !important;
    background: transparent !important;
    transform: translateX(5px);
}

.mega-col a i {
    color: var(--logo-color, #159cc4);
    opacity: 0.7;
    width: 20px;
}

.mega-highlight {
    background: rgba(21, 156, 196, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-highlight h4 {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.mega-highlight p {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.mega-col a.btn-small, .btn-small {
    display: inline-block !important;
    padding: 0.6rem 1.5rem !important;
    background: var(--logo-color, #159cc4) !important;
    color: white !important;
    border-radius: 50px;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.mega-col a.btn-small:hover, .btn-small:hover {
    background: var(--text-dark, #070a11) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Mega Menu */
@media (max-width: 992px) {
    .mega-menu-content {
        min-width: 100% !important;
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 1rem !important;
    }
    
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mega-highlight {
        padding: 1rem;
    }
}
