@layer components {
    .btn-glass {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        transition: all 0.3s ease;
    }

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white;
    }

    /* Main Menu Premium Styles */
    .nav-item.dropdown:hover > a {
        color: #2563eb; /* blue-600 */
    }

    /* Transition and glass effect for dropdown */
    .dropdown-menu {
        transform: translateY(10px);
        transition: all 0.2s ease-out;
    }

    .group:hover .dropdown-menu {
        transform: translateY(0);
    }
}

/* Custom Utilities or Legacy support if needed */
.listings_item_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.office_image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
    max-width: 100%;
}

.banner_for_listings {
    background: url('/assets/themes/tail/img/bg1.webp') no-repeat center center fixed;
    background-size: cover;
    background-position: top center;
}

.agent_image_detail {
    max-width: 100%;
    width: 300px;
    border-radius: 14px;
    object-fit: cover;
    object-position: top;
}

.agent_listing_detail_image {
    border-radius: 100px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
}

.office_image_line_listing {
    max-height: 174px;
    object-fit: cover;
    width: 100%;
}