/* ===================================
   BROCANTE FRANCOIS - Styles Vintage
   Design rectiligne, structuré et élégant
   =================================== */

/* ===================================
   RESET & BASE
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #000000;
    background-color: #faf8f5;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(195, 96, 56, 0.012) 1px,
            rgba(195, 96, 56, 0.012) 2px
        );
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* ===================================
   LAYOUT SYSTEM
   =================================== */

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

/* ===================================
   HEADER - Fixe et élégant
   =================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    pointer-events: all;
}

.header.header-solid {
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.header.header-solid .header-content {
    height: 80px;
}

/* Logo Wrapper - Contient logo + infos */
.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Logo - Design vintage structuré */
.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
}

.logo-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: #ffffff;
}

.header.header-solid .logo-main {
    color: #000000;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
}

/* Logo Info - Téléphone et langues */
.logo-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-phone {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.header.header-solid .logo-phone {
    color: #487d73;
}

.logo-phone:hover {
    color: #c36038;
}

.logo-phone i {
    font-size: 11px;
}

.logo-languages {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-languages span {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

.header.header-solid .logo-languages span {
    color: rgba(0, 0, 0, 0.6);
}

/* Navigation - Minimaliste et rectiligne */
.nav-list {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 8px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.header.header-solid .nav-link {
    color: #000000;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 6px;
    height: 1px;
    background-color: #c36038;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-link.active {
    color: #c36038;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 26px;
    height: 1px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.header.header-solid .hamburger-line {
    background-color: #000000;
}

.hamburger.active .hamburger-line {
    background-color: #ffffff;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu - Fullscreen élégant */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #c36038;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-nav-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #487d73;
}

.mobile-contact {
    margin-top: 48px;
    text-align: center;
}

.mobile-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 16px 32px;
    border: 1px solid #ffffff;
    transition: all 0.3s ease;
}

.mobile-contact-link:hover {
    background-color: #ffffff;
    color: #da4d41;
}

/* ===================================
   HERO SECTION - Vintage structuré
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
}

/* Hero Title - Typographie vintage */
.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(72, 125, 115, 0.3);
}

.hero-title-main {
    display: inline-block;
}

.hero-title-divider {
    color: #c36038;
    margin: 0 16px;
    font-weight: 300;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-tagline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 48px;
    opacity: 0.9;
    padding-top: 32px;
    border-top: 2px solid #487d73;
}

/* Button - Design rectiligne */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 48px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c36038;
    color: #ffffff;
    border-color: #c36038;
}

.btn-primary:hover {
    background-color: #da4d41;
    border-color: #da4d41;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-content {
        height: auto;
        padding: 16px 0;
    }
    
    .header.header-solid .header-content {
        height: auto;
        padding: 12px 0;
    }
    
    .logo-main {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .logo-phone {
        font-size: 12px;
    }
    
    .logo-languages {
        display: none;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 40px 24px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-title-divider {
        margin: 0 8px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
    }
    
    .hero-tagline {
        font-size: 16px;
        padding-top: 24px;
        margin-bottom: 36px;
    }
    
    .btn {
        font-size: 12px;
        padding: 16px 36px;
        letter-spacing: 1.5px;
    }
    
    .mobile-nav-link {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-tagline {
        font-size: 14px;
    }
    
    .btn {
        width: 100%;
        padding: 18px 24px;
    }
}

/* ===================================
   PAGE HERO - Version courte pour pages internes
   =================================== */

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.page-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(72, 125, 115, 0.5);
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Page Hero */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .page-hero-background {
        background-attachment: scroll;
    }
    
    .page-hero-content {
        padding: 32px 24px;
    }
    
    .page-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .page-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* ===================================
   SECTIONS - Layout structuré
   =================================== */

.section {
    padding: 120px 0;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
    color: #487d73;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #666666;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.center {
    text-align: center;
}

/* Service Intro - Pages internes */
.service-intro {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(195, 96, 56, 0.025) 2px,
            rgba(195, 96, 56, 0.025) 4px
        );
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Items List - Système de filtres élégant */
.items-list {
    background-color: #f2f2f2;
}

/* Animation fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filtres catégories */
.items-filters {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666666;
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c36038;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    color: #000000;
}

.filter-btn.active {
    color: #c36038;
    font-weight: 600;
}

.filter-btn.active::after {
    transform: scaleX(1);
}

/* Grid items */
.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.item-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #487d73;
    transition: all 0.4s ease;
    opacity: 1;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.item-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(195, 96, 56, 0.2);
    opacity: 0.6;
    transition: all 0.4s ease;
    pointer-events: none;
}

.item-card::after {
    content: '✦';
    position: absolute;
    top: 12px;
    right: 12px;
    color: #c36038;
    font-size: 12px;
    opacity: 0;
    transform: rotate(0deg) scale(0.5);
    transition: all 0.4s ease;
}

.item-card.hidden {
    display: none;
}

.item-card:hover {
    border-color: #c36038;
    transform: translateY(-8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.item-card:hover::before {
    opacity: 1;
    border-color: rgba(72, 125, 115, 0.4);
}

.item-card:hover::after {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.item-card i {
    font-size: 44px;
    color: #c36038;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.item-card:hover i {
    color: #487d73;
    transform: scale(1.15) rotateY(360deg);
}

.item-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.item-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Why Choose Us Section */
.why-choose {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(195, 96, 56, 0.025) 2px,
            rgba(195, 96, 56, 0.025) 4px
        );
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 48px 32px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #487d73, #c36038, #487d73);
    transition: width 0.4s ease;
}

.why-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(72, 125, 115, 0.15);
    opacity: 0;
    transition: all 0.4s ease;
}

.why-item:hover::before {
    width: 100%;
}

.why-item:hover::after {
    opacity: 1;
    border-color: rgba(195, 96, 56, 0.25);
}

.why-item:hover {
    background-color: #faf6f0;
    border-color: rgba(72, 125, 115, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    color: #487d73;
    margin-bottom: 24px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.why-item:hover .why-number {
    opacity: 0.7;
    color: #c36038;
    transform: scale(1.1);
}

.why-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Gallery Showcase - Acquisitions récentes */
.gallery-showcase {
    background-color: #f2f2f2;
}

.showcase-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #666666;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 600px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(72, 125, 115, 0.15);
    transition: all 0.4s ease;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #487d73;
    opacity: 0.3;
    transition: all 0.4s ease;
    z-index: 1;
}

.showcase-item::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #c36038;
    opacity: 0.2;
    transition: all 0.4s ease;
    z-index: 1;
}

.showcase-item:hover::before {
    opacity: 0.55;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
}

.showcase-item:hover::after {
    opacity: 0.4;
}

.showcase-item:hover {
    transform: translateY(-8px) rotate(0.3deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(72, 125, 115, 0.3);
}

.showcase-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    z-index: 2;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
    filter: sepia(12%) contrast(1.04) brightness(0.99);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.05);
    filter: sepia(0%) contrast(1.08) brightness(1);
}

/* Debarras Types - Prestations élégantes */
.debarras-types {
    background-color: #f2f2f2;
}

.debarras-types .services-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.debarras-types .service-card {
    background-color: #ffffff;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid #487d73;
    transition: all 0.4s ease;
    position: relative;
    flex: 0 1 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.debarras-types .service-card::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(195, 96, 56, 0.2);
    opacity: 0.6;
    transition: all 0.4s ease;
    pointer-events: none;
}

.debarras-types .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #c36038;
    transition: width 0.4s ease;
}

.debarras-types .service-card:hover::before {
    width: 60%;
}

.debarras-types .service-card:hover {
    background-color: #faf6f0;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 1;
    border-color: #c36038;
}

.debarras-types .service-card:hover::after {
    opacity: 1;
    border-color: rgba(72, 125, 115, 0.4);
}

.debarras-types .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #487d73;
    position: relative;
    transition: all 0.4s ease;
}

.debarras-types .service-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #c36038;
    transition: all 0.4s ease;
}

.debarras-types .service-card:hover .service-icon {
    border-color: #c36038;
    background-color: #487d73;
    transform: rotateY(360deg);
}

.debarras-types .service-card:hover .service-icon::before {
    border-color: #ffffff;
}

.debarras-types .service-card:hover .service-icon i {
    color: #ffffff;
}

.debarras-types .service-icon i {
    font-size: 40px;
    color: #c36038;
    z-index: 1;
    transition: all 0.4s ease;
}

.debarras-types .service-card:hover .service-icon i {
    color: #da4d41;
}

.debarras-types .service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.debarras-types .service-card:hover .service-title {
    color: #c36038;
}

.debarras-types .service-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
}

/* Equipment Section - Équipement professionnel */
.equipment-section {
    background-color: #faf6f0;
}

.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.equipment-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.equipment-item-reverse {
    flex-direction: row-reverse;
}

.equipment-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border: 3px solid #487d73;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.equipment-image::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border: 1px solid rgba(195, 96, 56, 0.3);
    pointer-events: none;
    z-index: 2;
}

.equipment-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(5%) contrast(1.02);
    transition: all 0.4s ease;
}

.equipment-item:hover .equipment-image {
    border-color: #c36038;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.equipment-item:hover .equipment-image img {
    filter: sepia(0%) contrast(1.05);
}

.equipment-content {
    flex: 1;
}

.equipment-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #487d73;
    margin-bottom: 20px;
    line-height: 1.3;
}

.equipment-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
}

/* Advantages - Avantages du service */
.advantages {
    background-color: #f2f2f2;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.advantage-card {
    background-color: #ffffff;
    padding: 48px 32px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, #c36038 0%, #487d73 100%);
    transition: height 0.4s ease;
}

.advantage-card:hover::before {
    height: 4px;
}

.advantage-card:hover {
    border-color: #c36038;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.4s ease;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: #c36038;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon::before {
    width: 100%;
    height: 100%;
}

.advantage-icon i {
    font-size: 32px;
    color: #c36038;
    z-index: 1;
    position: relative;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon i {
    color: #ffffff;
}

.advantage-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.advantage-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Debarras Process - Section avec image */
.debarras-process {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(195, 96, 56, 0.025) 2px,
            rgba(195, 96, 56, 0.025) 4px
        );
    overflow: hidden;
}

.debarras-process .container {
    max-width: 1200px;
    padding: 0;
}

.process-with-image {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0;
    align-items: center;
}

.process-image-side {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 20px;
}

.process-image-side::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    bottom: 28px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-image-side::after {
    content: '✦';
    position: absolute;
    top: 40px;
    left: 40px;
    color: #ffffff;
    font-size: 24px;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0.8;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.process-image-side img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    display: block;
    filter: sepia(10%) contrast(1.05) brightness(0.98);
    transition: filter 0.4s ease;
}

.process-content-side {
    padding: 80px 60px 80px 60px;
}

.process-content-side .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.process-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #666666;
    margin-bottom: 48px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.process-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-item:hover {
    padding-left: 12px;
}

.process-item-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: #487d73;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.process-item:hover .process-item-number {
    opacity: 1;
    color: #c36038;
    transform: scale(1.1);
}

.process-item-content {
    padding-top: 8px;
}

.process-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #487d73;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.process-item:hover .process-item-title {
    color: #c36038;
}

.process-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Process Steps - Comment vendre */
.process {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(195, 96, 56, 0.025) 2px,
            rgba(195, 96, 56, 0.025) 4px
        );
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 80px;
    position: relative;
}

.process-steps.steps-4 {
    grid-template-columns: repeat(4, 1fr);
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(to right, #c36038 0%, #c36038 50%, #487d73 50%, #487d73 100%);
    z-index: 0;
}

.process-steps.steps-4::before {
    left: 12.5%;
    right: 12.5%;
}

.step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #487d73;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    border: 3px solid #487d73;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid #c36038;
    transition: all 0.4s ease;
}

.step:hover .step-number {
    background-color: #487d73;
    color: #ffffff;
    border-color: #c36038;
    transform: scale(1.1);
}

.step:hover .step-number::before {
    border-color: #ffffff;
}

.step-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.step:hover .step-title {
    color: #c36038;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
}

.process-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    position: relative;
}

.process-info::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(195, 96, 56, 0.3);
}

.process-info .lead {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.process-info p:not(.lead) {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive Sections */
@media (max-width: 768px) {
    .equipment-item,
    .equipment-item-reverse {
        flex-direction: column;
        gap: 32px;
    }
    
    .equipment-image {
        flex: 0 0 100%;
    }
    
    .equipment-title {
        font-size: 24px;
    }
    
    .equipment-description {
        font-size: 15px;
    }
    
    .items-filters {
        flex-wrap: wrap;
        margin-bottom: 48px;
    }
    
    .filter-btn {
        font-size: 11px;
        padding: 14px 16px;
        letter-spacing: 1px;
    }
    
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .item-card {
        padding: 32px 24px;
    }
    
    .item-card i {
        font-size: 36px;
    }
    
    .item-card h3 {
        font-size: 18px;
    }
    
    .item-card p {
        font-size: 13px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-item {
        padding: 40px 32px;
    }
    
    .why-number {
        font-size: 48px;
    }
    
    .why-title {
        font-size: 20px;
    }
    
    .why-description {
        font-size: 13px;
    }
    
    .showcase-subtitle {
        font-size: 15px;
        margin: 0 auto 40px;
    }
    
    .showcase-grid {
        gap: 24px;
    }
    
    .debarras-types .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .debarras-types .service-card {
        padding: 48px 32px;
        border-right: none;
    }
    
    .debarras-types .service-icon {
        width: 85px;
        height: 85px;
    }
    
    .debarras-types .service-icon i {
        font-size: 36px;
    }
    
    .debarras-types .service-title {
        font-size: 22px;
    }
    
    .debarras-types .service-description {
        font-size: 14px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantage-card {
        padding: 40px 32px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 28px;
    }
    
    .advantage-title {
        font-size: 19px;
    }
    
    .advantage-description {
        font-size: 13px;
    }
    
    .debarras-process .container {
        padding: 0;
    }
    
    .process-with-image {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .process-image-side img {
        min-height: 400px;
    }
    
    .process-content-side {
        padding: 60px 40px;
    }
    
    .process-content-side .section-title {
        text-align: center;
    }
    
    .process-intro {
        text-align: center;
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .process-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
        padding-bottom: 28px;
    }
    
    .process-item-number {
        font-size: 40px;
    }
    
    .process-item-title {
        font-size: 20px;
    }
    
    .process-item-description {
        font-size: 14px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 64px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .process-info {
        padding: 40px 32px;
    }
    
    .process-info .lead {
        font-size: 20px;
    }
    
    .process-info p:not(.lead) {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .items-filters {
        margin-bottom: 40px;
    }
    
    .filter-btn {
        font-size: 10px;
        padding: 12px 12px;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .item-card {
        padding: 32px 24px;
    }
    
    .item-card i {
        font-size: 40px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-item {
        padding: 36px 24px;
    }
    
    .why-number {
        font-size: 42px;
    }
    
    .why-title {
        font-size: 19px;
    }
    
    .showcase-subtitle {
        font-size: 14px;
        margin: 0px auto 36px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .debarras-types .service-card {
        padding: 40px 24px;
    }
    
    .debarras-types .service-icon {
        width: 75px;
        height: 75px;
    }
    
    .debarras-types .service-icon i {
        font-size: 32px;
    }
    
    .debarras-types .service-title {
        font-size: 20px;
    }
    
    .debarras-types .service-description {
        font-size: 13px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advantage-card {
        padding: 36px 24px;
    }
    
    .advantage-icon {
        width: 65px;
        height: 65px;
    }
    
    .advantage-icon i {
        font-size: 26px;
    }
    
    .advantage-title {
        font-size: 18px;
    }
    
    .process-with-image {
        gap: 0;
    }
    
    .process-image-side img {
        min-height: 350px;
    }
    
    .process-content-side {
        padding: 48px 24px;
    }
    
    .process-intro {
        font-size: 14px;
        margin-bottom: 36px;
    }
    
    .process-list {
        gap: 28px;
    }
    
    .process-item {
        grid-template-columns: 45px 1fr;
        gap: 16px;
        padding-bottom: 24px;
    }
    
    .process-item-number {
        font-size: 36px;
    }
    
    .process-item-title {
        font-size: 19px;
    }
    
    .process-item-description {
        font-size: 13px;
    }
    
    .process-steps {
        gap: 48px;
        margin-bottom: 56px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .step-title {
        font-size: 19px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .process-info {
        padding: 36px 24px;
    }
    
    .process-info .lead {
        font-size: 18px;
    }
    
    .process-info p:not(.lead) {
        font-size: 13px;
    }
}

/* ===================================
   VINTAGE DIVIDER - Section tampon vintage
   =================================== */

.vintage-divider {
    position: relative;
    padding: 100px 0;
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(72, 125, 115, 0.03) 2px,
            rgba(72, 125, 115, 0.03) 4px
        );
    overflow: hidden;
}

.vintage-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #487d73 20%,
        #c36038 50%,
        #487d73 80%,
        transparent 100%
    );
}

.vintage-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #487d73 20%,
        #c36038 50%,
        #487d73 80%,
        transparent 100%
    );
}

.vintage-content {
    position: relative;
    z-index: 2;
}

.vintage-ornament {
    text-align: center;
    margin-bottom: 48px;
}

.vintage-ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.vintage-ornament-line::before,
.vintage-ornament-line::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #487d73 30%,
        #c36038 50%,
        #487d73 70%,
        transparent
    );
    max-width: 200px;
}

.vintage-ornament-icon {
    font-size: 32px;
    color: #c36038;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    transition: all 0.4s ease;
}

.vintage-ornament-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #487d73;
    border-radius: 50%;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.vintage-ornament-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border: 1px solid #c36038;
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.vintage-ornament:hover .vintage-ornament-icon {
    transform: rotate(360deg);
}

.vintage-ornament:hover .vintage-ornament-icon::before {
    opacity: 0.7;
    width: 75px;
    height: 75px;
}

.vintage-ornament:hover .vintage-ornament-icon::after {
    opacity: 0.5;
}

.vintage-ornament-icon i {
    position: relative;
    z-index: 1;
}

.vintage-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #487d73;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.vintage-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c36038;
    text-align: center;
    margin-bottom: 56px;
}

.vintage-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.vintage-frame {
    position: relative;
    aspect-ratio: 1;
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(72, 125, 115, 0.2);
    transition: all 0.4s ease;
}

.vintage-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #487d73;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.vintage-frame::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid #c36038;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.vintage-frame:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(72, 125, 115, 0.4);
}

.vintage-frame:hover::before {
    opacity: 0.6;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
}

.vintage-frame:hover::after {
    opacity: 0.4;
}

.vintage-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.vintage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(15%) contrast(1.05) brightness(0.98);
    transition: all 0.4s ease;
}

.vintage-frame:hover .vintage-image img {
    filter: sepia(0%) contrast(1.1) brightness(1);
    transform: scale(1.05);
}

.vintage-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        transparent 100%
    );
    padding: 32px 16px 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.vintage-frame:hover .vintage-caption {
    opacity: 1;
    transform: translateY(0);
}

.vintage-caption-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Corner decorations */
.vintage-frame .corner-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.vintage-frame:hover .corner-decoration {
    opacity: 1;
}

.corner-decoration.top-left {
    top: 4px;
    left: 4px;
    border-top: 2px solid #c36038;
    border-left: 2px solid #c36038;
}

.corner-decoration.top-right {
    top: 4px;
    right: 4px;
    border-top: 2px solid #487d73;
    border-right: 2px solid #487d73;
}

.corner-decoration.bottom-left {
    bottom: 4px;
    left: 4px;
    border-bottom: 2px solid #487d73;
    border-left: 2px solid #487d73;
}

.corner-decoration.bottom-right {
    bottom: 4px;
    right: 4px;
    border-bottom: 2px solid #c36038;
    border-right: 2px solid #c36038;
}

/* Responsive Vintage Divider */
@media (max-width: 768px) {
    .vintage-divider {
        padding: 80px 0;
    }
    
    .vintage-title {
        font-size: 28px;
    }
    
    .vintage-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    
    .vintage-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .vintage-ornament-line::before,
    .vintage-ornament-line::after {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .vintage-divider {
        padding: 60px 0;
    }
    
    .vintage-title {
        font-size: 24px;
    }
    
    .vintage-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vintage-frame {
        padding: 12px;
    }
}

/* ===================================
   ABOUT SECTION - Vintage élégant
   =================================== */

.about {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(195, 96, 56, 0.025) 2px,
            rgba(195, 96, 56, 0.025) 4px
        );
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text .lead {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    letter-spacing: 0.5px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Badge expérience - Design rectiligne vintage */
.experience-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
    margin-top: 60px;
    background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%);
    border: 3px solid #487d73;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(72, 125, 115, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #c36038;
    transition: all 0.3s ease;
}

.experience-badge::after {
    content: '✦ ✦ ✦';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: #c36038;
    font-size: 10px;
    letter-spacing: 8px;
    background: #faf6f0;
    padding: 0 16px;
}

.experience-badge:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 25px rgba(72, 125, 115, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.experience-badge:hover::before {
    border-color: #487d73;
}

.experience-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    color: #c36038;
    letter-spacing: 2px;
}

.experience-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #487d73;
    margin-top: 12px;
}

/* Responsive About */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }
    
    .about-text .lead {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .experience-badge {
        padding: 32px 48px;
        margin-top: 48px;
    }
    
    .experience-number {
        font-size: 56px;
    }
    
    .experience-text {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .about-text .lead {
        font-size: 18px;
    }
    
    .experience-badge {
        padding: 24px 36px;
        width: 100%;
    }
    
    .experience-number {
        font-size: 48px;
    }
}

/* ===================================
   SERVICES SECTION - Élégant avec couleurs
   =================================== */

.services {
    background-color: #f2f2f2;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(72, 125, 115, 0.015) 10px,
            rgba(72, 125, 115, 0.015) 20px
        );
}

.section-gray {
    background-color: #f2f2f2;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(72, 125, 115, 0.015) 10px,
            rgba(72, 125, 115, 0.015) 20px
        );
}

.center {
    text-align: center;
}

/* Featured Service Banner */
.featured-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 80px;
    background-color: #ffffff;
    border: 3px solid #487d73;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(195, 96, 56, 0.3);
    pointer-events: none;
    z-index: 1;
}

.featured-service:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #c36038;
}

.featured-service-image {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.featured-service-image::before {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 24px;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: rotate(0deg) scale(0.8);
    transition: all 0.4s ease;
}

.featured-service:hover .featured-service-image::before {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.featured-service-image::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-service:hover .featured-service-image::after {
    opacity: 1;
}

.featured-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: sepia(8%) contrast(1.02) brightness(0.99);
}

.featured-service:hover .featured-service-image img {
    transform: scale(1.05);
    filter: sepia(0%) contrast(1.05) brightness(1);
}

.featured-service-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #faf6f0;
    position: relative;
    z-index: 3;
}

.featured-service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, #487d73, #c36038);
    transition: height 0.4s ease;
    z-index: 0;
}

.featured-service:hover .featured-service-content::before {
    height: 100%;
}

.featured-service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.featured-service-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.featured-service-content .btn {
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Service Card - Design vintage avec cadres */
.service-card {
    background-color: #ffffff;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid #e0e0e0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(72, 125, 115, 0.2);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(195, 96, 56, 0.15);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.8;
    border-color: rgba(72, 125, 115, 0.4);
}

.service-card:hover::after {
    opacity: 1;
    border-color: rgba(195, 96, 56, 0.3);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(72, 125, 115, 0.4);
    background-color: #faf6f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Service Icon - Rectiligne avec couleur */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #487d73;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid #c36038;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    border-color: #c36038;
    background-color: #487d73;
}

.service-card:hover .service-icon::before {
    border-color: #ffffff;
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-icon i {
    font-size: 32px;
    color: #c36038;
    z-index: 1;
    transition: all 0.4s ease;
}

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

/* Service Title - Typographie élégante */
.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Service Description */
.service-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.service-card .btn {
    position: relative;
    z-index: 10;
}

/* Button Secondary - Version rectiligne */
.btn-secondary {
    background-color: transparent;
    color: #487d73;
    border: 2px solid #487d73;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 40px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #487d73;
    border-color: #487d73;
    color: #ffffff;
}

/* Responsive Services */
@media (max-width: 768px) {
    .featured-service {
        grid-template-columns: 1fr;
        margin-bottom: 60px;
    }
    
    .featured-service-image {
        min-height: 300px;
    }
    
    .featured-service-content {
        padding: 48px 32px;
    }
    
    .featured-service-title {
        font-size: 28px;
    }
    
    .featured-service-description {
        font-size: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card {
        padding: 48px 32px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .featured-service {
        margin-bottom: 48px;
    }
    
    .featured-service-image {
        min-height: 250px;
    }
    
    .featured-service-content {
        padding: 40px 24px;
    }
    
    .featured-service-title {
        font-size: 24px;
    }
    
    .featured-service-description {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .services-grid {
        gap: 32px;
    }
    
    .service-card {
        padding: 40px 24px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .btn-secondary {
        width: 100%;
        padding: 16px 24px;
    }
}

/* ===================================
   GALLERY SECTION - Notre Galerie
   =================================== */

.gallery {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(195, 96, 56, 0.025) 2px,
            rgba(195, 96, 56, 0.025) 4px
        );
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #ffffff;
    padding: 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(72, 125, 115, 0.15);
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid #487d73;
    opacity: 0.25;
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    bottom: 9px;
    border: 1px solid #c36038;
    opacity: 0.2;
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.5;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
}

.gallery-item:hover::after {
    opacity: 0.4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    filter: sepia(10%) contrast(1.03) brightness(0.99);
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: sepia(0%) contrast(1.08) brightness(1);
}

.gallery-item:hover {
    transform: translateY(-6px) rotate(0.5deg);
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(72, 125, 115, 0.3);
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
}

/* ===================================
   USP SECTION - Nos Points Forts
   =================================== */

.usp {
    background-color: #f2f2f2;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-item {
    text-align: center;
    padding: 40px 24px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.usp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #487d73, #c36038);
    transition: width 0.4s ease;
}

.usp-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #c36038, #487d73);
    transition: width 0.4s ease;
}

.usp-item:hover::before,
.usp-item:hover::after {
    width: 80px;
}

.usp-item:hover {
    transform: translateY(-6px);
    border-color: rgba(72, 125, 115, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* USP Icon - Style vintage avec double bordure */
.usp-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #487d73;
    position: relative;
    transition: all 0.4s ease;
    background-color: #ffffff;
}

.usp-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid #c36038;
    opacity: 0.4;
    transition: all 0.4s ease;
    z-index: 0;
}

.usp-item:hover .usp-icon {
    border-color: #c36038;
    background-color: #faf6f0;
    transform: rotate(5deg);
}

.usp-item:hover .usp-icon::before {
    opacity: 0.7;
    border-color: #487d73;
}

.usp-icon i {
    font-size: 28px;
    color: #c36038;
    z-index: 1;
    position: relative;
    transition: all 0.4s ease;
}

.usp-item:hover .usp-icon i {
    color: #487d73;
    transform: scale(1.1);
}

/* USP Title */
.usp-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* USP Description */
.usp-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive USP */
@media (max-width: 1024px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .usp-item {
        padding: 32px 20px;
    }
    
    .usp-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }
    
    .usp-icon i {
        font-size: 24px;
    }
    
    .usp-title {
        font-size: 17px;
    }
    
    .usp-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .usp-item {
        padding: 32px 24px;
    }
}

/* ===================================
   TESTIMONIAL SECTION - Avis Clients
   =================================== */

.testimonial {
    background-color: #c36038;
    color: #ffffff;
}

.testimonial .section-title {
    color: #ffffff;
}

.testimonial-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 0px;
    margin-bottom: 48px;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.testimonial-item {
    text-align: center;
    padding: 48px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(195, 96, 56, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.testimonial-item:hover::before {
    border-color: rgba(255, 255, 255, 0.3);
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
}

.testimonial-item:hover::after {
    opacity: 1;
}

/* Testimonial Quote Icon */
.testimonial-quote {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
    display: block;
}

/* Testimonial Text */
.testimonial-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonial Stars */
.testimonial-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
}

.testimonial-stars i {
    opacity: 0.9;
}

/* Responsive Testimonial */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-item {
        padding: 40px 32px;
    }
    
    .testimonial-quote {
        font-size: 36px;
    }
    
    .testimonial-text {
        font-size: 17px;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .testimonial-item {
        padding: 32px 24px;
    }
    
    .testimonial-quote {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-stars {
        gap: 6px;
        font-size: 14px;
    }
}

/* ===================================
   CTA SECTION - Call to Action
   =================================== */

.cta {
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/10.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

/* CTA Title */
.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 24px;
}

/* CTA Text */
.cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin-bottom: 40px;
}

/* Button Large */
.btn-large {
    padding: 20px 56px;
    font-size: 13px;
    letter-spacing: 2.5px;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-content {
        padding: 60px 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 36px;
    }
    
    .btn-large {
        padding: 18px 48px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: 48px 24px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-text {
        font-size: 15px;
    }
    
    .btn-large {
        width: 100%;
        padding: 18px 24px;
    }
}

/* ===================================
   LEGAL PAGE - Mentions légales
   =================================== */

.legal-content {
    background-color: #ffffff;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.legal-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.legal-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, #487d73 0%, #c36038 100%);
}

.legal-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
}

.legal-text p {
    margin-bottom: 16px;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-text strong {
    color: #000000;
    font-weight: 600;
}

.legal-text a {
    color: #c36038;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-text a:hover {
    color: #487d73;
    border-bottom-color: #487d73;
}

.legal-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.legal-text ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.legal-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #c36038;
    transform: rotate(45deg);
}

/* Responsive Legal */
@media (max-width: 768px) {
    .legal-block {
        margin-bottom: 48px;
        padding-bottom: 48px;
    }
    
    .legal-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-left: 16px;
    }
    
    .legal-title::before {
        width: 3px;
    }
    
    .legal-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .legal-block {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .legal-title {
        font-size: 22px;
        padding-left: 14px;
    }
    
    .legal-text {
        font-size: 13px;
    }
    
    .legal-text ul li {
        padding-left: 24px;
    }
}

/* ===================================
   CONTACT PAGE - Formulaire et infos
   =================================== */

.contact-section {
    background-color: #faf6f0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(195, 96, 56, 0.02) 10px,
            rgba(195, 96, 56, 0.02) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(72, 125, 115, 0.015) 10px,
            rgba(72, 125, 115, 0.015) 20px
        );
    position: relative;
}

.contact-section::before {
    content: '✦';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #487d73;
    font-size: 24px;
    opacity: 0.3;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #487d73 20%, #c36038 50%, #487d73 80%, transparent);
    opacity: 0.4;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Side */
.contact-info-side {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 60px 40px;
    border: 3px solid #487d73;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-side::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(195, 96, 56, 0.3);
    pointer-events: none;
}

.contact-info-side::after {
    content: '✦ ✦ ✦';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #faf6f0;
    padding: 0 20px;
    color: #c36038;
    font-size: 12px;
    letter-spacing: 10px;
}

.contact-info-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 48px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 36px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    border: 2px solid #487d73;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(195, 96, 56, 0.3);
    transition: all 0.3s ease;
}

.contact-info-icon::after {
    content: '✦';
    position: absolute;
    top: -8px;
    right: -8px;
    color: #c36038;
    font-size: 10px;
    opacity: 0;
    transform: rotate(0deg) scale(0.5);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    border-color: #c36038;
    background: linear-gradient(135deg, #487d73 0%, #5a9589 100%);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.contact-info-item:hover .contact-info-icon::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-info-item:hover .contact-info-icon::after {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.contact-info-icon i {
    font-size: 22px;
    color: #487d73;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

.contact-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #487d73;
    margin-bottom: 8px;
}

.contact-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.contact-info-value a {
    color: #000000;
    transition: all 0.3s ease;
}

.contact-info-value a:hover {
    color: #487d73;
}

/* Contact Form Side */
.contact-form-side {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 60px 50px;
    border: 3px solid #487d73;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-side::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(195, 96, 56, 0.3);
    pointer-events: none;
}

.contact-form-side::after {
    content: '✦ ✦ ✦';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #faf6f0;
    padding: 0 20px;
    color: #c36038;
    font-size: 12px;
    letter-spacing: 10px;
}

.contact-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
}

.form-input,
.form-textarea {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid #e0e0e0;
    padding: 16px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #487d73;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    box-shadow: 
        0 0 0 3px rgba(72, 125, 115, 0.1),
        inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

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

.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-side {
        padding: 48px 32px;
    }
    
    .contact-info-title {
        font-size: 28px;
    }
    
    .contact-info-text {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .contact-info-list {
        gap: 28px;
    }
    
    .contact-info-item {
        padding-bottom: 28px;
    }
    
    .contact-form-side {
        padding: 48px 32px;
    }
    
    .contact-form-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .contact-info-side {
        padding: 40px 24px;
    }
    
    .contact-info-title {
        font-size: 24px;
    }
    
    .contact-info-item {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-icon i {
        font-size: 20px;
    }
    
    .contact-form-side {
        padding: 40px 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* ===================================
   FOOTER - Pied de page élégant
   =================================== */

.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Title */
.footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* Footer Heading */
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #487d73;
    margin-bottom: 24px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background-color: #c36038;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #da4d41;
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 20px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: #487d73;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #487d73;
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #487d73;
}

/* Responsive Footer */
@media (max-width: 768px) {

    .process-image-side {
        display: none;
    }
    .footer {
        padding: 60px 0 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-bottom {
        padding: 24px 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 48px 0 0 0;
    }
    
    .footer-grid {
        gap: 32px;
    }
    
    .footer-bottom-content {
        gap: 16px;
    }
}

