/* css/style.css */
/* RESET ET STYLES GÉNÉRAUX */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2a6b3f;
    --primary-light: #3a8c55;
    --secondary: #f5a623;
    --light: #f8f9fa;
    --dark: #1e2a38;
    --text: #333;
    --gray: #6c757d;
    --border: #e9ecef;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

/* BARRE DE NAVIGATION */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 12px 12px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--secondary);
}

/* Menu principal */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 17px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 12px;
    right: 12px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
}

.nav-links li a.active {
    color: var(--primary);
    background-color: rgba(42, 107, 63, 0.08);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 12px;
    right: 12px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

/* Boutons */
.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 107, 63, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(42, 107, 63, 0.05);
    transform: translateY(-2px);
}

/* Menu mobile (hamburger) */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}


/* RESPONSIVE DESIGN */
/* Tablette */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Menu mobile ouvert */
    .mobile-menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        gap: 15px;
        z-index: 999;
    }
    
    .mobile-menu-open .nav-buttons {
        display: flex;
        position: absolute;
        top: calc(90px + 260px);
        left: 20px;
        right: 20px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        justify-content: center;
        z-index: 999;
    }
    
    .mobile-menu-open .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-open .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .mobile-menu-open .hamburger span {
        background-color: var(--primary);
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .logo-text {
        font-size: 20px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .content {
        padding: 25px 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
}




/* SECTION ACCUEIL */

.home {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fbf8 0%, #eef7e9 100%);
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(42, 107, 63, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.home::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(245, 166, 35, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.home-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.home-text {
    flex: 1;
    max-width: 600px;
}

.home-text h1 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-text h1 span {
    color: var(--secondary);
    position: relative;
}

.home-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 166, 35, 0.3);
    z-index: -1;
}

.home-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.home-image {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.image-features {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
}

.feature {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(42, 107, 63, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature span {
    font-weight: 600;
    color: var(--dark);
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 992px) {
    .home-content {
        flex-direction: column;
        text-align: center;
    }
    
    .home-text {
        max-width: 100%;
    }
    
    .home-text h1 {
        font-size: 2.8rem;
    }
    
    .home-text h1 span::after {
        display: none;
    }
    
    .btn {
        margin: 0 auto;
    }
    
    .image-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home {
        padding: 80px 0;
    }
    
    .home-text h1 {
        font-size: 2.3rem;
    }
    
    .home-text p {
        font-size: 1.1rem;
    }
    
    .image-features {
        flex-wrap: wrap;
    }
    
    .feature {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .home {
        padding: 60px 0;
    }
    
    .home-text h1 {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}



/* =============== SECTION PRODUITS =============== */
.products {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f9fbf8 0%, #eef7e9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 166, 35, 0.3);
    z-index: -1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Filtres */
.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background: white;
    border: 2px solid var(--border);
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Grille de produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.product-rating span {
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 5px;
}

.product-description {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.origin {
    background: rgba(42, 107, 63, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 500;
}

.price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .product-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 span::after {
        height: 6px;
        bottom: 3px;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .product-meta {
        flex-direction: column;
        gap: 12px;
    }
}



/* =============== SECTION SERVICES =============== */
.services {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f9fbf8 0%, #eef7e9 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232a6b3f" fill-opacity="0.05" d="M0,224L60,208C120,192,240,160,360,154.7C480,149,600,171,720,165.3C840,160,960,128,1080,122.7C1200,117,1320,139,1380,149.3L1440,160L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 166, 35, 0.3);
    z-index: -1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Grille de services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(42, 107, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

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

.service-card h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.service-tag {
    background: rgba(245, 166, 35, 0.2);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: -15px auto 20px;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary);
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 4px;
}

.service-features li span {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.5;
}

.service-cta {
    text-align: center;
    margin-top: auto;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card.featured::before {
        top: 15px;
        right: -35px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-features li span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 span::after {
        height: 6px;
        bottom: 3px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .service-card.featured::before {
        top: 10px;
        right: -40px;
        font-size: 0.8rem;
    }
}



/* =============== SECTION ABOUT =============== */
.about {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f9fbf8 0%, #eef7e9 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232a6b3f" fill-opacity="0.05" d="M0,224L60,208C120,192,240,160,360,154.7C480,149,600,171,720,165.3C840,160,960,128,1080,122.7C1200,117,1320,139,1380,149.3L1440,160L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 166, 35, 0.3);
    z-index: -1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Contenu À Propos */
.about-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-photo {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.main-photo:hover img {
    transform: scale(1.03);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 107, 63, 0.85);
    color: white;
    padding: 20px;
    text-align: center;
}

.photo-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.photo-caption p {
    font-style: italic;
    opacity: 0.9;
}

.secondary-photos {
    display: flex;
    gap: 20px;
}

.photo-item {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(245, 166, 35, 0.85);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.photo-item:hover .overlay {
    background: rgba(42, 107, 63, 0.85);
}

.about-text {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.profile-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(42, 107, 63, 0.1);
}

.profile-header h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background: rgba(42, 107, 63, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-description {
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--dark);
}

.commitment {
    background: rgba(245, 166, 35, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary);
}

.commitment-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.commitment-item i {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 40px;
    margin-top: 5px;
}

.commitment-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.signature {
    text-align: right;
    border-top: 2px dashed rgba(42, 107, 63, 0.2);
    padding-top: 20px;
}

.signature img {
    height: 60px;
    margin-bottom: 10px;
}

.signature p {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .main-photo {
        height: 400px;
    }
    
    .photo-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
    
    .about-text {
        padding: 30px;
    }
    
    .profile-header h3 {
        font-size: 1.5rem;
    }
    
    .secondary-photos {
        flex-direction: column;
    }
    
    .photo-item {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 span::after {
        height: 6px;
        bottom: 3px;
    }
    
    .main-photo {
        height: 300px;
    }
    
    .tags {
        flex-direction: column;
    }
    
    .tags span {
        width: 100%;
        text-align: center;
    }
    
    .commitment-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .signature {
        text-align: center;
    }
}



/* =============== SECTION CONTACT =============== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fbf8 0%, #eef7e9 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%232a6b3f" fill-opacity="0.05" d="M0,224L60,208C120,192,240,160,360,154.7C480,149,600,171,720,165.3C840,160,960,128,1080,122.7C1200,117,1320,139,1380,149.3L1440,160L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(245, 166, 35, 0.3);
    z-index: -1;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Contenu Contact */
.contact-content {
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(42, 107, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.info-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-text p {
    color: var(--dark);
    font-size: 1.1rem;
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
}

.social-icon.instagram {
    background: var(--instagram);
}

.social-icon.tiktok {
    background: var(--tiktok);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Formulaire de contact */
.contact-form {
    flex: 1;
}

.contact-form form {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 107, 63, 0.1);
}

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

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form form {
        padding: 30px;
    }
    
    .info-card {
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 span::after {
        height: 6px;
        bottom: 3px;
    }
    
    .contact-info,
    .contact-form form {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
    }
}



/* =============== SECTION FOOTER =============== */
.footer {
    background: linear-gradient(135deg, #1e2a38 0%, #2a3b4d 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    padding: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.footer-logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-logo span span {
    color: var(--secondary);
}

.footer-description {
    color: #c2c7d0;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-newsletter h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-newsletter form {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.footer-newsletter button {
    width: 50px;
    background: var(--secondary);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background: var(--primary);
}

.footer-column h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

.footer-links li, .footer-services li, .footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-links a, .footer-services a {
    color: #c2c7d0;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.footer-links i, .footer-services i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.footer-contact li {
    gap: 15px;
    color: #c2c7d0;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.2rem;
    min-width: 20px;
}

.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition);
}

.social-icon.instagram {
    background: var(--instagram);
}

.social-icon.tiktok {
    background: var(--tiktok);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


/* CORRECTION MOBILE POUR LE BOUTON "RETOUR EN HAUT" */
.back-to-top {
    z-index: 10000; 
    transform: translateZ(0); 
    -webkit-transform: translateZ(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}/* CORRECTION MOBILE POUR LE BOUTON "RETOUR EN HAUT" */


.copyright {
    color: #c2c7d0;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #c2c7d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--secondary);
}

.back-to-top {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        padding: 15px 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-column h3 {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links, .footer-services {
        text-align: center;
    }
    
    .footer-links li, .footer-services li {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}