/* ========================= */
/* Footer Dropdown Floating */
/* ========================= */

.footerDropdown {
    position: relative;
    padding-bottom: 10px;
}

.footerDropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
}

/* Button */
.footerDropdownBtn {

    background: none;
    border: none;
    padding: 0;

    font-family: inherit;
    /* 🔥 important */
    font-size: 16px;
    /* match other links */
    font-weight: 500;
    /* match nav weight */
    color: #9ca3af;

    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;

    line-height: 1.5;
}

.footerDropdownBtn:hover {
    color: #ffffff;
}

/* Arrow animation */
.footerDropdown .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Floating submenu */
.footerDropdownMenu {
    position: absolute;
    top: 100%;
    /* 🔥 remove gap */
    left: 0;
    margin-top: 8px;
    min-width: 240px;

    background: #111;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    flex-direction: column;
    gap: 8px;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 50;


}

/* Show on hover */
.footerDropdown:hover .footerDropdownMenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Rotate arrow */
.footerDropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Links */
.footerDropdownMenu a {
    font-size: 13px;
    color: #9ca3af;
    transition: 0.25s ease;
}

.footerDropdownMenu a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.socialIcons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
    color: #d1d5db;
    transition: all .25s ease;
}

.socialIcons a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.mobileTitle {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: .08em;
    color: #94a3b8;
    text-transform: uppercase;
}