/* Property Detail Page Styles */

.property-detail-section {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 10px 0;
    max-width: 1200px;
    margin: auto;
}

.back-button {
    margin-bottom: 30px;
}

.back-button a {
    color: #79b100;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.back-button a:hover {
    color: #fff;
}

.property-header-detail {
    margin-bottom: 40px;
}

.property-header-detail h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.property-meta {
    display: flex;
    gap: 15px;
}

.badge-detail {
    background: #79b100;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Gallery */
.property-gallery {
    margin-bottom: 40px;
}

.main-image {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    border-color: #79b100;
    transform: scale(1.05);
}

/* Detail Grid */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-section,
.description-section,
.features-section,
.services-section {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
}

.price-section h2,
.description-section h2,
.features-section h2,
.services-section h2 {
    color: #79b100;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price-big {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.price-per-m2 {
    font-size: 1.2rem;
    color: #ccc;
}

.description-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item,
.service-item {
    background: rgba(121, 177, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1.1rem;
}

.feature-item i,
.service-item i {
    color: #79b100;
    font-size: 1.5rem;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card,
.location-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #79b100;
}

.contact-card h3,
.location-card h3 {
    color: #79b100;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p,
.location-card p {
    color: #ccc;
    margin-bottom: 20px;
}

.btn-contact-whatsapp,
.btn-contact-call {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.btn-contact-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-contact-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-contact-call {
    background: #79b100;
    color: #fff;
}

.btn-contact-call:hover {
    background: #5a8500;
    transform: translateY(-2px);
}

.location-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.location-card i {
    color: #79b100;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 400px;
    }

    .property-header-detail h1 {
        font-size: 1.8rem;
    }

    .price-big {
        font-size: 2rem;
    }
}