
    /* Property Listing Styles */
    .properties-carousel-wrapper, .all-properties-wrapper {
        padding: 20px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .carousel-title, .properties-title {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
        font-size: 2rem;
    }
    
    /* Property Card Styles */
    .properties-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .property-card {
        border: 1px solid #eaeaea;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .property-card.expanded {
        z-index: 10;
        transform: scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .property-image {
        position: relative;
        height: 200px;
        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.05);
    }
    
    .property-image-placeholder {
        width: 100%;
        height: 100%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-weight: bold;
    }
    
    .property-price {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #0096C7B0;
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    .property-content {
        padding: 20px;
    }
    
    .property-title {
        margin: 0 0 10px 0;
        font-size: 1.3rem;
        color: #333;
    }
    
    .property-location {
        color: #666;
        margin: 0 0 15px 0;
        font-size: 0.95rem;
    }
    
    .property-details {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .property-details .detail {
        font-size: 0.9rem;
        color: #555;
    }
    
    .property-amenities {
        margin-bottom: 15px;
    }
    
    .property-amenities strong {
        display: block;
        margin-bottom: 5px;
        color: #444;
    }
    
    .amenities-list {
        font-size: 0.9rem;
        color: #666;
    }
    
    .property-description {
        margin-bottom: 20px;
        position: relative;
    }
    
    .property-description p {
        margin: 0 0 10px 0;
        color: #555;
        line-height: 1.5;
    }
    
    .see-more-btn {
        background: none;
        border: none;
        color: #0088ff;
        cursor: pointer;
        font-size: 0.9rem;
        padding: 0;
        text-decoration: underline;
    }
    
    .see-more-btn:hover {
        color: #0066cc;
    }
    
    .property-actions {
        display: flex;
        gap: 10px;
    }
    
    .view-details-btn, .book-now-btn {
        flex: 1;
        padding: 12px 35px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
        text-align: center;
        text-decoration: none;
        font-size: 0.9rem;
    }
    
    .view-details-btn {
        background: #f0f0f0;
        color: #333;
    }
    
    .view-details-btn:hover {
        background: #e0e0e0;
    }
    
    .book-now-btn {
        background: rgba(48, 170, 168, 0.9);
        color: white;
    }
    
    .book-now-btn:hover {
        background: #0066cc;
    }
    
    /* Booking Form Styles */
    .booking-form-container {
        padding: 20px;
        border-top: 1px solid #eaeaea;
        background: #f9f9f9;
    }
    
    .booking-form {
        position: relative;
    }
    
    .close-booking-form {
        margin-top: 15px;
        padding: 10px 15px;
        background: #999;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
    }
    
    .close-booking-form:hover {
        background: #777;
    }
    
    /* Carousel Styles */
    .recent-properties-carousel {
        padding: 10px 40px 50px;
    }
    
    .recent-properties-carousel .swiper-slide {
        height: auto;
    }
    
    .swiper-button-prev, .swiper-button-next {
        color: #0088ff;
    }
    
    .swiper-pagination-bullet-active {
        background: #0096C7B0;
    }
    
    /* Load More Button */
    .load-more-container {
        text-align: center;
        margin: 30px 0;
    }
    
    #load-more-properties {
        padding: 12px 30px;
        background: #0096C7;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    #load-more-properties:hover {
        background: #0096C7B0;
    }
    
    #load-more-properties:disabled {
        background: #ccc;
        cursor: not-allowed;
    }
    
    /* Filter Styles */
    .properties-filter {
        margin-bottom: 25px;
        text-align: right;
    }
    
    #property-sort {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: white;
    }
    
    /* Modal for full description */
    .description-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }
    
    .modal-content {
        background: white;
        padding: 30px;
        border-radius: 12px;
        max-width: 600px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
    }
    
    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        background: none;
        border: none;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .properties-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 900px) {
        .properties-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 600px) {
        .properties-grid {
            grid-template-columns: 1fr;
        }
        
        .property-actions {
            flex-direction: column;
        }
        
        .recent-properties-carousel {
            padding: 10px 20px 50px;
        }
    }
    