/* ==========================================
   VARIABLES, POLICES ET DÉFINITIONS LUXE
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
    --color-brun: #4A1C00;
    --color-brun-dark: #1a0a00;
    --color-or: #C8860A;
    --color-creme: #f5f0eb;
    --color-blanc: #ffffff;
    --color-texte: #2d2d2d;
    
    --shadow-gold: 0 12px 30px rgba(200, 134, 10, 0.25);
    --shadow-base: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --font-title: 'Playfair Display', serif;
    --font-primary: 'Inter', sans-serif;
    --font-titre: 'Playfair Display', serif; /* Compatibilité globale */
    --font-texte: 'Inter', sans-serif; /* Compatibilité globale */
}

/* ==========================================
   RESET COMPLET
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scrollbar-color: var(--color-or) var(--color-brun-dark);
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--color-texte);
    background-color: var(--color-creme);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    margin: 0;
    padding: 0;
    margin-top: 0;
    padding-top: 0;
}

header, .header, #header, nav, .navbar {
    margin-top: 0 !important;
    padding-top: 0;
    top: 0 !important;
}

/* Transition de page */
body.page-exit {
    opacity: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titre);
    font-weight: 700;
    color: var(--color-brun);
}

/* ==========================================
   CAROUSEL HERO INDEX (PLEIN ÉCRAN)
   ========================================== */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 90vh; /* Requis: 90vh Desktop */
    overflow: hidden;
    margin-top: -100px; /* Contourne le body padding global */
}
@media (max-width: 768px) {
    .hero-carousel { height: 60vh; }
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.carousel-slide.active { opacity: 1; z-index: 2; }

.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.carousel-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.50);
}

.carousel-content {
    position: absolute;
    bottom: 10%; left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 900px;
    text-align: center;
    color: var(--color-blanc);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    opacity: 0; transition: all 0.6s ease;
}
.carousel-slide.active .carousel-content {
    animation: fadeInUp 0.8s forwards 0.3s;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translate(-50%, 20px); }
    100% { opacity: 1; transform: translate(-50%, 0); }
}

.slide-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-blanc);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
@media (max-width: 768px) { .slide-title { font-size: 1.6rem; margin-bottom: 0.3rem;} }

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--color-or); /* Sous titre OR */
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
@media (max-width: 768px) { .slide-subtitle { font-size: 1rem; margin-bottom: 1.5rem; } }

.slide-cta {
    display: inline-block;
    background: var(--color-or);
    color: var(--color-blanc);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease;
}
.slide-cta:hover { background: var(--color-blanc); color: var(--color-brun-dark); }

/* Contrôles du Carousel */
.carousel-arrows {
    position: absolute;
    top: 50%; left: 0; width: 100%;
    display: flex; justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.carousel-arrow {
    background: rgba(0,0,0,0.3);
    color: var(--color-or);
    border: none;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition-base);
    display: flex; align-items: center; justify-content: center;
}
.carousel-arrow:hover { background: rgba(0,0,0,0.8); color: white; }

.carousel-dots {
    position: absolute;
    bottom: 2.5%; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px;
    z-index: 10;
}
.carousel-dot {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}
.carousel-dot.active, .carousel-dot:hover { background: var(--color-or); transform: scale(1.2); }

/* ==========================================
   CARDS APPARTEMENTS (INDEX) - ACTIONS
   ========================================== */
.card-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
}
.card-buttons a,
.card-buttons button {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    text-align: center;
    padding: 10px 4px;
    box-sizing: border-box;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    height: 48px;
    transition: var(--transition-base);
    align-items: center;
    justify-content: center;
    display: flex;
}
.btn-apt-details {
    border: 2px solid #C8860A;
    color: #C8860A;
    background: transparent;
}
.btn-apt-details:hover {
    background: #C8860A; color: white;
}
.btn-apt-reserver {
    background: #4A1C00;
    color: white;
    border: 2px solid #4A1C00;
}
.btn-apt-reserver:hover {
    background: #C8860A; border-color: #C8860A;
}

/* ==========================================
   HERO PAGES SECONDAIRES GLOBAL
   ========================================== */
.page-hero {
    background-image: url('/images/slide4.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(74,28,0,0.65);
    z-index: 1;
}
.page-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 1rem;
}
.page-hero .hero-badge {
    color: var(--color-or); font-size: 0.95rem; letter-spacing: 4px;
    text-transform: uppercase; margin-bottom: 1rem; font-weight: 700;
}
.page-hero .hero-title {
    color: #ffffff; font-family: var(--font-title); font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem;
}
.page-hero .hero-subtitle {
    color: var(--color-creme); font-size: 1.15rem; max-width: 600px; font-weight: 400; margin: 0 auto;
}
@media (max-width: 768px) {
    .page-hero { height: 200px; }
    .page-hero .hero-title { font-size: 1.4rem; }
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-brun-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--color-or);
    border-radius: 5px;
}

/* ==========================================
   LOADER INITIAL ET SPINNER
   ========================================== */
#page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-brun-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(200, 134, 10, 0.2);
    border-top-color: var(--color-or);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================
   CLASSES UTILITAIRES
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--color-brun);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--color-or);
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: var(--font-texte);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.separator-gold {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-or), transparent);
    margin: 0 auto 3.5rem auto;
}

/* ==========================================
   BOUTONS LUXE (SHIMMER EFFECT)
   ========================================== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-brun);
    color: var(--color-blanc);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-or);
    border: 2px solid var(--color-or);
}

/* Effet Shimmer (Survol doré lumineux) */
.btn-primary::after, .btn-secondary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 134, 10, 0.5), transparent);
    transform: skewX(-25deg);
    transition: 0.6s ease;
}

.btn-primary:hover::after, .btn-secondary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    background-color: var(--color-or);
    color: var(--color-blanc);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background-color: var(--color-or);
    color: var(--color-blanc);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--color-blanc);
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-base);
}

.btn-whatsapp:hover {
    background-color: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   BADGES (STATUTS)
   ========================================== */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-blanc);
    letter-spacing: 2px;
}
.badge-libre { background-color: #28a745; }
.badge-reserve { background-color: var(--color-or); }
.badge-maintenance { background-color: #dc3545; }

/* ==========================================
   HOVER CARDS ÉLÉGANCE
   ========================================== */
.card-hover {
    background-color: var(--color-blanc);
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
    border-top: 4px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-top-color: var(--color-or);
}

/* ==========================================
   ANIMATIONS REVEAL (INTERSECTION OBSERVER)
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   EN-TÊTE / TOP BAR ET HEADER
   ========================================== */
.top-bar {
    background-color: var(--color-brun-dark);
    color: var(--color-blanc);
    padding: 0.4rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-wa {
    display: none;
}

.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(74, 28, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.main-header.solid {
    background: #4A1C00 !important;
}

.main-header.scrolled {
    background: rgba(74, 28, 0, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.nav-logo {
    height: 48px;
    max-height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 4px 8px;
    border: 2px solid #C8860A;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Navigation Bureau */
.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-blanc);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background-color: var(--color-or);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--color-or);
}

/* BOUTON RÉSERVER DANS LA NAVIGATION */
.nav-links a.nav-btn-reserver {
    background-color: #C8860A !important;
    color: #FFFFFF !important;
    padding: 8px 22px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.8px !important;
    border: 2px solid #C8860A !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.nav-links a.nav-btn-reserver::after {
    display: none !important;
}

.nav-links a.nav-btn-reserver:hover {
    background-color: #FFFFFF !important;
    color: #4A1C00 !important;
    border-color: #FFFFFF !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(200,134,10,0.5) !important;
}

.nav-links a.nav-btn-reserver.nav-active {
    background-color: #FFFFFF !important;
    color: #4A1C00 !important;
    border-color: #C8860A !important;
}

/* Sélecteur FR/EN */
.lang-selector {
    color: var(--color-blanc);
    font-size: 0.8rem;
    margin-left: 2rem;
    letter-spacing: 1px;
}

.lang-selector a.nav-active {
    color: var(--color-or);
    font-weight: 700;
}

/* Menu Mobile Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 32px;
    height: 2px;
    background-color: var(--color-or);
    transition: 0.4s ease;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Overlay Navigation Mobile */
.mobile-nav {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(26, 10, 0, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: var(--color-blanc);
    font-family: var(--font-titre);
    font-size: 2.2rem;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.mobile-nav a.nav-active {
    color: var(--color-or);
}

/* ==========================================
   PIED DE PAGE (FOOTER LUXE)
   ========================================== */
.footer-main {
    background-color: var(--color-brun-dark);
    color: #999;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--color-or);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: var(--font-titre);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 1px;
    background-color: var(--color-or);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--color-blanc);
    margin-bottom: 1.5rem;
    font-family: var(--font-titre);
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a:hover {
    color: var(--color-or);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(200, 134, 10, 0.4);
    color: var(--color-or);
    transition: var(--transition-base);
}

.social-icons a:hover {
    background-color: var(--color-or);
    color: var(--color-brun-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================
   BOUTON FLOTTANT WHATSAPP TOUT LE SITE
   ========================================== */
.wa-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px; height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 9998;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulseWA 2s infinite;
}

.wa-floating:hover {
    transform: scale(1.15) rotate(-10deg);
    animation: none;
}

@keyframes pulseWA {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================
   MEDIA QUERIES DESKTOP
   ========================================== */
@media (min-width: 900px) {
    .top-bar-wa { display: block; }
    .nav-links { display: flex; }
    .hamburger { display: none; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .section-title { font-size: 3.5rem; }
}

.footer-logo {
    height: 80px;
    width: auto;
    background: white;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 12px;
    display: block;
}

/* ==========================================
   CONVERSION / POURQUOI NOUS CHOISIR (INDEX)
   ========================================== */
.conv-section {
    padding: 6rem 0;
    background: var(--color-blanc);
}
.conv-title {
    text-align: center;
    color: #4A1C00;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 32px;
    font-family: var(--font-title);
    position: relative;
}
.conv-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C8860A;
    margin: 12px auto 0;
}
.conv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .conv-grid {
        grid-template-columns: 1fr;
    }
}
.conv-card {
    background: #ffffff;
    border-left: 4px solid #C8860A;
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--transition-base);
}
.conv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-left-width: 6px;
}
.conv-card i {
    font-size: 2rem;
    color: #C8860A;
    margin-bottom: 12px;
}
.conv-card h3 {
    color: #4A1C00;
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: var(--font-title);
}
.conv-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.conv-cta-container {
    text-align: center;
    margin-top: 32px;
}
.conv-cta-btn {
    display: inline-block;
    background: #4A1C00;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 4px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.conv-cta-btn:hover {
    background: #C8860A;
    color: #ffffff;
}

/* ==========================================
   ANIMATIONS & EFFETS CTA / CARDS
   ========================================== */

/* NOUVEL EFFET CLIGNOTEMENT UP */
@keyframes pulse-up {
    0% {
      transform: translateY(0px);
      box-shadow: 0 4px 15px rgba(200,134,10,0.3);
    }
    50% {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(200,134,10,0.6),
                  0 0 0 3px rgba(200,134,10,0.2);
    }
    100% {
      transform: translateY(0px);
      box-shadow: 0 4px 15px rgba(200,134,10,0.3);
    }
}

/* Boutons fond #4A1C00 */
.btn-apt-reserver, .slide-cta, .btn-primary {
    border: 2px solid #C8860A !important;
    color: #FFFFFF !important;
    background-color: #4A1C00 !important;
    animation: pulse-up 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Boutons fond #C8860A (cards conversion etc) */
.conv-cta-btn {
    border: 2px solid #FFD700 !important;
    color: #FFFFFF !important;
    background-color: #C8860A !important;
    animation: pulse-up 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Bouton nav header */
.nav-links a.nav-btn-reserver {
    border: 2px solid #FFD700 !important;
    color: #FFFFFF !important;
    background-color: #C8860A !important;
    animation: pulse-up 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Hover: figer en position haute avec ombre renforcée */
.btn-apt-reserver:hover, .conv-cta-btn:hover, .slide-cta:hover, .btn-primary:hover {
    animation-play-state: paused;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(200,134,10,0.7),
                0 0 0 4px rgba(200,134,10,0.3) !important;
}

/* Hover nav header: modifie le fond/texte en inversion */
.nav-links a.nav-btn-reserver:hover {
    animation-play-state: paused;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(200,134,10,0.7),
                0 0 0 4px rgba(200,134,10,0.3) !important;
    background-color: #FFFFFF !important;
    color: #4A1C00 !important;
}

/* EFFETS SURVOL CARDS APPARTEMENTS */
.card-hover, .apt-card-inline {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  border-left: 3px solid transparent !important;
  position: relative;
}

.card-hover:hover, .apt-card-inline:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(74, 28, 0, 0.2) !important;
  border-left: 3px solid #C8860A !important;
}

/* Pseudo-élément doré */
.card-hover::before, .apt-card-inline::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #4A1C00, #C8860A, #FFD700, #C8860A, #4A1C00);
  background-size: 200% auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: shimmer 2s linear infinite;
  z-index: 10;
}

.card-hover:hover::before, .apt-card-inline:hover::before {
  opacity: 1;
}

/* Zoom Image */
.apt-img-cont, .apt-img, .map-wrapper {
  overflow: hidden;
}
.apt-img-cont .apt-img-int, .apt-img img, .apt-img-cont img {
  transition: transform 0.4s ease;
}
.card-hover:hover .apt-img-int, .apt-card-inline:hover .apt-img-int,
.card-hover:hover .apt-img img, .apt-card-inline:hover .apt-img img,
.card-hover:hover .apt-img-cont img, .apt-card-inline:hover .apt-img-cont img {
  transform: scale(1.05);
}

/* Texte titre card */
.card-hover h2, .card-hover h3, .apt-card-inline h2, .apt-card-inline h3 {
  transition: color 0.3s ease;
}
.card-hover:hover h2, .card-hover:hover h3, .apt-card-inline:hover h2, .apt-card-inline:hover h3 {
  color: #C8860A !important;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================
   AVANTAGES LOCALISATION
   ========================================== */
.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.avantage-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255,255,255,0.07);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(200,134,10,0.3);
}

.avantage-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.avantage-item h4 {
  color: var(--color-or);
  font-size: 1rem;
  margin-bottom: 6px;
}

.avantage-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .avantages-grid {
    grid-template-columns: 1fr;
  }
}
