/* Property Map Section Styles */
.property-map-section {
    position: relative;
    padding: 110px 0px 120px 0px;
    background: #f8f9fa;
}

.property-map-section .sec-title {
    margin-bottom: 70px;
}

.property-map-section .sec-title h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.property-map-section .sec-title p {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 28px;
    max-width: 600px;
    margin: 0 auto;
}

/* Map Container */
.map-container {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    overflow: hidden;
}

/* Map Column */
.map-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.property-map {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    border: 1px solid #e1e8ed;
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-control-btn:hover {
    background: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.map-control-btn:active {
    transform: translateY(0);
}

/* Sidebar Styles */
.map-sidebar {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e1e8ed;
    height: fit-content;
}

.sidebar-title h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 10px;
}

/* Property Stats */
.property-stats {
    margin-bottom: 35px;
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    margin-right: 15px;
}

.stat-content h5 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Property Info */
.property-info {
    margin-bottom: 35px;
}

.property-info h5 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
    line-height: 1.5;
}

.info-text i {
    color: #ff6600;
    width: 16px;
    text-align: center;
}

/* Custom Map Info Window Styles */
.custom-info-window {
    max-width: 300px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.info-window-content {
    padding: 0;
}

.info-window-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.info-window-details {
    padding: 15px;
}

.info-window-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-window-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 8px;
}

.info-window-type {
    background: #f8f9fa;
    color: #6c757d;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.info-window-features {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #7f8c8d;
}

.info-window-actions {
    display: flex;
    gap: 8px;
}

.info-window-btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6600;
    color: #ffffff;
    border: 1px solid #ff6600;
}

.btn-primary:hover {
    background: #e55a00;
    border-color: #e55a00;
}

.btn-outline {
    background: transparent;
    color: #ff6600;
    border: 1px solid #ff6600;
}

.btn-outline:hover {
    background: #ff6600;
    color: #ffffff;
}

/* Status Badge */
.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    background: #ff6600;
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .property-map-section {
        padding: 80px 0px 90px 0px;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .property-map {
        height: 450px;
        margin-bottom: 30px;
    }
    
    .map-sidebar {
        padding: 20px;
    }
    
    .map-controls {
        top: 10px;
        right: 10px;
    }
    
    .map-control-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .property-map-section {
        padding: 60px 0px 70px 0px;
    }
    
    .property-map-section .sec-title {
        margin-bottom: 50px;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .property-map {
        height: 350px;
    }
    
    .search-filters {
        gap: 8px;
    }
    
    .stat-item {
        padding: 12px 0;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stat-content h5 {
        font-size: 20px;
    }
}

@media (max-width: 479px) {
    .property-map {
        height: 300px;
    }
    
    .map-sidebar {
        padding: 15px;
    }
    
    .custom-info-window {
        max-width: 250px;
    }
    
    .info-window-details {
        padding: 12px;
    }
} 