@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --anthracite: #383838;
    --beige-makuria: #E5D3B3;
    --brun-chene: #4A3728;
}

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

body {
    font-family: 'Montserrat', sans-serif;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled .desktop-nav {
    background-color: var(--anthracite);
    padding: 1rem 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-header .desktop-nav {
    background-color: transparent;
}

.page-header.scrolled .desktop-nav {
    background-color: var(--anthracite);
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.desktop-links {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.desktop-links a {
    color: var(--beige-makuria);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

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

.desktop-links a:hover::after {
    width: 100%;
}

.nav-contact {
    padding: 0.8rem 2rem !important;
    border: 1px solid var(--beige-makuria);
    border-radius: 3px;
}

.nav-contact:hover {
    background-color: var(--beige-makuria);
    color: var(--anthracite) !important;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--anthracite);
    z-index: 1000;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--beige-makuria);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.mobile-nav.active .menu-icon {
    background-color: transparent;
}

.mobile-nav.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-nav.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--anthracite);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav.active .mobile-menu {
    display: block;
    opacity: 1;
}

.menu-content {
    padding: 100px 2rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    margin-bottom: 3rem;
}

.nav-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--beige-makuria);
    opacity: 0.6;
}

.mobile-links {
    list-style: none;
    margin-bottom: auto;
}

.mobile-links li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.mobile-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--beige-makuria);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
}

.link-number {
    font-size: 1rem;
    opacity: 0.5;
}

.mobile-nav-footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 211, 179, 0.1);
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beige-makuria);
    opacity: 0.6;
}

.info-item a {
    color: var(--beige-makuria);
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.info-item a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 992px) {
    .desktop-nav {
        padding: 1.5rem 2rem;
    }

    .header.scrolled .desktop-nav {
        padding: 1rem 2rem;
    }

    .desktop-links {
        gap: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('./assets/images/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--beige-makuria);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(56, 56, 56, 0.98),
        rgba(56, 56, 56, 0.95) 40%,
        rgba(74, 55, 40, 0.8)
    );
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6rem;
}

.hero-main {
    max-width: 800px;
    margin-top: 80px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--beige-makuria);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-accent {
    display: block;
    font-size: 1.8rem;
    color: var(--beige-makuria);
    opacity: 0.8;
    margin-top: 1rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2.5rem;
    background-color: transparent;
    border: 1px solid var(--beige-makuria);
    color: var(--beige-makuria);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--beige-makuria);
    color: var(--anthracite);
}

.hero-cta i {
    transition: transform 0.3s ease;
}

.hero-cta:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-line {
    width: 40px;
    height: 1px;
    background-color: var(--beige-makuria);
    opacity: 0.3;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

@media screen and (max-width: 1200px) {
    .hero-content {
        padding: 0 3rem;
    }

    .hero h1 {
        font-size: 3.8rem;
    }
}

@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-accent {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-content {
        padding: 0 2rem;
        gap: 4rem;
    }

    .hero-main {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-description br {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-content {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-accent {
        font-size: 1.3rem;
    }

    .hero-tag {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background-color: white;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    background-color: var(--anthracite);
    color: var(--beige-makuria);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-radius: 3px;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--anthracite), var(--brun-chene));
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(56, 56, 56, 0.1),
        rgba(74, 55, 40, 0.7)
    );
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        to bottom,
        rgba(56, 56, 56, 0.2),
        rgba(74, 55, 40, 0.8)
    );
}

.service-image h3 {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--beige-makuria);
    font-size: 1.8rem;
    font-weight: 400;
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-card:hover h3 {
    transform: translateY(-10px);
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
}

.services-footer p {
    color: var(--anthracite);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    border: 2px solid var(--anthracite);
    color: var(--anthracite);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.services-cta:hover {
    background-color: var(--anthracite);
    color: var(--beige-makuria);
}

@media screen and (max-width: 1024px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .services {
        padding: 6rem 1.5rem;
    }

    .services-header h2 {
        font-size: 2.2rem;
    }

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

    .service-card {
        height: 300px;
    }

    .service-image h3 {
        font-size: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .services {
        padding: 4rem 1rem;
    }

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

    .service-card {
        height: 250px;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .services-footer p {
        font-size: 1rem;
    }
}

/* Production Section */
.production {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, #e2d0b2da, #413b355d);
    position: relative;
    overflow: hidden;
}

.production-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.production-text {
    padding-right: 2rem;
}

.production-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.production-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--anthracite);
    margin-bottom: 3rem;
}

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

.production-feature {
    text-align: center;
}

.production-feature i {
    font-size: 2rem;
    color: var(--brun-chene);
    margin-bottom: 1rem;
}

.production-feature h3 {
    font-size: 1.2rem;
    color: var(--anthracite);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.production-feature p {
    font-size: 0.9rem;
    color: var(--anthracite);
    line-height: 1.4;
}

.production-visual {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.production-image {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.main-image {
    width: 80%;
    height: 70%;
    object-fit: cover;
    top: 0;
    right: 0;
    z-index: 2;
}

.secondary-image {
    width: 60%;
    height: 50%;
    object-fit: cover;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.visual-container:hover .main-image {
    transform: translateY(-10px);
}

.visual-container:hover .secondary-image {
    transform: translateY(10px);
}

.visual-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: linear-gradient(45deg, var(--anthracite) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

@media screen and (max-width: 1200px) {
    .production-content {
        gap: 2rem;
    }

    .production-text h2 {
        font-size: 2.4rem;
    }

    .production-visual {
        height: 500px;
    }
}

@media screen and (max-width: 992px) {
    .production-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .production-text {
        padding-right: 0;
    }

    .production-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .production-visual {
        height: 400px;
        margin-top: 2rem;
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .production {
        padding: 6rem 1.5rem;
    }

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

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

    .production-feature {
        max-width: 300px;
        margin: 0 auto;
    }

    .visual-container {
        display: none; /* On peut cacher les images en mobile si elles prennent trop de place */
    }
}

@media screen and (max-width: 480px) {
    .production {
        padding: 4rem 1rem;
    }

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

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

/* Clients Section */
.clients {
    padding: 8rem 2rem;
    background-color: white;
    position: relative;
}

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

.clients h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.clients .header-line {
    margin-bottom: 4rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin: 0 auto;
    max-width: 1000px;
}

.client-category {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.client-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--anthracite), transparent);
}

.client-category i {
    font-size: 2.5rem;
    color: var(--anthracite);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.client-category h3 {
    font-size: 1.4rem;
    color: var(--brun-chene);
    margin-bottom: 1rem;
    font-weight: 500;
}

.client-category p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--anthracite);
    opacity: 0.9;
}

.clients-quote {
    margin-top: 5rem;
    position: relative;
    padding: 0 2rem;
}

.clients-quote::before {
    content: '"';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--anthracite);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.clients-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--anthracite);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

@media screen and (max-width: 992px) {
    .clients h2 {
        font-size: 2.4rem;
    }

    .clients-grid {
        gap: 2rem;
    }

    .client-category {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .clients {
        padding: 6rem 1.5rem;
    }

    .clients h2 {
        font-size: 2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .clients-quote blockquote {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .clients {
        padding: 4rem 1rem;
    }

    .clients h2 {
        font-size: 1.8rem;
    }

    .client-category i {
        font-size: 2rem;
    }

    .client-category h3 {
        font-size: 1.2rem;
    }

    .clients-quote {
        margin-top: 3rem;
    }
}

/* Made in France Section */
.made-in-france {
    height: 100vh;
    background-image: url('./assets/images/france.jpg'); /* Image d'un atelier premium/élégant */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--beige-makuria);
}

.france-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(56, 56, 56, 0.95),
        rgba(74, 55, 40, 0.85)
    );
}

.france-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.france-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: rgba(229, 211, 179, 0.1);
    border: 1px solid var(--beige-makuria);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.france-content h2 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.france-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.france-separator {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--beige-makuria), transparent);
    margin: 2rem auto;
}

.france-signature {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .made-in-france {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1.5rem;
        background-attachment: scroll;
    }

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

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

    .france-badge {
        padding: 0.6rem 1.2rem;
    }

    .badge-icon {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .france-content h2 {
        font-size: 2rem;
    }

    .france-content p {
        font-size: 1rem;
    }

    .france-separator {
        height: 40px;
        margin: 1.5rem auto;
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background-color: white;
    position: relative;
}

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

.faq h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin: 1rem 0 1.5rem;
}

.faq .header-line {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.faq-item {
    background-color: white;
    border: 1px solid rgba(74, 55, 40, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brun-chene);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--anthracite);
    margin: 0;
    padding-right: 2rem;
}

.faq-icon {
    color: var(--brun-chene);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--anthracite);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-item.active {
    background-color: rgba(229, 211, 179, 0.05);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(74, 55, 40, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 6rem 1.5rem;
    }

    .faq h2 {
        font-size: 2.2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .faq {
        padding: 4rem 1rem;
    }

    .faq h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
    }
}

/* Footer */
.footer {
    background-color: var(--anthracite);
    color: var(--beige-makuria);
    padding: 5rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-nav-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--beige-makuria);
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column li {
    margin-bottom: 0.8rem;
}

.footer-nav-column a {
    color: var(--beige-makuria);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav-column a:hover {
    opacity: 1;
}

.footer-nav-column i {
    margin-right: 0.5rem;
    color: var(--beige-makuria);
}

.footer-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--beige-makuria), transparent);
    opacity: 0.1;
    margin-bottom: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.copyright {
    opacity: 0.7;
}

.legal-link {
    color: var(--beige-makuria);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-link:hover {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-logo {
        max-width: 100%;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media screen and (max-width: 480px) {
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-logo img {
        height: 50px;
    }
}

/* Ajouter ces styles pour le logo texte */
.logo h2 {
    color: var(--beige-makuria);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    transition: opacity 0.3s ease;
}

.logo h2:hover {
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .logo h2 {
        font-size: 1rem;
    }
}

/* Pour le footer */
.footer-logo h2 {
    color: var(--beige-makuria);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Prestations Section */
.prestation-services {
    padding: 8rem 0;
    background-color: white;
}

.prestation-item {
    display: flex;
    align-items: stretch;
    min-height: 600px;
    position: relative;
}

.prestation-item:not(:last-child) {
    margin-bottom: 2px;
}

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

.prestation-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.prestation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(74, 55, 40, 0.2),
        rgba(74, 55, 40, 0)
    );
    transition: opacity 0.3s ease;
}

.prestation-item.reverse .prestation-overlay {
    background: linear-gradient(
        to left,
        rgba(74, 55, 40, 0.2),
        rgba(74, 55, 40, 0)
    );
}

.prestation-content {
    flex: 1;
    padding: 6rem 8rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prestation-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-left: 45px;
}

.prestation-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background-color: var(--brun-chene);
}

.prestation-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.prestation-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--brun-chene), transparent);
    margin-bottom: 2rem;
}

.prestation-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--anthracite);
    opacity: 0.9;
    margin-bottom: 3rem;
}

.prestation-features {
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.prestation-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--anthracite);
}

.prestation-features i {
    color: var(--brun-chene);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Hover Effects */
.prestation-item:hover .prestation-overlay {
    opacity: 0.9;
}

/* Media Queries */
@media screen and (max-width: 1400px) {
    .prestation-content {
        padding: 5rem 6rem;
    }

    .prestation-content h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 1200px) {
    .prestation-content {
        padding: 4rem;
    }

    .prestation-content h2 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 992px) {
    .prestation-services {
        padding: 4rem 0;
    }

    .prestation-item {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .prestation-item.reverse {
        flex-direction: column;
    }

    .prestation-image {
        height: 500px;
    }

    .prestation-overlay {
        background: linear-gradient(
            to bottom,
            rgba(74, 55, 40, 0.1),
            rgba(74, 55, 40, 0.3)
        );
    }

    .prestation-item.reverse .prestation-overlay {
        background: linear-gradient(
            to bottom,
            rgba(74, 55, 40, 0.1),
            rgba(74, 55, 40, 0.3)
        );
    }

    .prestation-content {
        padding: 4rem;
    }

    .prestation-nav-list {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .prestation-image {
        height: 400px;
    }

    .prestation-content {
        padding: 3rem 2rem;
    }

    .prestation-content h2 {
        font-size: 2rem;
    }

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

@media screen and (max-width: 480px) {
    .prestation-services {
        padding: 2rem 0;
    }

    .prestation-image {
        height: 350px;
    }

    .prestation-overlay {
        background: linear-gradient(
            to bottom,
            rgba(74, 55, 40, 0.1),
            rgba(74, 55, 40, 0.4)
        );
    }

    .prestation-content {
        padding: 2rem 1.5rem;
    }

    .prestation-content h2 {
        font-size: 1.8rem;
    }
}

/* Prestation Navigation - Version ligne */
.prestation-nav {
    background-color: white;
    padding: 0;
    margin: 0;
}

.prestation-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.prestation-nav-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.prestation-nav-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    padding: 2rem 0;
    color: var(--anthracite);
    transition: all 0.3s ease;
    position: relative;
}

.nav-number {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brun-chene);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-label {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brun-chene);
    transition: width 0.3s ease;
}

.prestation-nav-link:hover .nav-line,
.prestation-nav-link.active .nav-line {
    width: 100%;
}

.prestation-nav-link:hover .nav-number,
.prestation-nav-link.active .nav-number {
    opacity: 1;
}

.prestation-nav-link:hover,
.prestation-nav-link.active {
    color: var(--brun-chene);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .prestation-nav-container {
        padding: 0 2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .prestation-nav-list {
        min-width: max-content;
        gap: 3rem;
        padding: 0 1rem;
    }

    .prestation-nav-link {
        padding: 1.5rem 0;
    }
}

@media screen and (max-width: 768px) {
    .prestation-nav-container {
        padding: 0 1rem;
    }

    .prestation-nav-list {
        gap: 2rem;
    }

    .prestation-nav-link {
        gap: 1rem;
        padding: 1.2rem 0;
    }

    .nav-number {
        font-size: 0.7rem;
    }

    .nav-label {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .prestation-nav-list {
        gap: 1.5rem;
    }

    .nav-number {
        display: none;
    }

    .prestation-nav-link {
        padding: 1rem 0;
    }
}

/* Contact CTA Section */
.contact-cta {
    position: relative;
    padding: 8rem 2rem;
    background-image: url('./assets/images/atelier.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--beige-makuria);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(
        to right,
        rgba(56, 56, 56, 0.98),
        rgba(56, 56, 56, 0.95) 40%,
        rgba(74, 55, 40, 0.8)
    );
}

.cta-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.cta-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--beige-makuria);
    margin-bottom: 2rem;
}

.cta-container h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.cta-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--beige-makuria), transparent);
    margin: 0 auto 2rem;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--beige-makuria);
    color: var(--brun-chene);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    transform: translateY(-2px);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.contact-phone {
    color: var(--beige-makuria);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
    transition: opacity 0.3s ease;
}

.contact-phone:hover {
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .contact-cta {
        padding: 6rem 2rem;
    }

    .cta-container h2 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .cta-container h2 {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-description br {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-cta {
        padding: 4rem 1.5rem;
    }

    .cta-container h2 {
        font-size: 1.8rem;
    }

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

    .contact-phone {
        font-size: 1.2rem;
    }
}

/* Process Section */
.process {
    padding: 8rem 2rem;
    background-color: white;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 6rem;
}

.process-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--anthracite);
    color: var(--beige-makuria);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.process-tag::before {
    content: '🇫🇷';
    font-size: 1.2rem;
}

.process-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.process-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--brun-chene), transparent);
    margin: 0 auto 2rem;
}

.process-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--anthracite);
    opacity: 0.9;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        var(--brun-chene), 
        var(--brun-chene), 
        transparent
    );
    opacity: 0.2;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.timeline-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--brun-chene);
    opacity: 0.15;
    margin-bottom: 2rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--brun-chene);
    margin-bottom: 1rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--anthracite);
    opacity: 0.9;
}

.timeline-icon {
    margin-top: 2rem;
}

.timeline-icon i {
    font-size: 1.8rem;
    color: var(--brun-chene);
    opacity: 0.8;
}

.process-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    height: 400px;
}

.gallery-image {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(74, 55, 40, 0.2),
        rgba(74, 55, 40, 0.4)
    );
    transition: all 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
    background: linear-gradient(
        to bottom,
        rgba(74, 55, 40, 0.1),
        rgba(74, 55, 40, 0.3)
    );
}

.gallery-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 400;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    color: var(--anthracite);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover {
    color: var(--brun-chene);
}

.pagination-numbers {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.current-page {
    color: var(--brun-chene);
    font-size: 1.8rem;
}

.total-pages {
    color: var(--anthracite);
    opacity: 0.5;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .gallery-section {
        padding: 6rem 1.5rem;
    }

    .gallery-header h2 {
        font-size: 2.5rem;
    }

    .gallery-filters {
        gap: 1rem;
    }

    .filter-btn {
        padding: 0.8rem 1.5rem;
    }

    .gallery-grid {
        gap: 1rem;
    }
}

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

    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-filters {
        width: 100%;
    }
    
    .filter-btn {
        max-width: 100%;
        padding: 0.7rem 0.8rem;
    }
    
    .filter-number {
        font-size: 0.7rem;
        width: 25px;
    }
    
    .filter-label {
        font-size: 0.9rem;
    }

    .pagination-btn span {
        display: none;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 2rem;
    background-color: white;
}

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

.gallery-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.gallery-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.gallery-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--brun-chene), transparent);
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.filter-number {
    font-size: 0.8rem;
    color: var(--brun-chene);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.filter-label {
    font-size: 1rem;
    color: var(--anthracite);
    transition: color 0.3s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--brun-chene);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 30px;
}

.filter-btn:hover .filter-number,
.filter-btn.active .filter-number {
    opacity: 1;
}

.filter-btn:hover .filter-label,
.filter-btn.active .filter-label {
    color: var(--brun-chene);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(74, 55, 40, 0),
        rgba(74, 55, 40, 0.8)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 400;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    color: var(--anthracite);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn:not(:disabled):hover {
    color: var(--brun-chene);
}

.pagination-numbers {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1.2rem;
}

.current-page {
    color: var(--brun-chene);
    font-size: 1.8rem;
}

.total-pages {
    color: var(--anthracite);
    opacity: 0.5;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .gallery-section {
        padding: 6rem 1.5rem;
    }

    .gallery-header h2 {
        font-size: 2.5rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1rem;
        flex-direction: row;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(74, 55, 40, 0.1);
    }
    
    .filter-number {
        width: 30px;
        text-align: left;
        margin-right: 1rem;
    }
    
    .filter-label {
        text-align: left;
    }
    
    .filter-btn::after {
        display: none;
    }
    
    .filter-btn:hover,
    .filter-btn.active {
        background-color: rgba(74, 55, 40, 0.05);
    }

    .gallery-grid {
        gap: 1rem;
    }
}

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

    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-filters {
        width: 100%;
    }
    
    .filter-btn {
        max-width: 100%;
        padding: 0.7rem 0.8rem;
    }
    
    .filter-number {
        font-size: 0.7rem;
        width: 25px;
    }
    
    .filter-label {
        font-size: 0.9rem;
    }

    .pagination-btn span {
        display: none;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background-color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.contact-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--brun-chene), transparent);
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--anthracite);
    opacity: 0.9;
    margin-bottom: 4rem;
}

.info-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--beige-makuria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: var(--brun-chene);
    font-size: 1rem;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brun-chene);
    margin-bottom: 0.5rem;
}

.info-content p,
.info-content a {
    font-size: 1.1rem;
    color: var(--anthracite);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--brun-chene);
}

.contact-hours {
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 55, 40, 0.1);
}

.hours-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brun-chene);
    margin-bottom: 1rem;
}

.contact-hours p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--anthracite);
}

/* Form Styles */
.contact-form {
    background-color: white;
    padding: 3rem;
    border: 1px solid rgba(74, 55, 40, 0.1);
    border-radius: 8px;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brun-chene);
    margin-bottom: 1rem;
}

.optional {
    font-size: 0.8rem;
    color: var(--anthracite);
    opacity: 0.6;
    text-transform: none;
    letter-spacing: normal;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(74, 55, 40, 0.1);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--anthracite);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brun-chene);
    box-shadow: 0 0 0 2px rgba(74, 55, 40, 0.1);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2.5rem;
    background-color: var(--brun-chene);
    color: var(--beige-makuria);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--anthracite);
    transform: translateY(-2px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-info h2 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 6rem 1.5rem;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

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

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

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .info-item {
        gap: 1rem;
    }

    .info-icon {
        width: 35px;
        height: 35px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Legal Section */
.legal-section {
    padding: 12rem 2rem 8rem;
    background-color: white;
}

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

.legal-header {
    text-align: center;
    margin-bottom: 6rem;
}

.legal-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.legal-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.legal-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--brun-chene), transparent);
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 4rem;
}

.legal-block h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--brun-chene);
    margin-bottom: 1.5rem;
}

.legal-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--anthracite);
    opacity: 0.9;
}

.legal-block strong {
    color: var(--brun-chene);
    font-weight: 500;
}

.legal-block a {
    color: var(--brun-chene);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-block a:hover {
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .legal-section {
        padding: 8rem 1.5rem 6rem;
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }

    .legal-block h2 {
        font-size: 1.5rem;
    }

    .legal-block p {
        font-size: 1rem;
    }
}

/* Process Timeline Responsive */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        var(--brun-chene), 
        var(--brun-chene), 
        transparent
    );
    opacity: 0.2;
}

@media screen and (max-width: 1200px) {
    .process-timeline {
        gap: 1.5rem;
    }

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

    .timeline-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-item {
        padding: 1.5rem;
        position: relative;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--brun-chene), transparent);
        opacity: 0.2;
    }
}

@media screen and (max-width: 768px) {
    .process {
        padding: 6rem 1.5rem;
    }

    .process-header {
        margin-bottom: 4rem;
    }

    .process-header h2 {
        font-size: 2.2rem;
    }

    .process-timeline {
        gap: 2rem;
    }

    .timeline-number {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

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

@media screen and (max-width: 480px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        padding: 1.5rem 1rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .timeline-number {
        font-size: 2.2rem;
    }

    .timeline-content p {
        max-width: 250px;
        margin: 0 auto;
    }

    .process-header h2 br {
        display: none;
    }
} 

.reactivite-paris {
    margin:2rem 0;
    line-height: 1.5;
}

.prestations-menuiseries-flex {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.prestations-menuiseries-flex .prestation-features {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .prestations-menuiseries-flex {
        flex-direction: column;
    }
    
    .prestations-menuiseries-flex .prestation-features {
        width: 100%;
    }
    
}
