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

.property-hero {
    margin-bottom: 30px;
}

.property-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.property-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.property-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.property-price {
    font-size: 2rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 20px;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    color: #3498db;
}

.property-description {
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
}

.contact-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.btn-contact {
    background: #3498db;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-contact:hover {
    background: #2980b9;
}

/* Responsive */
@media (max-width: 768px) {
    .property-details-container {
        padding: 15px;
    }
    
    .property-title {
        font-size: 1.8rem;
    }
    
    .property-price {
        font-size: 1.6rem;
    }
    
    .property-features {
        grid-template-columns: 1fr;
    }
} 