/* ===============================
   SINGLE PROPERTY PAGE STYLES
================================= */

/* General Page */
body {
    background: #f7f8fa;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.hero-wrap {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-wrap .overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumbs {
    color: #fff;
    font-size: 14px;
}

/* ===============================
   PROPERTY CAROUSEL
================================= */

#propertyCarousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#propertyCarousel img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#propertyCarousel img:hover {
    transform: scale(1.03);
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

/* ===============================
   PROPERTY DETAILS CARD
================================= */

.property-details {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 20px;
}

.property-details h2 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.property-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #e63946;
}

/* Badge */
.badge-success {
    background: #28a745;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Info Blocks */
.property-details .mb-3 {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Icons section */
.property-details .row.text-center i {
    transition: 0.3s ease;
}

.property-details .row.text-center div:hover i {
    transform: translateY(-5px);
}

/* ===============================
   BUTTONS
================================= */

.btn {
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* WhatsApp Button inside page */
.btn-success {
    background: #25D366;
    border: none;
}

.btn-success:hover {
    background: #1ebc59;
}

/* Info & Danger buttons */
.btn-info {
    background: #17a2b8;
    border: none;
}

.btn-danger {
    background: #dc3545;
    border: none;
}

/* ===============================
   DESCRIPTION SECTION
================================= */

.property-description {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.property-description h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.property-description p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* ===============================
   AMENITIES & FEATURES
================================= */

.amenities-box,
.features-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.amenities-box h4,
.features-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.amenities-box p,
.features-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Colored borders */
.amenities-box {
    border-left: 4px solid #f4b400;
}

.features-box {
    border-left: 4px solid #28a745;
}

/* ===============================
   VIDEO SECTION
================================= */

.video-tour {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.video-tour h3 {
    margin-bottom: 20px;
}

.video-tour .btn-dark {
    padding: 12px 25px;
    font-size: 16px;
}

/* ===============================
   PROPERTY NOT FOUND
================================= */

.property-not-found i {
    color: #ccc;
}

/* ===============================
   WHATSAPP FLOAT BUTTON
================================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

@media (max-width: 992px) {
    #propertyCarousel img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    #propertyCarousel img {
        height: 300px;
    }

    .property-description {
        padding: 20px;
    }

    .property-details {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    #propertyCarousel img {
        height: 240px;
    }

    .video-tour {
        padding: 25px;
    }
}