/* ==========================================================================
   AUBAINE IVOIRE - GLOBAL PREMIUM STYLESHEET
   ========================================================================== */

:root {
    /* Refined Color Palette */
    --primary: #0F5A3E;            /* Prestige Forest Green */
    --primary-dark: #0A3C29;       /* Deep Forest Green */
    --primary-light: #1C8E64;      /* Lighter Emerald */
    --accent: #D4AF37;             /* Elegant Gold */
    --accent-light: #F3E5AB;       /* Light Champagne Gold */
    --accent-dark: #AA820A;        /* Dark Antique Gold */
    --dark: #0B0F19;               /* Deep Midnight Black */
    --dark-2: #161D2B;             /* Charcoal Slate */
    --cream: #FAF9F6;              /* Warm Alabaster/White */
    --cream-2: #F3F1E9;            /* Slightly darker rich cream */
    --success: #10B981;            /* Mint Emerald Success */
    --danger: #EF4444;             /* Coral Red Danger */
    --warning: #F59E0B;            /* Amber Warning */
    --info: #3B82F6;               /* Classic Blue Info */
    
    /* Grays */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Typographies */
    --font-title: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

    /* Shadows (Multi-layered, Ambient & Premium) */
    --shadow-sm: 0 4px 12px rgba(15, 90, 62, 0.03);
    --shadow-md: 0 10px 30px rgba(15, 90, 62, 0.05), 0 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 50px rgba(15, 90, 62, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 30px 80px rgba(15, 90, 62, 0.12), 0 10px 25px rgba(0, 0, 0, 0.04);
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    
    /* Transitions */
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== GLOBAL SCROLLBARS ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 4px;
}
::-webkit-scrollbar-track:hover {
    background: var(--cream-2);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent-dark) 100%);
    border-radius: 4px;
    border: 2px solid var(--cream);
    transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent) 100%);
}

/* Firefox scrollbars */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--cream);
    scroll-behavior: smooth;
}

/* ===== SHIMMER & LUXURY EFFECTS ===== */
.shimmer-gold {
    position: relative;
    overflow: hidden;
}
.shimmer-gold::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 30%; height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmerEffect 4s infinite linear;
}

@keyframes shimmerEffect {
    0% { left: -60%; }
    40%, 100% { left: 150%; }
}

/* ===== GLASSMORPHISM CARD ===== */
.glass-premium {
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 90, 62, 0.08);
    box-shadow: var(--shadow-md);
}

.glass-premium-dark {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
}

/* ===== BUTTONS PREMIUM ===== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-title);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
}
.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 90, 62, 0.25);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}
.btn-premium-primary:active {
    transform: translateY(-1px);
}

.btn-premium-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--dark) !important;
}
.btn-premium-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}
.btn-premium-accent:active {
    transform: translateY(-1px);
}

.btn-premium-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}
.btn-premium-outline:hover {
    background: rgba(15, 90, 62, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* ===== CARDS PREMIUM ===== */
.card-premium {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 90, 62, 0.04);
    transition: var(--transition-slow);
    overflow: hidden;
}
.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(15, 90, 62, 0.1);
}

/* ===== BADGES PREMIUM ===== */
.badge-premium {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-title);
}

.badge-premium-primary {
    background: rgba(15, 90, 62, 0.08);
    color: var(--primary);
    border: 1px solid rgba(15, 90, 62, 0.15);
}

.badge-premium-accent {
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(212, 175, 55, 0.15) 100%);
    color: var(--accent-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-premium-success {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* ===== EXTRA ANIMATIONS ===== */
@keyframes fadeInUpPremium {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInPremium {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in-up {
    animation: fadeInUpPremium 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.animate-fade-in {
    animation: fadeInPremium 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ===== FILTER TABS & SEARCH MODULE ===== */
.filter-section {
    padding: 35px 0 20px;
    background: var(--cream);
    border-bottom: 1px solid rgba(15, 90, 62, 0.05);
}
.filter-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.filter-tabs-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.filter-tab-title {
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-right: 12px;
}
.filter-tab-btn {
    font-family: var(--font-title);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    background: white;
    color: var(--text-secondary);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}
.filter-tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-1px);
}
.filter-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(15, 90, 62, 0.15);
}
.filter-search-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
}
.filter-search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 14px;
}
.filter-search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-family: var(--font-body);
    outline: none;
    background: white;
    transition: var(--transition);
}
.filter-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 90, 62, 0.06);
}
/* Filtering dynamic transitions */
.promo-card, .offer-card, .why-card, .why-icon, .process-step, .card-premium, .doc-item-row {
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-hidden {
    opacity: 0 !important;
    transform: scale(0.9) translateY(15px) !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* ===== CONVERSION ANIMATIONS & CTAS EFFECTS ===== */
@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes luxuryShimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

@keyframes pulseGlowGreen {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulseGlowGold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8); }
    70% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes softShake {
    0%, 100% { transform: rotate(0deg); }
    15%, 45%, 75% { transform: rotate(-4deg); }
    30%, 60%, 90% { transform: rotate(4deg); }
}

.btn-details, .btn-view-offer, .btn-view, .btn-hero-primary, .btn-nav-cta {
    animation: pulseGold 2.2s infinite cubic-bezier(0.25, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.btn-details::after, .btn-view-offer::after, .btn-view::after, .btn-hero-primary::after, .btn-nav-cta::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 40%; height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: luxuryShimmer 4.5s infinite linear;
}

.btn-whatsapp:hover i, .btn-whatsapp-offer:hover i, .whatsapp-float:hover i, .btn-nav-cta:hover i, .btn-hero-secondary:hover i {
    animation: softShake 0.6s ease-in-out;
}

.badge-en-cours::before, .badge-glow-green::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background-color: var(--success);
    border-radius: 50%;
    margin-right: 6px;
    animation: pulseGlowGreen 1.6s infinite ease-in-out;
    vertical-align: middle;
}
.badge-en-cours i {
    display: none !important;
}

.section-tag::before, .badge-glow-gold::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 6px;
    animation: pulseGlowGold 1.6s infinite ease-in-out;
    vertical-align: middle;
}
.section-tag i {
    display: none !important;
}

/* ==========================================================================
   BUTTON OVERRIDES - FF7F00 ORANGE THEME FOR FRONTEND BUTTONS
   ========================================================================== */
.btn-premium-primary, 
.btn-premium-accent, 
.btn-hero-primary, 
.btn-nav-cta, 
.btn-call,
.btn-search, 
.btn-view,
.map-city-btn.active {
    background: linear-gradient(135deg, #FF7F00 0%, #CC6600 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-premium-primary:hover, 
.btn-premium-accent:hover, 
.btn-hero-primary:hover, 
.btn-nav-cta:hover, 
.btn-call:hover,
.btn-search:hover, 
.btn-view:hover {
    background: linear-gradient(135deg, #FF9933 0%, #FF7F00 100%) !important;
    box-shadow: 0 8px 25px rgba(255, 127, 0, 0.35) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   RESERVATION BUTTONS - GREEN GRADIENT THEME
   ========================================================================== */
.btn-details, 
.btn-view-offer,
.chat-toggle-btn,
.chat-send-btn {
    background: linear-gradient(135deg, #1C8E64 0%, #0F5A3E 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-details:hover, 
.btn-view-offer:hover,
.chat-toggle-btn:hover,
.chat-send-btn:hover {
    background: linear-gradient(135deg, #23C189 0%, #1C8E64 100%) !important;
    box-shadow: 0 8px 25px rgba(28, 142, 100, 0.35) !important;
    transform: translateY(-3px) !important;
}

.btn-premium-outline,
.btn-hero-secondary {
    border-color: #FF7F00 !important;
    color: #FF7F00 !important;
}
.btn-premium-outline:hover,
.btn-hero-secondary:hover {
    background: rgba(255, 127, 0, 0.05) !important;
    color: #FF7F00 !important;
    border-color: #FF7F00 !important;
}

.filter-tab-btn.active {
    background: linear-gradient(135deg, #FF7F00 0%, #CC6600 100%) !important;
    color: white !important;
    border-color: #FF7F00 !important;
    box-shadow: 0 4px 15px rgba(255, 127, 0, 0.2) !important;
}

/* ==========================================================================
   FLOATING WHATSAPP & INTERACTIVE CHATBOT STYLES
   ========================================================================== */
.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px; width: 58px; height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: var(--transition); z-index: 998; animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
.whatsapp-float::after {
    content: 'Discuter'; position: absolute; left: calc(100% + 12px); top: 50%;
    transform: translateY(-50%); background: var(--dark); color: white;
    padding: 8px 14px; border-radius: var(--radius-sm); font-size: 12px;
    white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition); font-weight: 600;
}
.whatsapp-float:hover::after { opacity: 1; visibility: visible; }

/* ===== INSTANT CHAT DIALOG ===== */
.chat-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.chat-dialog-overlay.open {
    opacity: 1;
    visibility: visible;
}

.chat-dialog {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 420px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2001;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 600px;
}
.chat-dialog.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-dialog-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}
.chat-dialog-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.chat-dialog-info { flex: 1; }
.chat-dialog-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}
.chat-dialog-info p {
    font-size: 12px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 6px;
}
.chat-dialog-info .status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
.chat-dialog-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.chat-dialog-close:hover { background: rgba(255,255,255,0.15); }

.chat-dialog-body {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
    background: var(--cream);
    min-height: 280px;
}
.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: fadeInUp 0.4s ease;
}
.chat-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    flex-shrink: 0;
}
.chat-message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
    max-width: 280px;
}
.chat-message-bubble p {
    font-size: 13.5px;
    color: var(--text-primary);
    line-height: 1.6;
}
.chat-message-bubble .time {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
}
.chat-message.user {
    flex-direction: row-reverse;
}
.chat-message.user .chat-message-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 4px;
}
.chat-message.user .chat-message-bubble p {
    color: white;
}
.chat-message.user .chat-message-bubble .time {
    color: rgba(255,255,255,0.7);
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px 16px;
    background: var(--cream);
}
.chat-quick-btn {
    background: white;
    border: 1px solid var(--warm-gray);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.chat-quick-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.chat-dialog-footer {
    padding: 14px 20px;
    background: white;
    border-top: 1px solid var(--warm-gray);
    display: flex;
    gap: 10px;
    align-items: center;
}
.chat-input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--warm-gray);
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    transition: var(--transition);
    background: var(--cream);
}
.chat-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(26,122,26,0.08);
}
.chat-input::placeholder { color: var(--text-muted); }
.chat-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C8E64, #0F5A3E) !important;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(28,142,100,0.4);
}
.chat-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 8px;
}
.chat-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* Chat toggle button (floating) */
.chat-toggle-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1999;
    box-shadow: 0 6px 25px rgba(26,122,26,0.35);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(26,122,26,0.45);
}
.chat-toggle-btn .chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}
.chat-toggle-btn.hidden {
    transform: scale(0);
    opacity: 0;
}

/* ==========================================================================
   PREMIUM NAVIGATION HEADER & TOP BAR STYLES
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, #071D14 0%, #0B2B1E 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 0;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.top-bar .container {
    max-width: 1320px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center;
}
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar-left span { display: flex; align-items: center; gap: 8px; transition: var(--transition); cursor: pointer; }
.top-bar-left span:hover { color: var(--accent-light); }
.top-bar-left i { color: var(--accent); font-size: 12px; }
.top-bar-right { display: flex; align-items: center; gap: 6px; }
.top-bar-right a {
    color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 13px;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06); transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-right a:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-2px); }

.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    position: sticky; top: 0; z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid rgba(15, 90, 62, 0.08);
}
.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(15, 90, 62, 0.06);
    border-bottom-color: rgba(15, 90, 62, 0.05);
    background: rgba(255, 255, 255, 0.96);
}
.navbar .container {
    max-width: 1320px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center; height: 82px;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; transition: var(--transition); }
.logo:hover { transform: translateY(-1px); }
.logo-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    position: relative; box-shadow: 0 6px 20px rgba(15, 90, 62, 0.15);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.25);
}
.logo:hover .logo-icon { box-shadow: 0 8px 24px rgba(15, 90, 62, 0.25); transform: rotate(3deg) scale(1.05); }
.logo-icon i { color: white; font-size: 22px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-family: var(--font-title); font-size: 24px; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -0.5px; }
.logo-text .brand span { color: var(--accent); }
.logo-text .tagline { font-family: var(--font-body); font-size: 10px; color: var(--text-muted); margin-top: 4px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; list-style: none; gap: 6px; height: 100%; align-items: center; }
.nav-links > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-links > li > a {
    text-decoration: none; color: var(--text-secondary); font-size: 14.5px; font-weight: 600;
    font-family: var(--font-title);
    transition: var(--transition); padding: 0 18px; height: 100%;
    display: flex; align-items: center; gap: 6px; position: relative;
}
.nav-links > li > a::after {
    content: ''; position: absolute; bottom: 22px; left: 50%;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 30px; transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--primary); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 20px; }
.nav-links > li > a i { font-size: 10px; transition: var(--transition); opacity: 0.5; }
.nav-links > li:hover > a i { transform: rotate(180deg); opacity: 1; color: var(--accent); }

/* SUBMENU */
.submenu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(255, 255, 255, 0.98); min-width: 290px; border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); opacity: 0; visibility: hidden;
    transition: var(--transition); list-style: none; padding: 14px 0;
    z-index: 1000; border: 1px solid rgba(15, 90, 62, 0.05);
    backdrop-filter: blur(10px);
    border-top: 3px solid var(--primary);
}
.submenu::before {
    content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px; background: white; border-top: 1px solid rgba(15, 90, 62, 0.05);
    border-left: 1px solid rgba(15, 90, 62, 0.05);
}
.nav-links > li:hover .submenu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.submenu li a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 22px; color: var(--text-secondary); text-decoration: none;
    font-size: 14px; font-weight: 500; transition: var(--transition);
    border-left: 3px solid transparent; margin: 0 10px;
    border-radius: var(--radius-sm);
}
.submenu li a:hover {
    background: rgba(28, 142, 100, 0.04); color: var(--primary); border-left-color: var(--accent); padding-left: 26px;
}
.submenu li a i { font-size: 14px; width: 20px; text-align: center; color: var(--primary); opacity: 0.7; transition: var(--transition); }
.submenu li a:hover i { opacity: 1; color: var(--accent); }
.submenu-divider { height: 1px; background: var(--warm-gray); margin: 10px 22px; opacity: 0.6; }
.submenu-header { padding: 6px 22px; font-size: 10px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

.btn-nav-cta, .btn-call {
    font-family: var(--font-title);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white; padding: 12px 26px; border-radius: var(--radius-sm);
    text-decoration: none; font-size: 14px; font-weight: 700;
    display: flex; align-items: center; gap: 8px; transition: var(--transition);
    border: none; cursor: pointer; letter-spacing: 0.3px;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25); position: relative; overflow: hidden;
}
@keyframes shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}
.btn-nav-cta::before, .btn-call::before {
    content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shimmer 4.5s infinite;
}
.btn-nav-cta:hover, .btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35); }
.btn-nav-cta i, .btn-call i { animation: pulse 2.5s infinite; }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn { display: none; background: none; border: none; font-size: 22px; color: var(--primary); cursor: pointer; padding: 8px; }

/* ===== GLOBAL SHARED FOOTER ===== */
.footer { 
    background: linear-gradient(180deg, var(--dark) 0%, #080d18 100%); 
    color: white; 
    padding: 80px 30px 30px; 
}
.footer .container { 
    max-width: 1320px; 
    margin: 0 auto; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr; 
    gap: 50px; 
    margin-bottom: 50px; 
}
.footer-brand .logo-footer { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 20px; 
}
.footer-brand p { 
    color: rgba(255,255,255,0.55); 
    font-size: 14.5px; 
    line-height: 1.8; 
    margin-bottom: 24px; 
}
.footer-social { 
    display: flex; 
    gap: 10px; 
}
.footer-social a {
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.06);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: rgba(255,255,255,0.7);
    text-decoration: none; 
    transition: var(--transition); 
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { 
    background: var(--accent); 
    color: white; 
    border-color: var(--accent); 
    transform: translateY(-3px); 
}
.footer-links-col h3 { 
    font-family: var(--font-title); 
    font-size: 16px; 
    font-weight: 700; 
    margin-bottom: 24px; 
    color: white; 
    letter-spacing: 0.5px; 
}
.footer-links-col ul { 
    list-style: none; 
}
.footer-links-col ul li { 
    margin-bottom: 12px; 
}
.footer-links-col ul li a { 
    color: rgba(255,255,255,0.55); 
    text-decoration: none; 
    font-size: 14.5px; 
    transition: var(--transition); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 500; 
}
.footer-links-col ul li a:hover { 
    color: var(--accent-light); 
    padding-left: 6px; 
}
.footer-contact-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 14px; 
    margin-bottom: 16px; 
    color: rgba(255,255,255,0.55); 
    font-size: 14.5px; 
    font-weight: 500; 
}
.footer-contact-item i { 
    color: var(--accent); 
    margin-top: 4px; 
    font-size: 14px; 
    width: 16px; 
}
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.06); 
    padding-top: 28px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 13px; 
    color: rgba(255,255,255,0.35); 
}
.footer-bottom a { 
    color: rgba(255,255,255,0.35); 
    text-decoration: none; 
    transition: var(--transition); 
}
.footer-bottom a:hover { 
    color: var(--accent-light); 
}


/* ===== GLOBAL PROMO CARD ===== */
.promo-card {
    background: white; 
    border-radius: var(--radius-lg); 
    overflow: hidden;
    box-shadow: var(--shadow-sm); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; 
    border: 1px solid var(--gray-200); 
    position: relative;
}
.promo-card::before {
    content: ''; 
    position: absolute; 
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent)); 
    transform: scaleX(0); 
    transition: var(--transition); 
    z-index: 2;
}
.promo-card:hover { 
    transform: translateY(-8px) scale(1.02) !important; 
    box-shadow: 0 20px 40px rgba(15, 90, 62, 0.08) !important;
    border-color: rgba(15, 90, 62, 0.1) !important;
}
.promo-card:hover::before { 
    transform: scaleX(1); 
}
.promo-image { 
    position: relative; 
    height: 230px; 
    overflow: hidden; 
    background: var(--gray-900); 
}
.promo-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition-slow); 
}
.promo-card:hover .promo-image img { 
    transform: scale(1.08); 
}
.promo-badge {
    position: absolute; 
    top: 14px; 
    left: 14px; 
    padding: 6px 14px; 
    border-radius: 50px;
    font-size: 10px; 
    font-weight: 700; 
    text-transform: uppercase; 
    display: flex; 
    align-items: center; 
    gap: 5px;
    letter-spacing: 0.5px; 
    z-index: 3; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.badge-en-cours { 
    background: linear-gradient(135deg, var(--danger), #c0392b); 
    color: white; 
}
.badge-nouveau { 
    background: linear-gradient(135deg, var(--success), #1e8449); 
    color: white; 
}
.badge-promo { 
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)); 
    color: white; 
}
.promo-content { 
    padding: 20px; 
}
.promo-location { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    color: var(--primary); 
    font-size: 12px; 
    margin-bottom: 6px; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}
.promo-location i { 
    color: var(--accent); 
    font-size: 12px; 
}
.promo-title { 
    font-family: var(--font-title); 
    font-size: 18px; 
    font-weight: 800; 
    color: var(--gray-900); 
    margin-bottom: 6px; 
    line-height: 1.35; 
    transition: var(--transition); 
}
.promo-card:hover .promo-title { 
    color: var(--primary); 
}
.promo-subtitle-tag { 
    font-size: 11px; 
    font-weight: 600; 
    color: var(--gray-500); 
    margin-bottom: 12px; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.promo-description { 
    font-size: 13px; 
    color: var(--gray-600); 
    line-height: 1.55; 
    margin-bottom: 16px; 
}
.promo-meta {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 16px;
    font-size: 12px; 
    color: var(--gray-500); 
    padding-top: 12px; 
    border-top: 1px solid var(--gray-200);
}
.promo-meta span { 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}

/* ===== GLOBAL SHARED MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: white; z-index: 1001; box-shadow: var(--shadow-xl); transition: var(--transition-slow); padding: 28px; overflow-y: auto; }
.mobile-menu.open { right: 0; }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1000; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.mobile-menu-overlay.open { display: block; opacity: 1; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--warm-gray); }
.mobile-menu-close { background: none; border: none; font-size: 22px; color: var(--text-muted); cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); }
.mobile-menu-close:hover { background: var(--cream-2); color: var(--danger); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { margin-bottom: 2px; }
.mobile-nav-links li a { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; color: var(--text-secondary); text-decoration: none; font-size: 15px; font-weight: 600; border-radius: var(--radius-sm); transition: var(--transition); }
.mobile-nav-links li a:hover { background: var(--cream-2); color: var(--primary); }
.mobile-nav-links li a i { font-size: 12px; transition: var(--transition); color: var(--text-muted); }
.mobile-nav-links li a.active { color: var(--primary); background: rgba(26,122,26,0.04); }
.mobile-submenu { list-style: none; padding-left: 16px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.mobile-submenu.open { max-height: 500px; }
.mobile-submenu li a { padding: 11px 16px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.mobile-submenu li a:hover { color: var(--primary); }

