.box-nav-menu .menu-item {
    position: relative;
}

.box-nav-menu .sub-menu {
    position: absolute;
    left: 0;
    min-width: 200px;
}

/* Phone number styling */
.box-phone {
    display: flex;
    align-items: center;
}

.box-phone .box-icon {
    background-color: #4CAF50;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.box-phone .box-icon i {
    color: white;
}

.box-phone a {
    font-weight: bold;
}

/* Footer Category Dropdown Styles */
.footer-categories .footer-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-categories .category-item {
    margin-bottom: 10px;
}

.footer-categories .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}

.footer-categories .category-header a {
    color: #666;
    text-decoration: none;
    flex: 1;
}

.footer-categories .subcategory-toggle {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-categories .subcategory-toggle.active {
    transform: rotate(180deg);
}

.footer-categories .subcategory-list {
    display: none;
    margin: 0;
    padding: 0 0 0 15px;
    list-style: none;
}

.footer-categories .subcategory-list.active {
    display: block;
}

.footer-categories .subcategory-list li {
    margin: 8px 0;
}

.footer-categories .subcategory-list a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-categories .subcategory-list a:hover {
    color: #03a297;
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
    .footer-heading-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 0;
        cursor: pointer;
    }

    .tf-dropdown-icon {
        transition: transform 0.3s ease;
    }

    .footer-heading-mobile.active .tf-dropdown-icon {
        transform: rotate(180deg);
    }

    .tf-collapse-content {
        display: none;
        padding: 15px 0;
    }

    .tf-collapse-content.active {
        display: block;
    }
} 