/* Variables CSS - Charte graphique GeCo Immobilier */
:root {
    /* Couleurs principales - Nouvelle charte */
    --beige: #F1E9E1;
    --orange: #d16d5c;
    --bleu: #02364e;
    --gris: #d3d4d3;

    /* Mapping des couleurs pour compatibilité */
    --primary-color: var(--orange);
    --primary-light: #e07d6c;
    --primary-dark: #b85a4a;
    --secondary-color: var(--bleu);
    --secondary-light: #034a6a;
    --secondary-dark: #012435;
    --white: #ffffff;
    --light-gray: var(--beige);
    --medium-gray: var(--gris);
    --dark-gray: #6b7280;
    --text-dark: var(--bleu);
    --text-light: #6b7280;
    --accent-gold: #f59e0b;
    --accent-emerald: #10b981;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 20px 40px -4px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(209, 109, 92, 0.3);

    /* Bordures et transitions */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

    /* Gradients - Nouvelle charte */
    --gradient-primary: linear-gradient(135deg, var(--orange) 0%, #e07d6c 50%, #b85a4a 100%);
    --gradient-secondary: linear-gradient(135deg, var(--bleu) 0%, #034a6a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-hero: linear-gradient(135deg, var(--orange) 0%, #e07d6c 25%, var(--bleu) 75%, #012435 100%);
}

/* Police DIN - À charger via @font-face quand disponible */
/* TODO: Ajouter @font-face pour la police DIN quand les fichiers seront fournis */
/*
@font-face {
    font-family: 'DIN';
    src: url('assets/fonts/DIN-Regular.woff2') format('woff2'),
         url('assets/fonts/DIN-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DIN';
    src: url('assets/fonts/DIN-Bold.woff2') format('woff2'),
         url('assets/fonts/DIN-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
*/

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DIN', 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========================================
   HEADER HAUT (Top Bar) - Réseaux sociaux
   ======================================== */
.top-bar {
    background: var(--bleu);
    padding: 10px 0;
    width: 100%;
    z-index: 1001;
    border-bottom: none;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    min-height: 36px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-fast);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    color: var(--orange);
}

.top-bar-link i {
    font-size: 0.9rem;
}

.btn-locations {
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-locations:hover {
    background: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION - Dropdown menus
   ======================================== */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown>.nav-link,
.nav-item.has-dropdown>.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown toggle non-cliquable */
.dropdown-toggle {
    cursor: default;
    user-select: none;
}

.nav-item.has-dropdown>.nav-link::after,
.nav-item.has-dropdown>.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    transition: var(--transition-fast);
    position: static;
    width: auto;
    height: auto;
    background: none;
    transform: none;
    left: auto;
    bottom: auto;
}

.nav-item.has-dropdown:hover>.nav-link::after,
.nav-item.has-dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 260px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--bleu);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--beige);
    color: var(--orange);
    padding-left: 26px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Luxueuse */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo {
    width: 270px;
    height: 270px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    border-radius: 8px;
    position: relative;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(235, 96, 78, 0.2));
}

/* Fallback pour le logo */
.logo-fallback {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: white;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-fallback:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(235, 96, 78, 0.2));
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.01em;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    transition: var(--transition);
    z-index: -1;
    pointer-events: none;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.dropdown-toggle.active {
    color: var(--primary-color);
    background: rgba(235, 96, 78, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: var(--transition);
    pointer-events: none;
}

.nav-link:hover::after,
.nav-link.active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle.active::after {
    width: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: var(--white);
    border: 2px solid var(--light-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-toggle:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(235, 96, 78, 0.2);
}

.bar {
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 2px 0;
}

/* Animation du hamburger vers X propre */
.nav-toggle.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(0deg);
}

.nav-toggle.active .bar {
    background: var(--white);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay pour fermer le menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(47, 54, 64, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section Luxueuse */
.hero {
    background: var(--gradient-hero);
    background-image: url('assets/fond.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 80px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 640px;
    margin-top: 1rem;
}

.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: heroTitleSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Style spécifique pour le titre de la page locations */
.hero-title.locations-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title.locations-title .title-line {
    display: block;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-title.locations-title .title-line-sub {
    display: block;
    font-size: 0.75em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    opacity: 0.95;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    display: inline-block;
    background-color: #ffffff;
    color: #02364e;
    padding: 0.25rem 0.8rem;
    border-radius: 1.2rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

@keyframes highlightGlow {
    0% {
        box-shadow: var(--shadow);
    }

    100% {
        box-shadow: var(--shadow-glow);
    }
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: highlightShine 2s ease-in-out infinite;
}

@keyframes highlightShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0;
    margin-bottom: 0.75rem;
    line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: heroDescSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-description.hero-promise {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

@keyframes heroDescSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    margin-top: 1.6rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.025em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 180px;
    animation: btnSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes btnSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--bleu);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(2, 54, 78, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(2, 54, 78, 0.35);
    background: var(--secondary-light);
}

.btn-secondary {
    background: var(--orange);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(209, 109, 92, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209, 109, 92, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--bleu);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
    background: var(--beige);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--orange);
}

.hero-buttons {
    animation: btnContainerSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@keyframes btnContainerSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Animation heroImageSlide supprimée */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-graphic {
    width: 400px;
    height: 400px;
    position: relative;
    animation: heroFloat 6s ease-in-out infinite;
    z-index: 3;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Gros cercle supprimé */

/* Image de l'agente immobilière */
.hero-agent {
    position: absolute;
    bottom: -270px;
    /* CHANGEZ CETTE VALEUR POUR L'AXE Y (ex: -30px, -70px, 0px, etc.) */
    right: 20px;
    /* CHANGEZ CETTE VALEUR POUR L'AXE X (ex: 50px, 10px, 100px, etc.) */
    width: 500px;
    /* CHANGEZ CETTE VALEUR POUR LA TAILLE (ex: 250px, 350px, 400px, etc.) */
    height: auto;
    z-index: 1;
}

.hero-agent img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-illustration img {
    max-width: 380px;
    height: auto;
}

/* Styles spécifiques pour l'image de la page services */
.services-agent {
    /* POSITION SUR L'AXE Y (vertical) - Changez cette valeur */
    bottom: -270px !important;
    /* Valeurs possibles: -300px, -200px, -100px, 0px, etc. */

    /* POSITION SUR L'AXE X (horizontal) - Changez cette valeur */
    right: -200px !important;
    /* Valeurs possibles: 0px, 50px, 100px, etc. */

    /* TAILLE DE L'IMAGE - Changez cette valeur */
    width: 800px !important;
    /* Valeurs possibles: 300px, 400px, 600px, etc. */
}

/* Styles spécifiques pour l'image de la page locations (nos_locations.png) */
.locations-agent {
    /* POSITION SUR L'AXE Y (vertical) - Changez cette valeur */
    bottom: -80px !important;
    /* Valeurs possibles: -300px, -200px, -100px, 0px, etc. */

    /* POSITION SUR L'AXE X (horizontal) - Changez cette valeur */
    right: -300px !important;
    /* Valeurs possibles: 0px, 50px, 100px, etc. */

    /* TAILLE DE L'IMAGE - Changez cette valeur */
    width: 800px !important;
    /* Valeurs possibles: 300px, 400px, 600px, etc. */
}

/* Styles spécifiques pour l'image de la page contact (contact.png) */
.contact-agent {
    /* DESKTOP - Alignée avec le texte sur l'axe X */
    right: 20px !important;
    /* Plus à droite */
    bottom: -150px !important;
    /* Plus haut (moins négatif = plus haut) */
    width: 450px !important;
    /* Taille sur desktop */
}

/* Animation d'entrée supprimée */

/* Éléments décoratifs flottants */
.hero-graphic .floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.hero-graphic .floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 10%;
    animation: float1 8s ease-in-out infinite;
}

.hero-graphic .floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 15%;
    animation: float2 10s ease-in-out infinite reverse;
}

.hero-graphic .floating-element:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 30%;
    left: 5%;
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(25px) rotate(-180deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15px, -15px) rotate(120deg);
    }

    66% {
        transform: translate(-10px, -25px) rotate(240deg);
    }
}

/* Sections communes */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 0 1rem 0;
}

/* Barre décorative supprimée */

.section-tag {
    background: var(--beige);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: none;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(209, 109, 92, 0.2);
}

/* Style spécifique pour le tag SERVICES uniquement */
.services-preview .section-tag {
    position: absolute;
    top: -140px;
    /* Changez cette valeur pour ajuster la position Y (ex: -50px, -20px, 0px, etc.) */
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: tagShine 3s ease-in-out infinite;
}

@keyframes tagShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Style spécifique pour le titre de la section services */
.services-preview .section-title {
    position: relative;
    margin-top: -3rem;
    text-align: center;
    z-index: 5;
}

/* Section Introduction Accueil */
.home-intro {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.home-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-block {
    padding: 40px;
    background: var(--beige);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.intro-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.intro-block .section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.intro-block .section-title {
    font-size: 1.5rem;
    color: var(--bleu);
    margin-bottom: 0;
}

.intro-block .intro-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.intro-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.hero-promise {
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--white);
}

@media (max-width: 992px) {
    .home-intro .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-block {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .home-intro {
        padding: 50px 0;
    }

    .intro-block {
        padding: 25px;
    }

    .intro-block .section-title {
        font-size: 1.3rem;
    }
}

/* ========================================
   SECTION NOS EXPERTISES
   ======================================== */
.expertises-section {
    padding: 80px 0;
    background: var(--beige);
}

.expertises-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.expertise-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.expertise-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--bleu);
}

.expertise-card p {
    margin-bottom: 1.75rem;
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card-actions {
    margin-top: auto;
}

.expertise-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
}

.expertise-btn:hover {
    background: var(--bleu);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 54, 78, 0.3);
}

.expertise-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon i {
    font-size: 1.8rem;
    color: var(--orange);
}

.service-icon-img {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 0.5rem auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    .service-icon-img {
        width: 85px;
    }
}

.expertise-content h3 {
    font-size: 1.2rem;
    color: var(--bleu);
    margin-bottom: 15px;
}

.expertise-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .expertises-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .expertise-card {
        padding: 1.5rem;
    }
}

/* ========================================
   SECTION NOTRE ÉQUIPE
   ======================================== */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    margin: 1rem auto 0;
    text-align: center;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.team-member {
    background: var(--beige);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-photo {
    height: 200px;
    background: var(--gris);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gris) 0%, var(--beige) 100%);
}

.photo-placeholder i {
    font-size: 4rem;
    color: var(--orange);
    opacity: 0.5;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.1rem;
    color: var(--bleu);
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-cta {
    text-align: center;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-member {
        display: grid;
        grid-template-columns: 150px 1fr;
    }

    .team-photo {
        height: 100%;
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .team-member {
        grid-template-columns: 1fr;
    }

    .team-photo {
        height: 180px;
    }
}

/* ========================================
   SECTION NOS PARTENAIRES
   ======================================== */
.partners-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.partner-logo {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.logo-placeholder {
    text-align: center;
}

.logo-placeholder span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bleu);
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Preview */
.services-preview {
    padding: 120px 0 0 0;
    background: var(--light-gray);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.services-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

.services-preview .container {
    max-width: none;
    padding: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    box-shadow: var(--shadow-lg);
}

.service-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
}

.service-card-featured {
    background: var(--primary-color);
    color: var(--white);
}

/* Hover effects removed */

.service-image {
    flex: 0 0 auto;
    position: relative;
    order: -1;
}

.service-illustration {
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tailles individuelles et positionnement Y pour chaque illustration */
.service-illustration.illustration-pros {
    width: 50%;
    /* Ajustez cette valeur pour l'illustration "Professionnels" */
    transform: translateY(15px);
    /* Ajustez cette valeur pour déplacer verticalement (+/-px) */
}

.service-illustration.illustration-gestion {
    width: 37%;
    /* Ajustez cette valeur pour l'illustration "Gestion Locative" */
    transform: translateY(15px);
    /* Ajustez cette valeur pour déplacer verticalement (+/-px) */
}

.service-illustration.illustration-coaching {
    width: 60%;
    /* Ajustez cette valeur pour l'illustration "Coaching Copro" */
    transform: translateY(50px);
    /* Ajustez cette valeur pour déplacer verticalement (+/-px) */
}

.service-illustration.illustration-investissement {
    width: 40%;
    /* Ajustez cette valeur pour l'illustration "Investissement" */
    transform: translateY(40px);
    /* Ajustez cette valeur pour déplacer verticalement (+/-px) */
}

/* Ajustements individuels du contenu pour aligner les tags "POUR" */
.service-card:nth-child(1) .service-content {
    padding-top: 2rem;
    /* Ajustez pour aligner le "POUR" de la carte Professionnels */
}

.service-card:nth-child(2) .service-content {
    padding-top: 2rem;
    /* Ajustez pour aligner le "POUR" de la carte Gestion Locative */
}

.service-card:nth-child(3) .service-content {
    padding-top: 6rem;
    /* Ajustez pour aligner le "POUR" de la carte Coaching Copro */
}

.service-card:nth-child(4) .service-content {
    padding-top: 7rem;
    /* Ajustez pour aligner le "POUR" de la carte Investissement */
}

/* Animation clean pour les service-card */
.service-fade-in {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Image hover effect removed */

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.service-card-featured .service-content {
    color: var(--white);
}

.service-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-card-featured .service-tag {
    color: rgba(255, 255, 255, 0.9);
}

.service-audience {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.service-card-featured .service-audience {
    color: rgba(255, 255, 255, 0.95);
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--secondary-color);
}

.service-card-featured h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-card-featured h3 {
    color: var(--white) !important;
}

.service-card-featured .service-content {
    color: var(--white) !important;
}

.service-card-featured .service-content * {
    color: var(--white) !important;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.service-card-featured .service-btn {
    border-color: var(--white);
    color: var(--white);
}

.service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-card-featured .service-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-icon::before {
    opacity: 0.4;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: var(--transition);
}

.service-card:hover p {
    color: var(--text-dark);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    background: rgba(235, 96, 78, 0.05);
    border: 2px solid transparent;
}

.service-link:hover {
    color: var(--white);
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* About Section - Design Moderne */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero section avec profil */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.profile-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.profile-role {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* Section détails en colonnes */
.about-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.detail-column {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: var(--transition);
}

.detail-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.detail-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.detail-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
}

.detail-column p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mission simple intégrée */
.about-mission-simple {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 0 2rem;
}

.about-mission-simple h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-mission-simple h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.about-mission-simple p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-mission-simple .btn {
    margin-top: 1rem;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), #e2e8f0);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--dark-gray);
}

/* CTA Section Luxueuse */
.cta {
    background: var(--bleu);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(235, 96, 78, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ctaBackground 15s ease-in-out infinite alternate;
}

@keyframes ctaBackground {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(1deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Luxueux */
.footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--text-dark) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-info .logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 1.5rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: var(--transition);
}

.footer-contact p:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-links h4,
.footer-services h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
}

.footer-links h4::after,
.footer-services h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before,
.footer-services a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--primary-color);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gradient-primary);
}

/* Responsive Design Amélioré */
@media (max-width: 968px) {

    /* NAVBAR TABLETTE - Styles spécifiques pour iPad et tablettes */
    .nav-container {
        padding: 0 24px;
        height: 70px;
    }

    .logo {
        width: 180px;
        /* Réduction du logo pour tablette */
        height: 180px;
    }

    .nav-menu {
        gap: 1.2rem;
        /* Réduction de l'espacement entre les liens */
    }

    .nav-link {
        font-size: 0.85rem;
        /* Réduction de la taille de police */
        padding: 10px 16px;
        /* Réduction du padding */
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .service-card {
        height: auto;
    }

    .service-image {
        flex: 0 0 auto;
    }

    .service-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 76px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 320px;
        max-width: 85vw;
        background: var(--white);
        box-shadow: 2px 0 30px rgba(0, 0, 0, 0.15);
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1002;
        display: flex;
        flex-direction: column;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(-20px);
        opacity: 0.95;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
        opacity: 1;
        box-shadow: 2px 0 40px rgba(0, 0, 0, 0.2);
    }

    /* Header du menu mobile */
    .nav-menu::before {
        content: 'GeCo Immobilier';
        position: absolute;
        top: 25px;
        left: 25px;
        right: 25px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--white);
        z-index: 2;
        text-align: center;
    }

    /* Header coloré */
    .nav-menu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: var(--gradient-primary);
    }

    .nav-item {
        margin: 0;
        width: 100%;
        padding: 0;
        border: none;
    }

    .nav-item:first-child {
        margin-top: 100px;
    }

    .nav-link,
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 18px 25px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--secondary-color);
        position: relative;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--light-gray);
        background: transparent;
        text-decoration: none;
        white-space: normal;
        overflow: visible;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::before,
    .dropdown-toggle::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--primary-color);
        transform: scaleY(0);
        transition: all 0.3s ease;
        transform-origin: bottom;
    }

    .nav-link::after {
        content: '→';
        opacity: 0;
        transform: translateX(15px);
        transition: all 0.3s ease;
        font-size: 1rem;
        color: var(--primary-color);
        font-weight: bold;
    }

    .nav-link:hover,
    .nav-link.active,
    .dropdown-toggle:hover,
    .dropdown-toggle.active {
        color: var(--primary-color);
        background: rgba(235, 96, 78, 0.05);
        padding-left: 35px;
    }

    .nav-link:hover::before,
    .nav-link.active::before,
    .dropdown-toggle:hover::before,
    .dropdown-toggle.active::before {
        transform: scaleY(1);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    /* Top Bar Mobile */
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-container {
        padding: 0 16px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-social a {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .top-bar-link {
        font-size: 0.75rem;
    }

    .btn-locations {
        padding: 5px 12px;
        font-size: 0.75rem;
    }

    /* Dropdowns Mobile */
    .nav-item.has-dropdown>.nav-link::after,
    .nav-item.has-dropdown>.dropdown-toggle::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        opacity: 1;
        transform: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--beige);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        min-width: 100%;
        left: 0;
    }

    .nav-item.has-dropdown.open .dropdown-menu {
        max-height: 200px;
        padding: 8px 0;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu a:hover {
        padding-left: 45px;
    }

    .logo {
        width: 170px;
        height: 170px;
    }

    .hero {
        padding: 60px 0 40px;
        min-height: auto;
        background-position: center center;
    }

    /* Cacher les bulles flottantes sur tablette */
    .hero-graphic .floating-element {
        display: none;
    }

    .hero-image {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title.locations-title {
        font-size: clamp(2rem, 5vw, 3rem);
        gap: 0.4rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        text-align: left;
    }

    .hero-title.locations-title {
        font-size: clamp(2rem, 5vw, 3rem);
        gap: 0.4rem;
    }

    .hero-title .highlight {
        font-size: 1.1rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-description {
        font-size: 1.05rem;
        text-align: left;
        max-width: 100%;
    }

    .hero-graphic {
        width: 280px;
        height: 280px;
    }

    .hero-agent {
        width: 330px;
        /* CHANGEZ CETTE VALEUR POUR LA TAILLE SUR TABLETTE */
        bottom: -100px;
        /* CHANGEZ CETTE VALEUR POUR L'AXE Y SUR TABLETTE */
        right: 40px;
        /* CHANGEZ CETTE VALEUR POUR L'AXE X SUR TABLETTE */
    }

    /* Styles spécifiques pour la page services sur tablette */
    .services-agent {
        width: 330px !important;
        /* TAILLE SUR TABLETTE */
        bottom: -100px !important;
        /* POSITION Y SUR TABLETTE */
        right: 40px !important;
        /* POSITION X SUR TABLETTE */
    }

    /* Styles spécifiques pour la page locations sur tablette - DOIT ÊTRE APRÈS .hero-agent */
    .hero-agent.locations-agent {
        width: 350px !important;
        /* TAILLE SUR TABLETTE - Changez cette valeur */
        bottom: -120px !important;
        /* POSITION Y SUR TABLETTE - Changez cette valeur */
        right: 20px !important;
        /* POSITION X SUR TABLETTE - Changez cette valeur */
    }

    /* Styles spécifiques pour la page contact sur tablette */
    .hero-agent.contact-agent {
        width: 320px !important;
        /* TAILLE SUR TABLETTE */
        bottom: -100px !important;
        /* POSITION Y SUR TABLETTE */
        right: 30px !important;
        /* POSITION X SUR TABLETTE - aligné avec le texte */
    }

    /* PAGE À PROPOS - RESPONSIVE TABLETTE */
    .about-section-full {
        padding: 80px 0;
    }

    .about-container {
        padding: 0 30px;
        max-width: 900px;
    }

    .about-hero-large {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-bottom: 5rem;
        text-align: center;
    }

    .profile-card-large {
        padding: 2.5rem;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .profile-photo-large {
        width: 220px;
        height: 220px;
    }

    .profile-name-large {
        font-size: 2.2rem;
    }

    .profile-role-large {
        font-size: 1.1rem;
    }

    .intro-title-large {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .intro-text-large {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-journey {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
        text-align: center;
    }

    .journey-content h3 {
        font-size: 1.8rem;
    }

    .journey-stats {
        justify-content: center;
        gap: 3rem;
    }

    .about-expertise {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .expertise-content h3 {
        font-size: 1.8rem;
    }

    .expertise-badges {
        justify-content: center;
        gap: 1.5rem;
    }

    .about-personality h3 {
        font-size: 1.8rem;
    }

    .personality-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-mission-large {
        padding: 4rem 3rem;
        margin: 0 30px;
    }

    .mission-content-large h3 {
        font-size: 2rem;
    }

    .mission-content-large p {
        font-size: 1.1rem;
    }

    .hero-graphic::after {
        font-size: 6rem;
    }

    .btn {
        min-width: 160px;
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    /* Responsive About Section */
    .about-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-mission-simple {
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

    .about-mission-simple h4 {
        font-size: 1.3rem;
    }

    .profile-photo {
        width: 150px;
        height: 150px;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .profile-image {
        width: 280px;
        height: 280px;
    }

    .image-placeholder {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2.5rem;
    }

    .footer-links a,
    .footer-services a {
        padding-left: 0;
        justify-content: flex-start;
    }

    .footer-links a::before,
    .footer-services a::before {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
        margin-top: 2.5rem;
    }

    .section-header {
        padding: 1.5rem 0 0.8rem 0;
        margin-bottom: 0.8rem;
    }

    .section-tag {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 6px 16px;
    }

    .services-preview .section-tag {
        top: -134px;
        /* Changez cette valeur pour ajuster la position Y sur mobile */
        transform: translateX(-50%) rotate(-2deg);
    }

    .services-preview .section-title {
        position: relative;
        margin-top: -2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-card {
        height: auto;
    }

    .service-image {
        flex: 0 0 auto;
    }

    .service-content {
        padding: 1.5rem;
    }

    /* PAGE À PROPOS - RESPONSIVE MOBILE */
    .about-section-full {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-hero-large {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
        text-align: center;
    }

    .profile-card-large {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .profile-photo-large {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .profile-name-large {
        font-size: 2rem;
    }

    .profile-role-large {
        font-size: 1rem;
    }

    .intro-title-large {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .intro-text-large {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-journey {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }

    .journey-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .journey-stats {
        gap: 2rem;
        justify-content: center;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-expertise {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .expertise-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .expertise-badges {
        gap: 1rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .badge-item {
        padding: 1rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: left;
        flex-direction: row;
        gap: 0.8rem;
    }

    .badge-item i {
        font-size: 1.2rem;
        width: 25px;
        flex-shrink: 0;
    }

    .badge-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .about-personality {
        margin-bottom: 3rem;
    }

    .about-personality h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .personality-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trait-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .trait-icon i {
        font-size: 1.5rem;
    }

    .personality-trait h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .about-mission-large {
        padding: 3rem 1.5rem;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .mission-content-large h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .mission-content-large p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0 30px;
        min-height: auto;
        background-image: none !important;
        background: var(--gradient-hero) !important;
    }

    /* Harmoniser les pages de service avec le même dégradé orange */
    .service-hero {
        background-image: none !important;
        background: var(--gradient-hero) !important;
    }

    .hero-container {
        padding: 30px 15px 40px;
    }

    .hero-image {
        display: none;
    }

    /* S'assurer que les bulles sont cachées sur mobile */
    .hero-graphic,
    .hero-graphic .floating-element {
        display: none;
    }

    .hero-title.locations-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        gap: 0.3rem;
        margin-bottom: 1rem;
    }

    .hero-title.locations-title .title-line-sub {
        font-size: 0.7em;
        margin-top: 0.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-title .highlight {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-agent {
        width: 300px;
        /* CHANGEZ CETTE VALEUR POUR LA TAILLE SUR MOBILE */
        bottom: -80px;
        /* CHANGEZ CETTE VALEUR POUR L'AXE Y SUR MOBILE */
        right: 5px;
        /* CHANGEZ CETTE VALEUR POUR L'AXE X SUR MOBILE */
    }

    /* Styles spécifiques pour la page services sur mobile */
    .services-agent {
        width: 300px !important;
        /* TAILLE SUR MOBILE */
        bottom: -80px !important;
        /* POSITION Y SUR MOBILE */
        right: 5px !important;
        /* POSITION X SUR MOBILE */
    }

    /* Styles spécifiques pour la page locations sur mobile - DOIT ÊTRE APRÈS .hero-agent */
    .hero-agent.locations-agent {
        width: 480px !important;
        /* TAILLE SUR MOBILE - Changez cette valeur */
        bottom: 10px !important;
        /* POSITION Y SUR MOBILE - Changez cette valeur */
        right: -66px !important;
        /* POSITION X SUR MOBILE - Changez cette valeur */
    }

    /* Styles spécifiques pour la page contact sur mobile - CENTRÉE VERTICALEMENT */
    .hero-agent.contact-agent {
        width: 280px !important;
        /* TAILLE SUR MOBILE */
        bottom: auto !important;
        /* Annule le positionnement bottom */
        right: auto !important;
        /* Annule le positionnement right */
        top: 50% !important;
        /* Centre verticalement */
        left: 50% !important;
        /* Centre horizontalement */
        transform: translate(-50%, -50%) !important;
        /* Centre parfaitement */
        position: absolute !important;
    }

    /* PAGE À PROPOS - RESPONSIVE PETITS MOBILES */
    .about-section-full {
        padding: 40px 0;
    }

    .about-container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .about-hero-large {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .profile-card-large {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .profile-photo-large {
        width: 150px;
        height: 150px;
        margin-bottom: 1rem;
    }

    .profile-name-large {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .profile-role-large {
        font-size: 0.9rem;
    }

    .intro-title-large {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .intro-text-large {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-journey {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .journey-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .journey-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .journey-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .about-expertise {
        margin-bottom: 2rem;
        gap: 2rem;
    }

    .expertise-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .expertise-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .expertise-badges {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .badge-item {
        padding: 0.8rem;
        font-size: 0.8rem;
        width: calc(100% - 30px);
        max-width: 280px;
        text-align: left;
        flex-direction: row;
        gap: 0.6rem;
        margin: 0 15px;
    }

    .badge-item i {
        font-size: 1rem;
        width: 20px;
        flex-shrink: 0;
        margin-right: 0;
    }

    .badge-item span {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .about-personality {
        margin-bottom: 2rem;
    }

    .about-personality h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .personality-grid {
        gap: 1.5rem;
    }

    .trait-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .trait-icon i {
        font-size: 1.2rem;
    }

    .personality-trait h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .personality-trait p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-mission-large {
        padding: 2rem 1rem;
        margin: 0 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .mission-content-large h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .mission-content-large p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .mission-content-large .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* PAGE ABOUT - DESIGN PROPRE ET SYMÉTRIQUE */
.about-clean {
    padding: 60px 0;
    background: var(--white);
}

/* Profile Banner */
.profile-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(235, 96, 78, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-image-container {
    flex-shrink: 0;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(235, 96, 78, 0.3);
}

.profile-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.profile-role {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    max-width: 600px;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(235, 96, 78, 0.1);
    transition: var(--transition);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-section-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.3;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 25px 0;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    background: var(--light-gray);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

/* Diploma List */
.diploma-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.diploma-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.diploma-item:hover {
    background: rgba(235, 96, 78, 0.05);
    transform: translateX(5px);
}

.diploma-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.diploma-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Personality Grid */
.personality-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.personality-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.personality-item:hover {
    background: rgba(235, 96, 78, 0.05);
    transform: translateX(5px);
}

.personality-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.personality-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.personality-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.personality-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--gradient-secondary) 0%, rgba(235, 96, 78, 0.05) 100%);
    border: 1px solid rgba(235, 96, 78, 0.2);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(235, 96, 78, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mission-section .section-content {
    position: relative;
    z-index: 1;
}

.mission-cta {
    text-align: center;
    margin-top: 30px;
}

.mission-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.mission-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(235, 96, 78, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(235, 96, 78, 0.2);
}

.mission-highlight i {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.mission-highlight span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-clean {
        padding: 40px 0;
    }

    .profile-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .profile-text h2 {
        font-size: 2rem;
    }

    .profile-description {
        font-size: 1rem;
    }

    .about-content {
        gap: 30px;
    }

    .about-section {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .about-section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .about-section-header h3 {
        font-size: 1.5rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .personality-grid {
        gap: 15px;
    }

    .personality-item {
        padding: 20px;
    }

    .personality-icon {
        width: 45px;
        height: 45px;
    }

    .personality-icon i {
        font-size: 1.1rem;
    }

    .mission-highlights {
        gap: 10px;
    }

    .diploma-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .profile-banner {
        padding: 20px 15px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .profile-text h2 {
        font-size: 1.8rem;
    }

    .about-section {
        padding: 20px 15px;
        margin: 0 5px;
    }

    .section-icon {
        width: 40px;
        height: 40px;
    }

    .section-icon i {
        font-size: 1.2rem;
    }

    .about-section-header h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .personality-icon {
        width: 40px;
        height: 40px;
    }

    .personality-icon i {
        font-size: 1rem;
    }

    .personality-item {
        padding: 15px;
        gap: 15px;
    }

    .mission-highlights {
        gap: 8px;
    }

    .mission-highlight {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Animations Luxueuses */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Animation de chargement de page supprimée pour éviter les bugs */
body {
    opacity: 1;
    transform: translateY(0);
}

/* Effets de survol avancés */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* Animations de texte */
.text-shimmer {
    background: linear-gradient(90deg,
            var(--text-dark) 0%,
            var(--primary-color) 50%,
            var(--text-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }
}

/* Formulaires */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(235, 96, 78, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Sections de services */
.service-section {
    padding: 100px 0;
}

.service-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), #ff7a65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.service-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
}

/* Cartes de prix */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Page À propos */
.about-main {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image-large {
    position: sticky;
    top: 120px;
}

.about-image-large .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--light-gray), #e2e8f0);
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-large .image-placeholder i {
    font-size: 8rem;
    color: var(--dark-gray);
}

.about-text-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 2rem;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-text-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Section personnalité */
.personality-section {
    padding: 100px 0;
}

.personality-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.personality-traits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.trait {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.trait-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff7a65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.trait-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.trait-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trait-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section mission */
.mission-section {
    padding: 100px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0 1.5rem;
    line-height: 1.3;
}

.mission-description {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-values {
    display: grid;
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff7a65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section expérience */
.experience-section {
    padding: 100px 0;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive pour la page À propos */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-large {
        position: static;
        order: -1;
    }

    .about-image-large .image-placeholder {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .mission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-image-large .image-placeholder {
        height: 300px;
        max-width: 300px;
    }

    .about-image-large .image-placeholder i {
        font-size: 6rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .personality-content h3 {
        font-size: 1.7rem;
    }

    .trait {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}


/* Section statistiques */
.stats-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Responsive statistiques */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }
}

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

/* Page Contact */
.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Informations de contact */
.contact-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff7a65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-cta {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Formulaire de contact */
.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px;
}

/* Checkbox personnalisé */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.form-note {
    margin-top: 1.5rem;
    text-align: center;
}

.form-note p {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-color);
}

/* Section FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--beige);
}

.faq-question h4 {
    color: var(--bleu);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

.faq-question i {
    color: var(--orange);
    transition: var(--transition);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.faq-item.active .faq-question {
    background: var(--beige);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.75rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
    max-width: 95%;
}

/* Responsive Contact */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        align-self: center;
    }
}

/* Responsive Contact Main (page contact.html) */
@media (max-width: 968px) {
    .contact-content-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-main {
        position: static;
        order: 1;
    }

    .contact-form-container {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-content-main {
        gap: 1.5rem;
    }

    .contact-info-main {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-methods {
        gap: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {

    .contact-info-main,
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   SECTION FILTRES - NOUVELLE VERSION PROPRE
   ========================================== */

.filters-section-new {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-search-bar {
    position: relative;
    margin-bottom: 20px;
}

.filter-search-bar i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.filter-search-bar .filter-control {
    padding-left: 48px;
    font-size: 1.05rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(235, 96, 78, 0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: end;
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(235, 96, 78, 0.1);
}

/* Éléments de filtre individuels */
.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.025em;
}

/* Contrôles de filtre uniformes */
.filter-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.filter-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(235, 96, 78, 0.1);
    transform: translateY(-1px);
}

.filter-control:hover {
    border-color: #cbd5e1;
}

/* Section Budget spécifique */
.budget-filter {
    position: relative;
}

.budget-range {
    display: flex;
    align-items: center;
    gap: 12px;
}

.budget-field {
    flex: 1;
    position: relative;
}

.budget-input {
    padding-right: 40px !important;
}

.budget-field::after {
    content: '€';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-weight: 500;
    pointer-events: none;
}

.range-separator {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin: 0 4px;
}

/* Bouton Reset */
.filter-actions {
    display: flex;
    align-items: flex-end;
}

.btn-reset {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
    min-height: 52px;
}

.btn-reset:hover {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.4);
}

.btn-reset:active {
    transform: translateY(0);
}

.btn-reset i {
    font-size: 1rem;
}

.btn-reset span {
    letter-spacing: 0.025em;
}

/* Bouton Toggle Tous les biens */
.btn-toggle-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--orange) 0%, #e07d6c 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(209, 109, 92, 0.3);
}

.btn-toggle-all:hover {
    background: linear-gradient(135deg, #e07d6c 0%, #b85a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 109, 92, 0.4);
}

.btn-toggle-all.active {
    background: linear-gradient(135deg, var(--bleu) 0%, #034a6a 100%);
}

.btn-toggle-all.active:hover {
    background: linear-gradient(135deg, #034a6a 0%, #012435 100%);
}

.btn-toggle-all i {
    font-size: 1rem;
}

/* Bouton filtre images - Style différent */
#toggleImagesBtn {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

#toggleImagesBtn:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
}

#toggleImagesBtn.active {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

#toggleImagesBtn.active:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

/* Admin Panel */
.admin-panel {
    background: var(--secondary-color);
    padding: 2rem 0;
    color: var(--white);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h3 {
    color: var(--white);
    margin: 0;
}

.admin-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--text-dark);
}

.admin-form h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Properties Section */
.properties-section {
    padding: 100px 0;
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.properties-header h2 {
    color: var(--secondary-color);
    margin: 0;
}

.properties-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#propertiesCount {
    color: var(--text-light);
    font-weight: 500;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.property-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.property-image {
    position: relative;
    height: 200px;
    background: var(--light-gray);
}

.property-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray), #e2e8f0);
}

.property-image .image-placeholder i {
    font-size: 3rem;
    color: var(--dark-gray);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.unavailable {
    background: var(--dark-gray);
    opacity: 0.9;
}

.property-card.unavailable {
    opacity: 0.75;
}

.property-card.unavailable .property-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.property-header h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.3;
    min-width: 0;
    flex: 1;
}

.property-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.property-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.property-details i {
    color: var(--primary-color);
}

.property-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.property-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
}

.property-actions .btn {
    flex: 1;
}

.property-actions .contact-btn {
    flex: 2;
    /* Le bouton contact prend plus de place */
}

.favorite-btn {
    flex: 0 0 50px !important;
    /* Taille fixe pour le bouton favori */
    max-width: 50px;
    min-width: 50px;
    width: 50px;
    padding: 12px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.favorite-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.favorite-btn.active i {
    font-weight: 900;
}

/* Styles spécifiques pour éviter les conflits avec btn-secondary */
.favorite-btn.btn-secondary {
    background: rgba(100, 116, 139, 0.1) !important;
    color: var(--text-dark) !important;
    border: 2px solid #e2e8f0 !important;
    backdrop-filter: none !important;
}

.favorite-btn.btn-secondary:hover {
    background: rgba(235, 96, 78, 0.1) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-results-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.no-results-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 10% auto;
    padding: 0;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: var(--shadow-hover);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--secondary-color);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.modal-body strong {
    color: var(--secondary-color);
}

.contact-options {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-options .btn {
    flex: 1;
    justify-content: center;
}

/* Page Service Détail */
.service-hero {
    background: var(--gradient-hero);
    background-image: url('assets/fond.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

/* Animation d'apparition des héros */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-hero .service-hero-content {
    animation: heroFadeIn 0.8s ease-out forwards;
}

.service-hero .service-hero-illustration {
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* Animation hero page accueil */
.hero .hero-content {
    animation: heroFadeIn 0.8s ease-out forwards;
}

.hero .hero-agent,
.hero .hero-illustration {
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Service Hero Layout (texte + illustration) */
.service-hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.service-hero-layout .service-hero-content {
    flex: 1 1 0;
    max-width: 620px;
    margin: 0;
    text-align: left;
}

.service-hero-illustration {
    flex: 0 0 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-hero-illustration img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .service-hero-layout {
        gap: 2rem;
    }

    .service-hero-illustration {
        flex: 0 0 220px;
    }

    .service-hero-illustration img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 900px) {
    .service-hero-layout {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .service-hero-layout .service-hero-content {
        max-width: 100%;
    }

    .service-hero-illustration {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 2rem;
    }

    .service-hero-illustration img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
}

/* Service Hero avec Image */
.service-hero-with-image {
    text-align: left;
}

.service-hero-with-image .service-hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-hero-with-image .service-hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0;
}

.service-hero-with-image .hero-image {
    flex-shrink: 0;
    max-width: 450px;
}

.service-hero-with-image .hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .service-hero-with-image .service-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .service-hero-with-image .service-hero-content {
        max-width: 100%;
    }

    .service-hero-with-image .hero-image {
        max-width: 100%;
        width: 100%;
        margin-top: 40px;
    }

    .service-hero-with-image .hero-image img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .service-hero-with-image .hero-image img {
        max-width: 100%;
    }
}

.service-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section Avantages */
.advantages-section {
    padding: 80px 0;
    background: var(--beige);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantage-card-wide {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    border: 3px solid var(--white);
}

.advantage-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Tarifs */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
    overflow: visible;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    overflow: visible;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    margin-top: 30px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 15;
    border: 3px solid var(--white);
}

.pricing-card h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1rem 0 1rem;
}

.pricing-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-example {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-example strong {
    color: var(--secondary-color);
}

.pricing-included {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-amount {
    margin-top: auto;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-option {
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
}

.details {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Section Découverte */
.discovery-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.discovery-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.discovery-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.discovery-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Atouts Content */
.atouts-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.atouts-intro {
    font-size: 1.1rem;
    color: var(--bleu);
    margin-bottom: 1.5rem;
}

.atouts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.atouts-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.atouts-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.atouts-conclusion {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--orange);
}

/* Pricing List for gestion locative */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.pricing-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

/* Pricing Grid 2 columns */
.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 992px) {
    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Pricing Badge */
.pricing-badge {
    display: inline-block;
    background: var(--bleu);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-badge-featured {
    background: var(--orange);
}

/* Pricing Tagline */
.pricing-tagline {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing Card Featured */
.pricing-card-featured {
    border: 2px solid var(--orange);
    position: relative;
}

/* Advantages Grid Coloc */
.advantages-grid-coloc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.advantages-grid-coloc .advantage-card {
    text-align: center;
    padding: 30px 25px;
}

.advantages-grid-coloc .advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-grid-coloc .advantage-icon i {
    font-size: 1.5rem;
    color: var(--orange);
}

.advantages-grid-coloc .advantage-card h3 {
    font-size: 1.1rem;
    color: var(--bleu);
    margin-bottom: 12px;
}

.advantages-grid-coloc .advantage-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .advantages-grid-coloc {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .advantages-grid-coloc {
        grid-template-columns: 1fr;
    }
}

/* Process Timeline (page vente) */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.process-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    font-size: 1.2rem;
    color: var(--orange);
}

.process-content h3 {
    font-size: 1.05rem;
    color: var(--bleu);
    margin-bottom: 8px;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-icon {
        margin: 0 auto;
    }
}

/* Service Accroche */
.service-accroche {
    font-size: 1.5rem !important;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Offres Investissement */
.offres-investissement {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offre-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offre-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.offre-card-featured {
    border: 2px solid var(--orange);
}

.offre-header {
    padding: 25px 25px 15px;
    background: var(--beige);
}

.offre-badge {
    display: inline-block;
    background: var(--bleu);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.offre-badge-featured {
    background: var(--orange);
}

.offre-badge-premium {
    background: linear-gradient(135deg, var(--bleu) 0%, var(--orange) 100%);
}

.offre-header h3 {
    font-size: 1.2rem;
    color: var(--bleu);
    margin: 0;
}

.offre-content {
    padding: 25px;
}

.offre-content>p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.offre-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.offre-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.offre-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 600;
}

.offre-objectif {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--beige);
    border-radius: var(--border-radius);
    font-size: 0.9rem !important;
}

@media (max-width: 1200px) {
    .offres-investissement {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Réalisations Content */
.realisations-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.realisations-content>p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.realisations-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
}

.realisations-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.realisations-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.realisations-conclusion {
    padding: 1.5rem;
    background: var(--beige);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--orange);
    font-style: italic;
}

/* Missions Content (assistance administrateurs) */
.missions-content,
.pourquoi-content,
.formules-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.missions-content>p,
.pourquoi-content>p,
.formules-content>p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.missions-list,
.pourquoi-list,
.formules-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.missions-list li,
.pourquoi-list li,
.formules-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.missions-list li::before,
.pourquoi-list li::before,
.formules-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.formules-conclusion {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--orange);
    font-style: italic;
}

/* CTA Contact */
.cta-contact {
    background: var(--bleu);
    padding: 60px 0;
}

.cta-contact .cta-content {
    text-align: center;
}

.cta-contact h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-contact>.container>.cta-content>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-buttons-grid .btn {
    min-width: 250px;
}

@media (max-width: 768px) {
    .cta-buttons-grid {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons-grid .btn {
        width: 100%;
        max-width: 350px;
    }
}

/* CTA Contact Layout avec illustration */
.cta-contact-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.cta-contact-text {
    flex: 1 1 0;
}

.cta-contact-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-contact-text>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-contact-illustration {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-contact-illustration img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .hero-illustration img {
        max-width: 260px;
        margin-top: 1.5rem;
    }

    .cta-contact-layout {
        flex-direction: column;
        text-align: center;
    }

    .cta-contact-text .cta-buttons-grid {
        justify-content: center;
    }

    .cta-contact-illustration {
        margin-top: 1.5rem;
    }

    .cta-contact-illustration img {
        max-width: 280px;
        margin-inline: auto;
    }
}

/* Honoraires Content */
.honoraires-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.honoraires-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.honoraires-highlight {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--orange);
    font-weight: 500;
}

/* CTA Description */
.cta-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Links Section */
.cta-links-section {
    padding: 70px 0;
    background: var(--beige);
    text-align: center;
}

.cta-links-content h3 {
    font-size: 1.5rem;
    color: var(--bleu);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .atouts-content {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Section Contact Service */
.contact-section-service {
    padding: 100px 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.contact-section-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(235, 96, 78, 0.1) 0%, transparent 50%);
}

.contact-section-service .contact-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text {
    color: var(--white);
}

.contact-section-service h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-section-service .contact-content>p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}

.contact-info a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

/* Styles spécifiques pour les cartes de tarifs avec contenu détaillé */
.pricing-included {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-included h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-included h4:first-child {
    margin-top: 0;
}

.pricing-included p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.pricing-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-included li {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.pricing-included li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Ajustement pour les cartes de gestion locative */
.pricing-card .price {
    font-size: 2.5rem;
}

.pricing-card .details {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Styles pour les catégories de tarifs (Coaching Copro) */
.pricing-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

/* Bouton spécial dans les cartes de prix */
.btn-small {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: auto;
}

/* Ajustement pour la carte avec bouton au lieu de prix */
.pricing-card .pricing-amount .btn {
    margin: 0;
}

/* Page Services - Cartes plus grandes */
.services-detail {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0 1rem 0;
}

.services-detail .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    margin: 0 auto;
}

.service-card-large {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    min-height: 600px;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card-large.service-card-featured {
    background: var(--primary-color);
    color: var(--white);
}

.service-card-large .service-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    order: -1;
}

.service-card-large .service-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-large .service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.service-card-large.service-card-featured .service-content {
    color: var(--white);
}

.service-card-large .service-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.service-card-large.service-card-featured .service-tag {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-large .service-audience {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.service-card-large.service-card-featured .service-audience {
    color: rgba(255, 255, 255, 0.95);
}

.service-card-large h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--secondary-color);
}

.service-card-large.service-card-featured h3 {
    color: var(--white);
}

.service-card-large p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 1rem;
    color: var(--text-light);
}

.service-card-large.service-card-featured p {
    color: rgba(255, 255, 255, 0.95);
}

.service-card-large .service-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.service-card-large.service-card-featured .service-btn {
    border-color: var(--white);
    color: var(--white);
}

.service-card-large .service-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.service-card-large.service-card-featured .service-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Page À propos complète */
.about-section-full {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.about-hero-large {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.profile-card-large {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.profile-photo-large {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
    border: 6px solid var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.profile-name-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.profile-role-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text-large {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* Section parcours */
.about-journey {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 4rem;
    background: var(--light-gray);
    border-radius: var(--border-radius-xl);
}

.journey-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.journey-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.journey-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section expertise */
.about-expertise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.expertise-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.expertise-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.badge-item span {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Section personnalité */
.about-personality {
    margin-bottom: 5rem;
}

.about-personality h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.personality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.personality-trait {
    text-align: center;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.personality-trait:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.trait-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.trait-icon i {
    font-size: 2rem;
    color: var(--white);
}

.personality-trait h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.personality-trait p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mission finale */
.about-mission-large {
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-xl);
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-mission-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(235, 96, 78, 0.1) 0%, transparent 50%);
}

.mission-content-large {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.mission-content-large h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.mission-content-large p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-content-large .btn {
    margin-top: 1rem;
}

/* Page Contact - Section principale */
.contact-section-main {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.contact-content-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-main {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

/* Footer uniformisé pour toutes les pages */
body .footer-info .logo-text {
    font-size: 2rem !important;
    font-weight: 900 !important;
}

body .footer-info p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

body .footer-contact p {
    font-size: 1rem !important;
    font-weight: 500 !important;
}

body .footer-links h4,
body .footer-services h4 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

body .footer-links a,
body .footer-services a {
    font-size: 1rem !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

body .footer-bottom {
    font-size: 1rem !important;
}

/* Responsive Service Detail Page */
@media (max-width: 968px) {
    .service-title {
        font-size: 2.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .advantage-card {
        padding: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-section-service .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contact-info {
        padding: 2rem;
    }
}

/* ==========================================
   FILTRES - RESPONSIVE DESIGN
   ========================================== */

/* Tablettes (768px - 968px) */
@media (max-width: 968px) {
    .filters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 24px;
    }

    .filter-actions {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .btn-reset {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Mobiles (max-width: 768px) */
@media (max-width: 768px) {
    .filters-section-new {
        padding: 20px 0;
    }

    .filters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px 16px;
        margin: 0 16px;
    }

    .filter-search-bar {
        margin: 0 16px 16px;
    }

    .filter-control {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .btn-reset {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
    }
}

/* Petits mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .filters-grid {
        grid-template-columns: 1fr;
        padding: 16px 12px;
        border-radius: 12px;
    }

    .filter-label {
        font-size: 0.85rem;
    }

    .filter-control {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Responsive Locations */
@media (max-width: 768px) {

    .properties-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .properties-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-toggle-all {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    #propertiesCount {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .property-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .property-price {
        margin-left: 0;
    }

    .property-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-options {
        flex-direction: column;
    }

    .modal-content {
        margin: 5% 1rem;
    }

    .admin-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .property-content {
        padding: 1rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

/* ==========================================
   CONTACT PAGE - FORCE RESPONSIVE MOBILE
   ========================================== */

/* Force layout sur tous les écrans < 968px */
@media screen and (max-width: 968px) {
    .contact-section-main .contact-content-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: none !important;
    }

    .contact-section-main .contact-info-main,
    .contact-section-main .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        flex: none !important;
    }
}

/* Force layout mobile < 768px */
@media screen and (max-width: 768px) {
    .contact-section-main {
        padding: 2rem 1rem !important;
    }

    .contact-section-main .contact-content-main {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        grid-template-columns: none !important;
        grid: none !important;
    }

    .contact-section-main .contact-info-main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        position: static !important;
        box-sizing: border-box !important;
        order: 1 !important;
    }

    .contact-section-main .contact-form-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        position: static !important;
        box-sizing: border-box !important;
        order: 2 !important;
    }

    .contact-section-main .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        grid-template-columns: none !important;
        grid: none !important;
    }

    .contact-section-main .form-group {
        width: 100% !important;
        flex: none !important;
        margin: 0 !important;
    }
}

/* Force layout petits mobiles < 480px */
@media screen and (max-width: 480px) {
    .contact-section-main {
        padding: 1rem 0.5rem !important;
    }

    .contact-section-main .contact-info-main,
    .contact-section-main .contact-form-container {
        padding: 1rem !important;
        margin: 0 !important;
    }

    .contact-section-main .contact-header h2 {
        font-size: 1.5rem !important;
    }

    .contact-section-main .form-header h3 {
        font-size: 1.3rem !important;
    }
}

/* ========================================
   NOUVEAU FOOTER UNIFIÉ
   ======================================== */
.site-footer {
    background-color: #02364e;
    color: #f6f6f6;
    margin-top: 0;
    padding-top: 3rem;
    font-size: 0.95rem;
}

.footer-main {
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
    gap: 2.5rem;
}

.footer-col h3,
.footer-col h4 {
    color: #f7b296;
    margin-bottom: 0.75rem;
}

.footer-brand h3 {
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    display: block;
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: #f6f6f6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul li a {
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-address {
    margin: 0.75rem 0;
}

.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.2rem 0;
}

.footer-contact-line i {
    color: #f7b296;
}

.footer-contact-line a {
    text-decoration: none;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
    align-items: center;
}

.footer-social a {
    color: #f6f6f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-social i {
    font-size: 1.1rem;
}

.footer-google-reviews {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(247, 178, 150, 0.6);
    font-size: 0.8rem;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    background: transparent;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
}

.footer-bottom-left {
    margin: 0;
}

.footer-bottom-links a {
    color: #f6f6f6;
    text-decoration: none;
    opacity: 0.9;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

.footer-bottom-links .separator {
    margin: 0 0.35rem;
    opacity: 0.6;
}

/* Responsive footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   PAGES LÉGALES
   ======================================== */
.legal-page {
    padding: 140px 0 80px;
    background: var(--beige);
    min-height: 60vh;
}

.legal-page h1 {
    color: var(--bleu);
    margin-bottom: 1.5rem;
}

.legal-page h2 {
    color: var(--bleu);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page .alert-draft {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.legal-page section {
    background: var(--white);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

/* ========================================
   BADGE ZELOK (Déposer mon dossier)
   ======================================== */
.zelok-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 2px solid #f7b296;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #f7b296;
    background-color: rgba(247, 178, 150, 0.08);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.zelok-badge:hover {
    background-color: rgba(247, 178, 150, 0.2);
    color: #fff;
    border-color: #f7b296;
    transform: translateY(-2px);
}

.zelok-badge i {
    font-size: 0.9rem;
}

/* Badge Zelok sur fond clair (page détail) */
.btn-zelok {
    background: linear-gradient(135deg, #f7b296 0%, #e9967a 100%);
    color: var(--bleu);
    border: none;
    font-weight: 600;
}

.btn-zelok:hover {
    background: linear-gradient(135deg, #e9967a 0%, #f7b296 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 178, 150, 0.4);
}

/* ========================================
   PAGE DÉTAIL D'UN BIEN
   ======================================== */
.property-detail-hero {
    padding: 140px 0 3rem 0;
    background: var(--beige);
    min-height: 50vh;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bleu);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--orange);
}

.back-link i {
    font-size: 0.9rem;
}

.property-detail-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.loading-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.loading-placeholder i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

.property-not-found {
    text-align: center;
    padding: 4rem 2rem;
}

.property-not-found i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.property-not-found h2 {
    color: var(--bleu);
    margin-bottom: 0.5rem;
}

.property-not-found p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Galerie / Image placeholder */
.property-detail-gallery {
    width: 100%;
    background: var(--gris);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.property-detail-gallery .main-image {
    width: 100%;
    height: 450px;
    background: var(--gris);
    position: relative;
    overflow: hidden;
}

.property-detail-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-detail-gallery .main-image:hover img {
    transform: scale(1.02);
}

.property-detail-gallery .image-placeholder.large {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 0.5rem;
}

.property-detail-gallery .image-placeholder.large i {
    font-size: 3rem;
    opacity: 0.5;
}

.property-detail-gallery .image-placeholder.large span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Galerie de miniatures */
.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 15px;
    background: var(--white);
}

.thumbnail-gallery img.thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-fast);
    opacity: 0.7;
}

.thumbnail-gallery img.thumbnail:hover {
    opacity: 1;
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.thumbnail-gallery img.thumbnail.active {
    opacity: 1;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(209, 109, 92, 0.2);
}

/* Style pour les images dans les cartes de biens */
.property-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--gris);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

/* Informations supplémentaires sur la page de détail */
.property-address-info,
.property-financial-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--orange);
}

.property-address-info h3,
.property-financial-info h3 {
    color: var(--bleu);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-address-info p,
.property-financial-info p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0.25rem 0;
}

/* Header du détail */
.property-detail-header {
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--gris);
}

.property-detail-title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.property-detail-header h1 {
    font-size: 1.8rem;
    color: var(--bleu);
    margin: 0;
}

.property-detail-header .property-badge {
    position: static;
    display: inline-block;
}

.property-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.property-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.property-detail-meta i {
    color: var(--orange);
}

.property-detail-price {
    margin-top: 1.25rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.property-detail-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Body du détail */
.property-detail-body {
    padding: 2rem 2.5rem;
}

.property-detail-body h2 {
    font-size: 1.2rem;
    color: var(--bleu);
    margin-bottom: 1rem;
}

.property-detail-body p {
    line-height: 1.8;
    color: var(--text-dark);
}

.property-detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.property-detail-features .feature {
    background: var(--beige);
    color: var(--bleu);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA du détail */
.property-detail-cta {
    padding: 2rem 2.5rem;
    background: var(--beige);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.property-detail-cta .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
}

/* Responsive page détail */
@media (max-width: 768px) {
    .property-detail-hero {
        padding: 120px 0 2rem 0;
    }

    .property-detail-gallery .main-image,
    .property-detail-gallery .image-placeholder.large {
        height: 250px;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .thumbnail-gallery img.thumbnail {
        height: 70px;
    }

    .property-detail-header {
        padding: 1.5rem;
    }

    .property-detail-header h1 {
        font-size: 1.4rem;
    }

    .property-detail-meta {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .property-detail-price {
        font-size: 1.6rem;
    }

    .property-detail-body {
        padding: 1.5rem;
    }

    .property-detail-cta {
        padding: 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    .property-detail-cta .btn {
        text-align: center;
        justify-content: center;
    }
}

/* ========================================
   LOCATIONS - AJUSTEMENTS CARTES
   ======================================== */
.property-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
}

.property-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    justify-content: center;
}

.property-actions .zelok-badge {
    flex: 0 0 auto;
}

@media (max-width: 480px) {
    .property-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .property-actions .btn,
    .property-actions .zelok-badge {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}