/* Property Details */
.jspm-property-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.property-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.property-price {
    font-size: 1.8em;
    color: #2ecc71;
    margin-bottom: 20px;
}

.property-location {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.property-location i,
.property-price i {
    margin-right: 10px;
}

/* Gallery */
.property-gallery {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Video */
.property-video {
    margin-bottom: 30px;
}

.property-video video,
.property-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Description */
.property-description {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #444;
}

/* Features, Overview, Nearby, Amenities */
.property-features,
.property-overview,
.property-nearby,
.property-amenities {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.property-features h3,
.property-overview h3,
.property-nearby h3,
.property-amenities h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list,
.overview-list,
.nearby-list,
.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.features-list li,
.overview-list li,
.nearby-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.amenities-list li i {
    color: #2ecc71;
}

/* Property List */
.jspm-property-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.property-item {
    display: flex;
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.property-thumbnail {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

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

.property-thumbnail:hover img {
    transform: scale(1.05);
}

.property-content {
    flex: 1;
    padding: 20px;
}

.property-content h2 {
    margin: 0 0 15px;
}

.property-content h2 a {
    color: #333;
    text-decoration: none;
}

.property-content h2 a:hover {
    color: #2ecc71;
}

.property-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
}

.property-meta i {
    margin-right: 5px;
}

.property-excerpt {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.property-content .button {
    display: inline-block;
    padding: 10px 20px;
    background: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.property-content .button:hover {
    background: #27ae60;
}

/* Reviews */
.jspm-property-reviews {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.review-form-container {
    margin-bottom: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.review-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.review-form input[type="text"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.review-form button {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.review-form button:hover {
    background: #27ae60;
}

.review-item {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    margin-bottom: 15px;
}

.review-header h4 {
    margin: 0 0 10px;
    color: #333;
}

.review-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 0.9em;
}

.rating {
    color: #f1c40f;
}

.review-content {
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .property-item {
        flex-direction: column;
    }

    .property-thumbnail {
        flex: 0 0 200px;
    }

    .features-list,
    .overview-list,
    .nearby-list,
    .amenities-list {
        grid-template-columns: 1fr;
    }

    .property-meta {
        flex-direction: column;
        gap: 10px;
    }
} 