/* ============================================
               VARIABLES GLOBALES
               ============================================ */
:root {
    --primary-color: #0a0466;
    /* couleur principale */
    --primary-dark: #0a0466;
    /* version foncée, tu peux ajuster si besoin */
    --accent-color: #fe0001;
     --hero-overlay-gradient: linear-gradient(
        lab(14.55% 32.47 -39.13 / 0.9),
        rgba(93, 18, 77, 0.8)
    );
    /* couleur d’accent */
    --text-dark: #1f2937;
    --text-medium: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --font-serif: 'Raleway', sans-serif;
    --font-sans: 'Raleway', sans-serif;
    --sidebar-width: 22vw;
}


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

body {
    font-family: var(--font-sans);
    background-color: var(--background-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--primary-color);
}

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

/* ============================================
               SIDEBAR NAVIGATION
               ============================================ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--background-white);
    border-right: 1px solid var(--border-color);
    z-index: 50;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar.closed {
    transform: translateX(-100%);
}

.logo-section {
    margin-bottom: 3vw;
    display: flex;
    gap: 1.2vw;
    align-items: flex-start;
}

.logo-initials {
    font-size: 3.5vw;
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
}

.logo-text {
    border-left: 1px solid var(--text-light);
    padding-left: 1.2vw;
    padding-top: 0.3vw;
}

.logo-title {
    font-size: 1.5vw;
    font-weight: bold;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.8vw;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 0.3vw;
}

.sidebar-nav {
    flex-grow: 1;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 1vw;
    text-align: center;
}

.nav-item {
    position: relative;
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
    transition: color 0.3s;
    display: inline-block;
    padding-bottom: 0.15vw;
    text-transform: uppercase;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -0.6vw;
    left: 50%;
    transform: translateX(-50%);
    width: 0.6vw;
    height: 0.6vw;
    background-color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-item:hover::after,
.nav-item.active::after {
    opacity: 1;
}

.sidebar-footer {
    margin-top: auto;
    font-size: 0.1vw;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
               MOBILE HEADER
               ============================================ */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    background: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 30;
    padding: 1.5vw 3vw;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.8vw;
}

.mobile-logo-initials {
    font-size: 2.5vw;
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-weight: bold;
}

.mobile-logo-text {
    font-size: 1.2vw;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu-toggle {
    color: var(--primary-color);
    padding: 0.8vw;
    font-size: 2.5vw;
    border: none;
    background: none;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
}

.overlay.active {
    display: block;
}

/* ============================================
               MAIN CONTENT
               ============================================ */
.main-content {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.3s;
}

/* ============================================
               FOOTER
               ============================================ */
.footer {
    padding: 3vw 4vw;
    font-size: 1vw;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 85vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5vw;
}

.footer-links {
    display: flex;
    gap: 1.5vw;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ============================================
               RESPONSIVE
               ============================================ */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 30vw;
    }

    .sidebar {
        width: 30vw;
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .mobile-header {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .sidebar-nav li {
        text-align: left;
    }

    .nav-item::after {
        left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 640px) {
    :root {
        --sidebar-width: 70vw;
    }

    body {
        font-size: 3.5vw;
    }

    .sidebar {
        width: 70vw;
        padding: 8vw 6vw;
    }

    .logo-initials {
        font-size: 8vw;
    }

    .logo-title {
        font-size: 3.5vw;
    }

    .logo-subtitle {
        font-size: 2vw;
    }

    .nav-item {
        font-size: 3vw;
    }

    .sidebar-footer {
        font-size: 2.5vw;
    }

    .footer {
        font-size: 2.5vw;
        padding: 5vw 6vw;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
           HERO SECTION
           ============================================ */
.section-hero {
    width: 100%;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    min-height: 70vh;
}

.hero-mosaic {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100vh;
}

.mosaic-item {
    overflow: hidden;
    /* min-height: 25vw; */
}

.mosaic-logo {
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 4.5vw;
    font-family: var(--font-serif);
}

.mosaic-image {
    grid-column: span 1;
}

.mosaic-image-wide {
    grid-column: span 2;
}

.mosaic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.mosaic-image:hover img {
    filter: grayscale(0%);
}

.hero-quote {
    width: 50%;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-content {
    max-width: 32vw;
}

.quote-mark {
    font-size: 4.5vw;
    font-family: var(--font-serif);
    display: block;
    margin-bottom: 2vw;
}

.quote-text {
    font-size: 2.5vw;
    font-family: var(--font-serif);
    line-height: 1.3;
    font-style: italic;
    color: var(--text-white);
}

.quote-line {
    width: 4vw;
    height: 1px;
    background: var(--text-white);
    margin-top: 3vw;
}

/* ============================================
           SECTIONS GÉNÉRIQUES
           ============================================ */
.content-section {
    /* padding: 8vw 4vw; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5vw;
    /* max-width: 100vw;
    margin: 0 auto; */
    height: 100vh;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

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

.section-image {
    flex: 1;
    min-width: 25vw;
    display: flex;
    justify-content: center;
}

.section-text {
    flex: 1;
    min-width: 25vw;
}

.section-title {
    font-size: 2.8vw;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 2vw;
}

.section-divider {
    width: 5vw;
    height: 0.3vw;
    background: var(--accent-color);
    margin-bottom: 3vw;
}

.section-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 3vw;
    font-size: 1.3vw;
    font-weight: 300;
}

/* ============================================
           IMAGE ORGANIQUE
           ============================================ */
.image-container-organic {
    position: relative;
    width: 100%;
    max-width: 32vw;
    aspect-ratio: 1/1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: #fcebc5;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    z-index: 1;
    box-shadow: 0 0.7vw 1.75vw rgba(0, 0, 0, 0.1);
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }

    50% {
        border-radius: 58% 42% 30% 70% / 55% 55% 45% 45%;
    }
}

.blob-accent {
    position: absolute;
    bottom: 8%;
    right: 8%;
    width: 35%;
    height: 35%;
    background-color: var(--accent-color);
    border-radius: 35% 65% 55% 45% / 50% 35% 65% 50%;
    z-index: 4;
    box-shadow: 0 0.6vw 1.4vw rgba(209, 98, 68, 0.3);
    animation: blob-accent-morph 6s ease-in-out infinite;
}

@keyframes blob-accent-morph {

    0%,
    100% {
        border-radius: 35% 65% 55% 45% / 50% 35% 65% 50%;
        transform: translate(0, 0);
    }

    50% {
        border-radius: 65% 35% 45% 55% / 35% 65% 35% 65%;
        transform: translate(-0.3vw, 0.3vw);
    }
}

.portrait-img {
    position: relative;
    z-index: 3;
    width: 110%;
    height: 120%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 1.4vw 2.8vw rgba(0, 0, 0, 0.25));
    transition: transform 0.5s ease;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 30%,
            rgba(0, 0, 0, 0.95) 60%,
            rgba(0, 0, 0, 0.7) 80%,
            rgba(0, 0, 0, 0) 100%);
}

.image-container-organic:hover .portrait-img {
    transform: scale(1.08) translateY(-0.8vw);
}

/* ============================================
           BOUTON EXPERT
           ============================================ */
.btn-expert {
    display: inline-flex;
    align-items: center;
    gap: 1vw;
    /* margin-top: 2vw; */
    transition: all 0.3s;
}

.btn-expert:hover {
    gap: 1.3vw;
}

.btn-circle {
    background-color: var(--text-dark);
    color: var(--text-white);
    width: 6vw;
    height: 3.5vw;
    border-radius: 50% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1vw;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-expert:hover .btn-circle {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

.btn-label {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.btn-expert:hover .btn-label {
    color: var(--primary-color);
}

.btn-line {
    width: 3vw;
    height: 1px;
    background-color: var(--text-dark);
    transition: width 0.3s;
}

.btn-expert:hover .btn-line {
    width: 3.5vw;
}

/* ============================================
           SERVICES
           ============================================ */
.services-section {
    /* padding: 8vw 2vw;
    max-width: 90vw;
    margin: 0 auto;
    border-top: 1px solid var(--background-gray); */
    padding-top: 4vw;
    height: 100vh;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4vw 3vw;
}

.services-header h2 {
    font-size: 2.5vw;
    font-family: var(--font-serif);
    color: var(--text-dark);
    margin-bottom: 1vw;
}

.services-link {
    font-size: 0.9vw;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    transition: gap 0.3s ease;
}

.services-link:hover {
    gap: 1vw;
}

.service-item {
    display: flex;
    gap: 1.5vw;
    align-items: flex-start;
}

.service-icon {
    width: 4vw;
    height: 4vw;
    border: 1px solid var(--background-gray);
    border-radius: 0.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.service-icon i {
    font-size: 1.5vw;
    color: var(--primary-color);
}

.service-item:hover .service-icon {
    background-color: var(--background-light);
}

.service-content h4 {
    font-size: 1.5vw;
    font-family: var(--font-serif);
    color: var(--text-dark);
    margin-bottom: 0.5vw;
    transition: color 0.3s ease;
}

.service-item:hover h4 {
    color: var(--primary-color);
}

.service-content p {
    font-size: 1vw;
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 20vw;
}

/* ============================================
           ACTUALITÉS
           ============================================ */
.news-section {
    position: relative;
    overflow: hidden;
}

.news-banner {
    position: absolute;
    top: 0;
    left: 0;
    height: 35vw;
    width: 100%;
    background: var(--primary-dark);
}

.news-container {
    position: relative;
    /* padding: 8vw 2vw 6vw; */
    /* max-width: 100vw; */
    /* margin: auto; */
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4vw;
    gap: 2vw;
}

.news-title {
    display: flex;
    align-items: center;
    color: var(--text-white);
}

.news-title span {
    opacity: 0.4;
    font-size: 2.5vw;
    margin-right: 1vw;
}

.news-title h2 {
    font-size: 2.5vw;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--text-white) !important;
}

.news-link {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    color: var(--text-white);
    text-decoration: none;
}

.news-link span {
    font-size: 1vw;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.3vw;
}

.news-arrow {
    width: 4vw;
    height: 4vw;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewX(-12deg);
}

.news-scroll {
    display: flex;
    gap: 2vw;
    padding-bottom: 2vw;

    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.news-card {
    width: 28vw;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-0.4vw);
}

.news-image {
    height: 15vw;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.news-card:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.news-content {
    padding: 2vw;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-content h3 {
    font-size: 1.3vw;
    margin-bottom: 1vw;
    color: var(--text-dark);
}

.news-content p {
    color: var(--text-medium);
    font-size: 1vw;
    line-height: 1.6;
    flex-grow: 1;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 1vw;
    font-size: 0.9vw;
    color: var(--text-light);
}

/* ============================================
           ÉQUIPE
           ============================================ */
.team-section {
    /* padding: 8vw 2vw; */
}

.team-container {
    max-width: 100vw;
    margin: auto;
}

.team-header {
    margin-bottom: 3vw;
}

.team-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw;
}

.team-title span {
    font-size: 2.5vw;
    margin-right: 1vw;
    opacity: 0.4;
    color: var(--primary-color);
}

.team-title h2 {
    font-size: 2.5vw;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.team-header p {
    max-width: 45vw;
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.1vw;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18vw, 1fr));
    gap: 2.5vw;
}

.team-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-0.4vw);
}

.team-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 2vw;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

.team-card:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.team-card h3 {
    font-size: 1.2vw;
    margin-bottom: 0.3vw;
    color: var(--text-dark);
}

.team-card .role {
    font-size: 0.8vw;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: bold;
}

.team-card p {
    font-size: 1vw;
    color: var(--text-medium);
    font-style: italic;
}

.team-cta {
    display: flex;
    justify-content: center;
    margin-top: 3vw;
    margin-bottom: 3vw;
}

.team-cta button {
    padding: 1vw 3vw;
    border: 1px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: bold;
    transform: skewX(-12deg);
    cursor: pointer;
    font-size: 0.9vw;
}

.team-cta button:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* ============================================
       SECTION CONTACT
       ============================================ */
.contact-section {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 3vw 4vw;
}

.contact-content {
    max-width: 70vw;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 3.5vw;
    font-family: var(--font-serif);
    margin-bottom: 2vw;
    color: var(--text-white);
}

.contact-subtitle {
    font-size: 1.5vw;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 2vw;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3vw;
    margin-bottom: 2vw;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2vw;
}

.contact-icon {
    font-size: 1.8vw;
    color: var(--accent-color);
}

.contact-text {
    font-size: 1.3vw;
    font-weight: 500;
}

.btn-contact {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 1.2vw 3.5vw;
    border: none;
    border-radius: 50vw;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.9vw;
}

.btn-contact:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: translateY(-0.2vw);
}

/* ============================================
       RESPONSIVE DESIGN - Index spécifique
       ============================================ */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .hero-mosaic,
    .hero-quote {
        width: 100%;
    } */

    .hero-quote {
        padding: 6vw 4vw;
    }

    .quote-text {
        font-size: 2.2vw;
    }

    .contact-title {
        font-size: 3.2vw;
    }

    .logo-initials {
        font-size: 4vw;
    }

    .logo-title {
        font-size: 1.8vw;
    }
}

@media (max-width: 1024px) {

    .hero-mosaic,
    .hero-quote {
        width: 100%;
    }
}

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

    .mosaic-image-wide {
        grid-column: span 1;
    }

    .quote-text {
        font-size: 4vw;
    }

    .quote-mark {
        font-size: 6vw;
    }

    .contact-info {
        flex-direction: column;
        gap: 4vw;
    }

    .contact-title {
        font-size: 6vw;
    }

    .contact-subtitle {
        font-size: 3.5vw;
    }

    .contact-text {
        font-size: 3.5vw;
    }

    .btn-contact {
        font-size: 2.5vw;
        padding: 3vw 8vw;
    }

    /* Services section */
    .services-header h2 {
        font-size: 5vw;
    }

    .services-link {
        font-size: 2.5vw;
    }

    .service-icon {
        width: 10vw;
        height: 10vw;
    }

    .service-icon i {
        font-size: 4vw;
    }

    .service-content h4 {
        font-size: 4vw;
    }

    .service-content p {
        font-size: 3vw;
        max-width: 50vw;
    }

    /* News section */
    .news-title h2 {
        font-size: 4vw;
    }

    .news-title span {
        font-size: 4vw;
    }

    .news-link span {
        font-size: 2.5vw;
    }

    .news-card {
        width: 70vw;
    }

    .news-image {
        height: 35vw;
    }

    .news-content h3 {
        font-size: 4vw;
    }

    .news-content p {
        font-size: 3vw;
    }

    .news-footer {
        font-size: 2.5vw;
    }

    /* Team section */
    .team-title h2 {
        font-size: 4vw;
    }

    .team-title span {
        font-size: 4vw;
    }

    .team-header p {
        font-size: 3.5vw;
        max-width: 80vw;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(40vw, 1fr));
    }

    .team-card h3 {
        font-size: 4vw;
    }

    .team-card .role {
        font-size: 2.5vw;
    }

    .team-card p {
        font-size: 3vw;
    }

    .team-cta button {
        font-size: 2.5vw;
        padding: 3vw 6vw;
    }
}


    /* ============================================
   STYLES SPÉCIFIQUES À LA PAGE CONTACT
   ============================================ */

    /* ============================================
   HERO SECTION CONTACT
   ============================================ */
    .contact-hero {
        background:  var(--hero-overlay-gradient), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        color: var(--text-white);
        padding: 12vw 4vw 8vw;
        text-align: center;
    }

    .contact-hero-content {
        max-width: 80vw;
        margin: 0 auto;
    }

    .contact-hero h1 {
        font-size: 4vw;
        color: var(--text-white);
        margin-bottom: 2vw;
        font-weight: 700;
    }

    .contact-hero p {
        font-size: 1.5vw;
        max-width: 60vw;
        margin: 0 auto 3vw;
        opacity: 0.9;
        line-height: 1.8;
    }

    /* ============================================
   SECTION CONTACT PRINCIPALE
   ============================================ */
    .contact-main-section {
        padding: 8vw 4vw;
        background-color: var(--background-light);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5vw;
        max-width: 120vw;
        margin: 0 auto;
    }

    /* Formulaire de contact */
    .contact-form-section {
        background: var(--background-white);
        padding: 4vw;
        border-radius: var(--border-radius, 0.8vw);
        box-shadow: var(--shadow-light);
    }

    .form-header {
        margin-bottom: 3vw;
    }

    .form-header h2 {
        font-size: 2.5vw;
        margin-bottom: 1vw;
        color: var(--primary-color);
    }

    .form-header p {
        color: var(--text-medium);
        font-size: 1.2vw;
    }

    .form-group {
        margin-bottom: 2.5vw;
    }

    .form-label {
        display: block;
        margin-bottom: 0.8vw;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1.1vw;
    }

    .form-control {
        width: 100%;
        padding: 1.2vw;
        border: 1px solid var(--border-color);
        border-radius: 0.5vw;
        font-family: var(--font-sans);
        font-size: 1.1vw;
        transition: all 0.3s ease;
        background-color: var(--background-light);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(93, 18, 77, 0.1);
        background-color: var(--background-white);
    }

    textarea.form-control {
        min-height: 15vw;
        resize: vertical;
    }

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

    .btn-submit {
        background-color: var(--primary-color);
        color: var(--text-white);
        padding: 1.5vw 4vw;
        border-radius: 0.5vw;
        font-size: 1.2vw;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
        gap: 1vw;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background-color: var(--primary-dark);
        transform: translateY(-0.2vw);
        box-shadow: 0 0.5vw 1.5vw rgba(93, 18, 77, 0.2);
    }

    .btn-submit i {
        font-size: 1.5vw;
    }

    /* Informations de contact */
    .contact-info-section {
        display: flex;
        flex-direction: column;
        gap: 4vw;
    }

    .info-card {
        background: var(--background-white);
        padding: 3vw;
        border-radius: var(--border-radius, 0.8vw);
        box-shadow: var(--shadow-light);
    }

    .info-card h3 {
        font-size: 2vw;
        margin-bottom: 2vw;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        gap: 1vw;
    }

    .info-card h3 i {
        color: var(--accent-color);
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1.5vw;
    }

    .contact-detail {
        display: flex;
        align-items: flex-start;
        gap: 1.5vw;
        padding: 1.5vw 0;
        border-bottom: 1px solid var(--border-light);
    }

    .contact-detail:last-child {
        border-bottom: none;
    }

    .contact-icon {
        width: 3vw;
        height: auto;
    }

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

    .contact-detail-content h4 {
        font-size: 1.2vw;
        margin-bottom: 0.5vw;
        color: var(--text-dark);
    }

    .contact-detail-content p {
        color: var(--text-medium);
        font-size: 1.1vw;
        line-height: 1.6;
    }

    .contact-detail-content a {
        color: var(--primary-color);
        font-weight: 500;
    }

    .contact-detail-content a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

    /* Horaires */
    .hours-list {
        list-style: none;
    }

    .hour-item {
        display: flex;
        justify-content: space-between;
        padding: 1.2vw 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 1.1vw;
    }

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

    .day {
        color: var(--text-dark);
        font-weight: 500;
    }

    .hours {
        color: var(--text-medium);
    }

    .closed {
        color: var(--accent-color);
        font-weight: 500;
    }

    /* ============================================
   CARTE INTERACTIVE
   ============================================ */
    .map-section {
        padding: 0 4vw 8vw;
    }

    .map-container {
        max-width: 120vw;
        margin: 0 auto;
    }

    .map-header {
        text-align: center;
        margin-bottom: 3vw;
    }

    .map-header h2 {
        font-size: 2.5vw;
        margin-bottom: 1vw;
        color: var(--primary-color);
    }

    .map-header p {
        color: var(--text-medium);
        font-size: 1.2vw;
        max-width: 60vw;
        margin: 0 auto;
    }

    #map {
        height: 40vw;
        border-radius: var(--border-radius, 0.8vw);
        overflow: hidden;
        box-shadow: var(--shadow-light);
    }

    /* ============================================
   FAQ / QUESTIONS FRÉQUENTES
   ============================================ */
    .faq-section {
        padding: 8vw 4vw;
        background-color: var(--background-white);
    }

    .faq-container {
        max-width: 100vw;
        margin: 0 auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 5vw;
    }

    .faq-header h2 {
        font-size: 2.8vw;
        margin-bottom: 1.5vw;
        color: var(--primary-color);
    }

    .faq-header p {
        color: var(--text-medium);
        font-size: 1.3vw;
        max-width: 70vw;
        margin: 0 auto;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .faq-item {
        background: var(--background-light);
        border-radius: var(--border-radius, 0.8vw);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-0.5vw);
        box-shadow: var(--shadow-light);
    }

    .faq-question {
        padding: 2.5vw;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--background-white);
        border-bottom: 1px solid var(--border-light);
    }

    .faq-question h3 {
        font-size: 1.5vw;
        color: var(--text-dark);
        margin: 0;
    }

    .faq-toggle {
        font-size: 1.5vw;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

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

    .faq-answer {
        padding: 0 2.5vw;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item.active .faq-answer {
        padding: 2.5vw;
        max-height: 50vw;
    }

    .faq-answer p {
        color: var(--text-medium);
        font-size: 1.2vw;
        line-height: 1.7;
    }

    /* ============================================
   CTA DE CONTACT
   ============================================ */
    .contact-cta {
        background-color: var(--primary-color);
        color: var(--text-white);
        padding: 8vw 4vw;
        text-align: center;
    }

    .cta-content {
        max-width: 70vw;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 3vw;
        color: var(--text-white);
        margin-bottom: 2vw;
    }

    .cta-content p {
        font-size: 1.5vw;
        opacity: 0.9;
        margin-bottom: 3vw;
        line-height: 1.8;
    }

    .cta-buttons {
        display: flex;
        gap: 2vw;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-phone {
        background-color: var(--accent-color);
        color: var(--text-white);
        padding: 1.5vw 3vw;
        border-radius: 0.5vw;
        font-size: 1.2vw;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 1vw;
        transition: all 0.3s ease;
    }

    .btn-phone:hover {
        background-color: #e57359;
        transform: translateY(-0.2vw);
        box-shadow: 0 0.5vw 1.5vw rgba(209, 98, 68, 0.3);
    }

    .btn-email {
        background-color: transparent;
        color: var(--text-white);
        padding: 1.5vw 3vw;
        border-radius: 0.5vw;
        font-size: 1.2vw;
        font-weight: 600;
        border: 2px solid var(--text-white);
        display: inline-flex;
        align-items: center;
        gap: 1vw;
        transition: all 0.3s ease;
    }

    .btn-email:hover {
        background-color: var(--text-white);
        color: var(--primary-color);
        transform: translateY(-0.2vw);
    }

    /* ============================================
   ANIMATIONS
   ============================================ */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(2vw);
        }

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

    .contact-form-section,
    .info-card {
        animation: fadeIn 0.6s ease-out forwards;
    }

    /* ============================================
   RESPONSIVE DESIGN - Contact spécifique
   ============================================ */
    @media (max-width: 1024px) {
        .contact-hero h1 {
            font-size: 5vw;
        }

        .contact-hero p {
            font-size: 2vw;
        }

        .contact-container {
            grid-template-columns: 1fr;
            gap: 8vw;
        }

        .form-header h2,
        .map-header h2,
        .faq-header h2,
        .info-card h3 {
            font-size: 3vw;
        }

        .btn-submit,
        .btn-phone,
        .btn-email {
            font-size: 1.5vw;
            padding: 2vw 5vw;
        }

        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .contact-hero {
            padding: 15vw 4vw 10vw;
        }

        .contact-hero h1 {
            font-size: 7vw;
        }

        .contact-hero p {
            font-size: 3.5vw;
        }

        .contact-main-section {
            padding: 10vw 4vw;
        }

        .form-header h2,
        .map-header h2,
        .faq-header h2,
        .info-card h3 {
            font-size: 5vw;
        }

        .form-header p,
        .map-header p,
        .faq-header p {
            font-size: 3.5vw;
        }

        .form-label,
        .form-control,
        .contact-detail-content p,
        .hour-item {
            font-size: 3vw;
        }

        .form-control {
            padding: 3vw;
        }

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

        .btn-submit,
        .btn-phone,
        .btn-email {
            font-size: 3vw;
            padding: 3vw 6vw;
            width: 100%;
            justify-content: center;
        }

        .cta-buttons {
            flex-direction: column;
            gap: 3vw;
        }

        .cta-content h2 {
            font-size: 5vw;
        }

        .cta-content p {
            font-size: 3.5vw;
        }

        #map {
            height: 60vw;
        }

        .faq-question h3 {
            font-size: 3.5vw;
        }

        .faq-answer p {
            font-size: 3vw;
        }

        .contact-detail {
            flex-direction: column;
            gap: 3vw;
        }

        .contact-icon {
            width: 8vw;
            height: 8vw;
        }

        .contact-icon i {
            font-size: 3vw;
        }
    }

    /* ============================================
   STYLES SPÉCIFIQUES À LA PAGE ARTICLES
   ============================================ */

    /* ============================================
   HERO SECTION ARTICLES
   ============================================ */
    .articles-hero {
        background:  var(--hero-overlay-gradient),url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
        color: var(--text-white);
        padding: 12vw 4vw 8vw;
        text-align: center;
    }

    .articles-hero-content {
        max-width: 80vw;
        margin: 0 auto;
    }

    .articles-hero h1 {
        font-size: 4vw;
        color: var(--text-white);
        margin-bottom: 2vw;
        font-weight: 700;
    }

    .articles-hero p {
        font-size: 1.5vw;
        max-width: 60vw;
        margin: 0 auto 3vw;
        opacity: 0.9;
        line-height: 1.8;
    }

    /* ============================================
   SECTION FILTRES CATÉGORIES
   ============================================ */
    .filters-section {
        background-color: var(--background-light);
        padding: 4vw;
        border-bottom: 1px solid var(--border-color);
    }

    .filters-container {
        max-width: 120vw;
        margin: 0 auto;
    }

    .filters-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3vw;
        flex-wrap: wrap;
        gap: 2vw;
    }

    .filters-header h2 {
        font-size: 2.5vw;
        color: var(--primary-color);
    }

    .search-box {
        position: relative;
        flex-grow: 1;
        max-width: 40vw;
    }

    .search-input {
        width: 100%;
        padding: 1.2vw 1.2vw 1.2vw 4vw;
        border: 1px solid var(--border-color);
        border-radius: 0.5vw;
        font-size: 1.1vw;
        background-color: var(--background-white);
        transition: all 0.3s ease;
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(93, 18, 77, 0.1);
    }

    .search-icon {
        position: absolute;
        left: 1.5vw;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        font-size: 1.2vw;
    }

    .category-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 1vw;
        margin-top: 2vw;
    }

    .filter-btn {
        padding: 0.8vw 2vw;
        background-color: var(--background-white);
        border: 1px solid var(--border-color);
        border-radius: 2vw;
        font-size: 1vw;
        color: var(--text-medium);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .filter-btn:hover {
        background-color: var(--primary-color);
        color: var(--text-white);
        border-color: var(--primary-color);
    }

    .filter-btn.active {
        background-color: var(--primary-color);
        color: var(--text-white);
        border-color: var(--primary-color);
    }

    .filter-count {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-white);
        font-size: 0.8vw;
        padding: 0.2vw 0.6vw;
        border-radius: 1vw;
        margin-left: 0.5vw;
    }

    /* ============================================
   SECTION ARTICLES GRID
   ============================================ */
    .articles-section {
        padding: 6vw 4vw;
        background-color: var(--background-white);
    }

    .articles-container {
        max-width: 120vw;
        margin: 0 auto;
    }

    .articles-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4vw;
    }

    .articles-header h2 {
        font-size: 2.5vw;
        color: var(--primary-color);
    }

    .articles-count {
        font-size: 1.2vw;
        color: var(--text-medium);
    }

    .articles-count span {
        font-weight: 600;
        color: var(--primary-color);
    }

    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(30vw, 1fr));
        gap: 4vw;
        margin-bottom: 6vw;
    }

    .article-card {
        background: var(--background-white);
        border-radius: var(--border-radius, 0.8vw);
        overflow: hidden;
        box-shadow: var(--shadow-light);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .article-card:hover {
        transform: translateY(-0.5vw);
        box-shadow: var(--shadow-medium);
    }

    .article-image {
        height: 20vw;
        overflow: hidden;
    }

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .article-content {
        padding: 3vw;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .article-category {
        display: inline-block;
        padding: 0.5vw 1.2vw;
        background-color: rgba(93, 18, 77, 0.1);
        color: var(--primary-color);
        font-size: 0.9vw;
        font-weight: 600;
        border-radius: 2vw;
        margin-bottom: 1.5vw;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .article-title {
        font-size: 1.8vw;
        margin-bottom: 1.5vw;
        line-height: 1.4;
        color: var(--text-dark);
        flex-grow: 1;
    }

    .article-excerpt {
        color: var(--text-medium);
        font-size: 1.1vw;
        line-height: 1.7;
        margin-bottom: 2vw;
    }

    .article-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2vw;
        border-top: 1px solid var(--border-light);
        font-size: 0.9vw;
        color: var(--text-light);
    }

    .article-date {
        display: flex;
        align-items: center;
        gap: 0.5vw;
    }

    .article-read-time {
        display: flex;
        align-items: center;
        gap: 0.5vw;
    }

    .btn-read-more {
        display: inline-flex;
        align-items: center;
        gap: 0.8vw;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 1vw;
        transition: gap 0.3s ease;
    }

    .btn-read-more:hover {
        gap: 1.2vw;
    }

    /* ============================================
   PAGINATION
   ============================================ */
    .pagination-section {
        padding: 3vw 4vw;
        background-color: var(--background-light);
        text-align: center;
    }

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1vw;
    }

    .pagination-btn {
        width: 4vw;
        height: 4vw;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border-color);
        border-radius: 50%;
        background-color: var(--background-white);
        font-size: 1.2vw;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .pagination-btn:hover {
        background-color: var(--primary-color);
        color: var(--text-white);
        border-color: var(--primary-color);
    }

    .pagination-btn.active {
        background-color: var(--primary-color);
        color: var(--text-white);
        border-color: var(--primary-color);
    }

    .pagination-dots {
        color: var(--text-light);
        font-size: 1.2vw;
        margin: 0 0.5vw;
    }

    /* ============================================
   NEWSLETTER
   ============================================ */
    .newsletter-section {
        background-color: var(--primary-color);
        color: var(--text-white);
        padding: 8vw 4vw;
        text-align: center;
    }

    .newsletter-container {
        max-width: 70vw;
        margin: 0 auto;
    }

    .newsletter-content h2 {
        font-size: 3vw;
        color: var(--text-white);
        margin-bottom: 2vw;
    }

    .newsletter-content p {
        font-size: 1.5vw;
        opacity: 0.9;
        margin-bottom: 3vw;
        line-height: 1.8;
    }

    .newsletter-form {
        display: flex;
        gap: 1vw;
        max-width: 60vw;
        margin: 0 auto;
    }

    .newsletter-input {
        flex-grow: 1;
        padding: 1.5vw;
        border: none;
        border-radius: 0.5vw;
        font-size: 1.2vw;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .newsletter-input:focus {
        outline: none;
        background-color: var(--text-white);
    }

    .btn-newsletter {
        background-color: var(--accent-color);
        color: var(--text-white);
        padding: 1.5vw 3vw;
        border-radius: 0.5vw;
        font-size: 1.2vw;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-newsletter:hover {
        background-color: #e57359;
        transform: translateY(-0.2vw);
        box-shadow: 0 0.5vw 1.5vw rgba(209, 98, 68, 0.3);
    }

    /* ============================================
   ANIMATIONS ET ÉTATS
   ============================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(2vw);
        }

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

    .article-card {
        animation: fadeInUp 0.5s ease-out forwards;
    }

    .loading {
        opacity: 0.5;
        pointer-events: none;
    }

    .no-results {
        grid-column: 1 / -1;
        text-align: center;
        padding: 8vw;
        color: var(--text-medium);
        font-size: 1.5vw;
    }

    /* ============================================
   RESPONSIVE DESIGN - Articles spécifique
   ============================================ */
    @media (max-width: 1024px) {
        .articles-hero h1 {
            font-size: 5vw;
        }

        .articles-hero p {
            font-size: 2vw;
        }

        .articles-grid {
            grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr));
        }

        .article-image {
            height: 25vw;
        }

        .article-title {
            font-size: 2.2vw;
        }

        .article-excerpt {
            font-size: 1.5vw;
        }

        .filters-header h2 {
            font-size: 3vw;
        }

        .newsletter-content h2 {
            font-size: 3.5vw;
        }

        .newsletter-form {
            flex-direction: column;
        }
    }

    @media (max-width: 640px) {
        .articles-hero {
            padding: 15vw 4vw 10vw;
        }

        .articles-hero h1 {
            font-size: 7vw;
        }

        .articles-hero p {
            font-size: 3.5vw;
        }

        .filters-section {
            padding: 6vw 4vw;
        }

        .filters-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 3vw;
        }

        .filters-header h2 {
            font-size: 5vw;
        }

        .search-box {
            max-width: 100%;
        }

        .search-input {
            padding: 3vw 3vw 3vw 10vw;
            font-size: 3.5vw;
        }

        .search-icon {
            left: 3vw;
            font-size: 3vw;
        }

        .filter-btn {
            padding: 1.5vw 4vw;
            font-size: 3vw;
            border-radius: 4vw;
        }

        .filter-count {
            font-size: 2.5vw;
            padding: 0.5vw 1.5vw;
        }

        .articles-section {
            padding: 8vw 4vw;
        }

        .articles-header h2 {
            font-size: 5vw;
        }

        .articles-count {
            font-size: 3vw;
        }

        .articles-grid {
            grid-template-columns: 1fr;
            gap: 6vw;
        }

        .article-image {
            height: 40vw;
        }

        .article-category {
            font-size: 2.5vw;
            padding: 1vw 3vw;
        }

        .article-title {
            font-size: 4vw;
        }

        .article-excerpt {
            font-size: 3.5vw;
        }

        .article-meta {
            font-size: 2.5vw;
        }

        .btn-read-more {
            font-size: 3vw;
        }

        .pagination-btn {
            width: 8vw;
            height: 8vw;
            font-size: 3vw;
        }

        .newsletter-content h2 {
            font-size: 5vw;
        }

        .newsletter-content p {
            font-size: 3.5vw;
        }

        .newsletter-input {
            padding: 3vw;
            font-size: 3.5vw;
        }

        .btn-newsletter {
            padding: 3vw;
            font-size: 3.5vw;
        }
    }
