/* Custom styles for frontend */

/* Hide caret icon for non-dropdown menu items */
.nav-menu>li:not(.dropdown) .nav-link::after {
    display: none !important;
}

/* Lo
go size control */
.brand-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/*
 Ensure first slide is visible on load */
.property-slider .slick-slide:first-child {
    display: block !important;
}

.property-slider:not(.slick-initialized)>a:first-child {
    display: block !important;
}

.property-slider:not(.slick-initialized)>a:not(:first-child) {
    display: none !important;
}

/* Fo
oter links clickable fix */
.footer-links .footer-content li a {
    cursor: pointer !important;
    pointer-events: auto !important;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-links .footer-content li a:hover {
    color: var(--theme-color) !important;
    padding-left: 5px;
}

.footer-links .footer-content li {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Ensure footer links are above any overlay */
.footer-links {
    position: relative;
    z-index: 10;
}

.footer-content {
    position: relative;
    z-index: 10;
}


/* Featured cities clickable */
.feature-box {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.feature-box:hover h3,
.feature-box:hover span {
    color: inherit;
}

/*   Property listing image responsive */
#property-listing-image {
    width: 100%;
    /* Mobile first - 100% width */
}

/* Desktop view - 40% width */
@media (min-width: 768px) {
    #property-listing-image {
        width: 40%;
    }
}