.listingo-box .listing-img {
    width: 100%;
    height: 200px;
    background-color: #0a8e99;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

:root {
    --primary: #0A2342;   
    --primary-2: #1434A4;
    --accent: #FF00C8;    
    --bg: #F5F7FA;        
    --card-bg: #FFFFFF;
    --muted: #6b7280;
    --shadow: rgba(10,34,66,0.06);
}

* { box-sizing: border-box; }

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--primary);
    margin: 0;
    -webkit-font-smoothing:antialiased;
}

.property-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #000; 
}

.property-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.property-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0s;
    z-index: 1;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 32, 56, 0.7), rgba(25, 55, 95, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.property-type {
    display: inline-block;
    background: rgba(59, 130, 246, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.property-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 15px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(15, 32, 56, 0.5);
}

.property-location {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.property-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 20px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    background: rgba(59, 130, 246, 0.3);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 8px;
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.property-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.read-more-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    background: #1d4ed8;
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #3b82f6;
    width: 30px;
    border-radius: 6px;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    background: transparent !important; 
    border: none !important;           
    width: auto;                    
    height: auto;                     
    border-radius: 0;                 
    
    color: white;
    cursor: pointer;
    font-size: 2.2rem; 
    font-weight: 700;
    padding: 0 10px; 
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    color: var(--primary-2); 
    transform: translateY(-50%) scale(1.1); 
}
.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .property-carousel {
        height: 500px;
    }
    
    .property-title {
        font-size: 2rem;
    }
    
    .property-price {
        font-size: 1.5rem;
    }
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1400px) {
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .property-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}