/* Real Estate Property Cards Styling - Desktop Only */
@media (min-width: 768px) {
    .property-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin: 15px;
        position: relative;
    }

    .property-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    /* Image Section */
    .property-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .property-card:hover .property-image img {
        transform: scale(1.1);
    }

    /* Property Badge */
    .property-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 1;
    }

    .status-badge {
        background: linear-gradient(135deg, #ff4d4d, #f9333f);
        color: #fff;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
    }

    /* Price Tag */
    .price-tag {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: linear-gradient(135deg, #2c3e50, #34495e);
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* Content Section */
    .property-content {
        padding: 25px;
    }

    .property-location {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .property-location i {
        color: #ff4d4d;
    }

    .property-title {
        margin: 0 0 15px;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }

    .property-title a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .property-title a:hover {
        color: #ff4d4d;
    }

    .property-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .property-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #666;
        font-size: 13px;
    }

    .property-meta i {
        color: #34495e;
    }

    .property-divider {
        border: none;
        height: 1px;
        background: #eee;
        margin: 20px 0;
    }

    /* Agent Section */
    .agent-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .agent-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .agent-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .agent-details {
        flex: 1;
    }

    .agent-label {
        color: #666;
        font-size: 12px;
        margin: 0;
    }

    .agent-name {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
    }

    .agent-name a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .agent-name a:hover {
        color: #ff4d4d;
    }

    /* Carousel Navigation */
    .featured-properties-carousel .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        color: #2c3e50 !important;
        font-size: 20px !important;
        transition: all 0.3s ease;
    }

    .featured-properties-carousel .owl-nav button:hover {
        background: #fff !important;
        color: #ff4d4d !important;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .featured-properties-carousel .owl-prev {
        left: -20px;
    }

    .featured-properties-carousel .owl-next {
        right: -20px;
    }
}
