:root {
    --primary-orange: #FF6B35;
    --primary-blue: #004E89;
    --light-bg: #F7F9FC;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    color: white;
    padding: 100px 0;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-img-container {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img {
    transform: scale(1.05);
}
        
.badge-premium {
    background-color: var(--primary-orange);
    color: white;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.map-container {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.price-tag {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-primary-custom {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-primary-custom:hover {
    background-color: #e05a2b;
    border-color: #e05a2b;
}

.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 50px 0 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.virtual-tour-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

@media (max-width: 768px) {
    .property-card {
        flex-direction: column;
    }
    
    .property-img-container {
        height: 250px;
    }
}