/* ==========================================================================
   Zéro Frais Agence - Styles principaux
   ========================================================================== */

/* Variables CSS */
:root {
    /* Couleurs selon la charte graphique - SANS DÉGRADÉS */
    --primary-dark: #1e3a5f;      /* Bleu foncé */
    --primary-light: #5dbbf0;     /* Bleu clair */
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray-medium: #64748b;
    --gray-dark: #334155;
    
    /* Typographie friendly */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Espacements généreux */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --header-height: 80px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border radius friendly */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;
    
    /* Transitions fluides */
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombres douces et friendly */
    --shadow-xs: 0 1px 3px 0 rgba(0, 0, 0, 0.03), 0 1px 2px 0 rgba(0, 0, 0, 0.02);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-friendly: 0 8px 32px rgba(93, 187, 240, 0.12), 0 2px 8px rgba(93, 187, 240, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.65;
    color: var(--gray-dark);
    background-color: var(--white);
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
}

/* Conteneur principal */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xs);
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-light);
    text-decoration: none;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Navigation desktop */
.desktop-nav {
    display: none;
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Responsive navigation improvements */
@media (max-width: 1023px) {
    .nav-wrapper {
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .nav-list {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    font-size: 0.9rem;
    display: block;
}

.nav-link:hover {
    color: var(--primary-light);
    background: rgba(93, 187, 240, 0.06);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 24px;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.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-slow);
}

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

.btn-primary {
    background: var(--primary-light);
    color: var(--white);
    box-shadow: var(--shadow-friendly);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--primary-dark);
    box-shadow: 0 12px 40px rgba(93, 187, 240, 0.25), var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.cta-header {
    display: none;
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
    .cta-header {
        display: inline-flex;
    }
}

/* Menu mobile */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-list li {
    padding: 0 2rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-light);
}

.mobile-nav-link:hover {
    color: var(--primary-light);
}

.mobile-cta {
    margin: 1rem 0;
    width: calc(100% - 4rem);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4rem;
    background: #f0f4f8;
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-title {
    font-size: 2.75rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.03em;
    color: var(--primary-dark);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-light);
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Widget de recherche */
.search-widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-friendly);
    overflow: hidden;
    max-width: 420px;
    margin-left: auto;
    border: 1px solid rgba(93, 187, 240, 0.1);
    transition: var(--transition-base);
}

.search-widget:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(93, 187, 240, 0.15), var(--shadow-xl);
}



.search-widget {
    padding: 1.5rem;
}

.search-bar {
    position: relative;
    margin-bottom: 2rem;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.search-bar input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.5rem;
    border: 2px solid rgba(93, 187, 240, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background: #f8fafc;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition-base);
    font-weight: var(--font-weight-medium);
}

.search-bar input:hover {
    border-color: rgba(93, 187, 240, 0.2);
    background: #f1f5f9;
    transform: scale(1.01);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(93, 187, 240, 0.1);
    transform: scale(1.02);
}

.featured-properties {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-property {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: #f8fafc;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 1px solid rgba(93, 187, 240, 0.05);
}

.featured-property:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
    background: #f1f5f9;
    border-color: rgba(93, 187, 240, 0.15);
}

.property-thumbnail {
    width: 64px;
    height: 48px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(93, 187, 240, 0.25);
    background: var(--primary-light);
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.featured-property:hover .thumbnail-img {
    transform: scale(1.05);
}

.featured-property:hover .property-color-bar::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.property-color-bar.teal {
    background: var(--primary-light);
}

.property-info {
    flex: 1;
}

.property-price {
    font-size: 1.35rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

/* Styles pour les suggestions de recherche */
.search-bar {
    position: relative;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: var(--spacing-md);
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.suggestion-item:hover {
    background: #f8fafc;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-thumbnail {
    width: 40px;
    height: 30px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.suggestion-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-info {
    flex: 1;
}

.suggestion-title {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.suggestion-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.no-results-message {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-muted);
}

.no-results-message i {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.5;
}

.no-results-message p {
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.no-results-message small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.suggestion-item.no-results {
    pointer-events: none;
}

.suggestion-item.no-results:hover {
    background: transparent;
}

.property-details {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: var(--font-weight-medium);
    letter-spacing: -0.01em;
}

/* Styles du formulaire déplacés dans les sections appropriées */

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================================================
   SECTIONS COMMUNES
   ========================================================================== */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.75rem;
    }
}

/* ==========================================================================
   VALUE PROPOSITIONS
   ========================================================================== */

.value-props {
    background: var(--gray-light);
}

.value-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-friendly);
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid rgba(93, 187, 240, 0.08);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-light);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(93, 187, 240, 0.15), var(--shadow-xl);
    border-color: rgba(93, 187, 240, 0.2);
}

.value-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-xl);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 8px 24px rgba(93, 187, 240, 0.25);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.value-card:hover .value-icon {
    background: var(--primary-dark);
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.value-card:hover .value-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(93, 187, 240, 0.35);
}

.value-card:hover .value-icon::before {
    animation: shimmer 1.5s ease-in-out;
}

.value-card:nth-child(1) .value-icon {
    background: var(--primary-light);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.value-card > p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}



.value-description {
    text-align: left;
    line-height: 1.6;
}

.value-list {
    list-style: none;
    text-align: left;
}

.value-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.value-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ==========================================================================
   PERSONAS SECTION
   ========================================================================== */

.personas-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .personas-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.persona-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.persona-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.persona-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}



.persona-content {
    text-align: center;
}

.persona-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.persona-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.persona-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.persona-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: var(--gray-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================================================
   PROPERTIES SECTION
   ========================================================================== */

.properties {
    background: var(--gray-light);
}

.section-header {
    position: relative;
}

.properties-nav {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 767px) {
    .properties-nav {
        position: static;
        justify-content: center;
        margin-top: 1rem;
    }
}

.nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--primary-light);
    color: var(--white);
}

.properties-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-friendly);
    transition: var(--transition-base);
    border: 1px solid rgba(93, 187, 240, 0.08);
}

.property-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(93, 187, 240, 0.15), var(--shadow-xl);
    border-color: rgba(93, 187, 240, 0.2);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.property-badge:hover {
    transform: scale(1.05);
}

.property-badge.nouveau {
    background: rgba(93, 187, 240, 0.9);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-badge.prix-reduit {
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-content {
    padding: 1.5rem;
}

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

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 500;
}

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

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.team-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.team-section .section-title {
    color: var(--primary-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-section .section-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.team-name {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.team-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-item i {
    color: var(--primary-light);
    width: 16px;
}

.team-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-contact {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-phone {
    background: var(--primary-light);
    color: var(--white);
}

.btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-email {
    background: #f3f4f6;
    color: var(--primary-dark);
    border: 1px solid #e5e7eb;
}

.btn-email:hover {
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-contact i {
    font-size: 0.85rem;
}

/* Responsive Team Section */
@media (max-width: 768px) {
    .team-section {
        padding: 3rem 0;
    }
    
    .team-section .section-title {
        font-size: 2rem;
    }
    
    .team-section .section-subtitle {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .team-avatar i {
        font-size: 1.75rem;
    }
    
    .team-name {
        font-size: 1.25rem;
    }
    
    .team-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-contact {
        flex: none;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ==========================================================================
   RESPONSIVE UTILITIES
   ========================================================================== */

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .search-widget {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .search-widget {
        margin-left: 2rem;
    }
}

/* Animation d'entrée pour les éléments */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* States utilitaires */
.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}