/* Property Header */
.property-header {
    margin-bottom: 50px;
}

.property-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.property-address {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.property-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.property-status {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    background-color: rgba(231, 76, 60, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.feature-badge i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Gallery */
.property-gallery {
    margin-bottom: 50px;
}

.main-image {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.thumbnail:hover img {
    transform: scale(1.05);
}

/* Property Details */
.property-details {
    margin-bottom: 50px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list strong {
    color: var(--primary-color);
}

/* Description */
.property-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
}

.amenity-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 25px;
}

/* Map */
.property-map {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.property-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.agent-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.agent-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.agent-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info h4 {
    margin-bottom: 5px;
}

.agent-info p {
    color: #666;
    margin-bottom: 0;
}

.agent-contact {
    margin-bottom: 20px;
}

.agent-contact a {
    display: block;
    color: #666;
    margin-bottom: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.agent-contact a:hover {
    color: var(--secondary-color);
}

.agent-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-form .form-control {
    height: 45px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 10px 15px;
}

.contact-form textarea {
    height: 120px !important;
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
    .main-image {
        height: 400px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .property-title {
        font-size: 2rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .thumbnail-container {
        grid-template-columns: repeat(2, 1fr);
    }
}