﻿.contact-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
}

    .dropdown-btn:hover {
        color: orange;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    color: #fff;
    min-width: 350px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0; /* Align dropdown to the left of the button */
    left: 100px; /* Reset the left position to allow right alignment */
    transform: translateX(-100%); /* Pushes dropdown left of the button */
}

    .dropdown-content .contact-section {
        padding: 10px;
    }

        .dropdown-content .contact-section strong {
            color: orange;
        }

.contact-dropdown:hover .dropdown-content {
    display: block;
}

.contact-section span {
    color: #fff;
}

.contact-section i {
    margin-right: 5px;
    color: orange;
}

.sub-menu .menu-item-has-children > a {
    font-weight: bold;
    color: #ff6600;
}

.sub-menu .sub-menu {
    margin-left: 15px;
}
