:root {
    --brand-primary: #0d6efd;
    --brand-dark: #1a1a2e;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #222;
}

/* --- Bouton WhatsApp flottant --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* --- Hero / Bannière --- */
.hero-banner {
    background: linear-gradient(135deg, rgba(13,110,253,0.92), rgba(26,26,46,0.92)),
                var(--brand-dark);
    color: #fff;
    padding: 90px 0 110px;
}
.search-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

/* --- Cartes --- */
.card-listing {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}
.card-listing:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.card-listing img {
    height: 210px;
    object-fit: cover;
    width: 100%;
}
.badge-status-available { background-color: #198754; }
.badge-status-rented { background-color: #6c757d; }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
}
.footer-link:hover { color: #fff; }

.section-title {
    font-weight: 700;
    position: relative;
    margin-bottom: 2rem;
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand-primary);
    margin-top: 10px;
    border-radius: 2px;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 8px;
    height: 90px;
    object-fit: cover;
    transition: opacity 0.2s;
}
.gallery-thumb:hover { opacity: 0.8; }

.testimonial-card { border-radius: 14px; }

@media (max-width: 767px) {
    .hero-banner { padding: 60px 0 90px; }
}
