/* ===================================
   MEGA DROPDOWN - Services Navigation
   =================================== */

/* Make header the positioning context so dropdown flows below it */
.header {
    position: relative !important;
    overflow: visible !important;
}

/* Parent list item — keep static so dropdown anchors to header, not the li */
.mega-menu-parent {
    position: static !important;
}

/* The mega dropdown panel — absolute, top: 100% = directly below the header */
.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
}

/* Show on hover */
.mega-menu-parent:hover .mega-dropdown {
    display: block;
}

/* Inner card */
.mega-dropdown-inner {
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #EF0548;
    border-radius: 0 0 8px 8px;
    display: flex;
    gap: 0;
    padding: 28px 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Each column */
.mega-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
    border-right: 1px solid #f0f0f0;
}

.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { border-right: none; padding-right: 0; }

/* Each service link */
.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    color: #2a2a2a !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.mega-item:hover {
    background: #fef1f4;
    color: #EF0548 !important;
}

.mega-item:hover .mega-icon {
    background: #EF0548;
    color: #fff;
}

/* Icon circle */
.mega-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #EF0548;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Service label text */
.mega-label {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
}
