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

:root {
    /* Palette de couleurs verte/bleue */
    --primary-green: #2d5f3f;
    --secondary-green: #4a7c59;
    --light-green: #7fb069;
    --accent-blue: #2c5f88;
    --light-blue: #4a90a4;
    --sage-green: #9caf88;
    
    /* Couleurs neutres */
    --white: #ffffff;
    --cream: #faf8f5;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    
    /* Typographie */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Espacements */
    --section-padding: 80px 0;
    --container-padding: 0 30px;
    --max-width: 1200px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}


/* Boutons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    box-sizing: border-box;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-brand h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-brand a {
    text-decoration: none;
    display: inline-block;
}

.nav-logo {
    height: 60px;
    width: auto;
    border-radius: 12px;
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-family: var(--font-secondary);
    transition: var(--transition);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(45, 95, 63, 0.4), rgba(74, 124, 89, 0.4)), 
                url('./images/hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

/* Hero spécifique pour la page exploitation */
.hero-exploitation {
    background: linear-gradient(rgba(45, 95, 63, 0.4), rgba(74, 124, 89, 0.4)), 
                url('./images/2.jpeg') center/cover no-repeat;
}

/* Hero spécifique pour la page engagements */
.hero-engagements {
    background: linear-gradient(rgba(45, 95, 63, 0.5), rgba(74, 124, 89, 0.5)), 
                url('./images/3.jpeg') center/cover no-repeat;
}

/* Hero spécifique pour la page produits */
.hero-produits {
    background: linear-gradient(rgba(45, 95, 63, 0.4), rgba(74, 124, 89, 0.4)), 
                url('./images/image-13.jpg') center/cover no-repeat;
}

/* Hero spécifique pour la page contact */
.hero-contact {
    background: linear-gradient(rgba(45, 95, 63, 0.5), rgba(74, 124, 89, 0.5)), 
                url('./images/image-15.png') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
}

/* Hero spécifique pour la page mentions légales */
.hero-legal {
    background: linear-gradient(rgba(45, 95, 63, 0.6), rgba(74, 124, 89, 0.6)), 
                url('./images/4.jpeg') center/cover no-repeat;
    height: 70vh;
    min-height: 400px;
}

@media screen and (max-width: 768px) {
    .hero {
        height: 120vh;
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.bio-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-badge i {
    color: var(--light-green);
    font-size: 1rem;
}

/* Styles pour le logo Agriculture Biologique */
.ab-logo {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ab-logo-large {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.ab-logo-footer {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0.8;
}

.hero-scroll span {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin: 10px auto;
    animation: scroll 2s infinite;
}

/* Sections */
section {
    padding: var(--section-padding);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin: -1rem auto 3rem auto;
    max-width: 600px;
    font-style: italic;
}

/* About Preview */
.about-preview {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-highlight {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 2rem;
    padding: 20px;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(127, 176, 105, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.highlight-number {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.highlight-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.feature-item span:last-child {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 95, 63, 0.2);
}

/* Banner de certification bio */
.bio-certification-banner {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.08), rgba(127, 176, 105, 0.08));
    border-radius: 20px;
    border: 2px solid var(--light-green);
    margin: 2rem 0;
    transition: var(--transition);
}

.bio-certification-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.15);
    border-color: var(--primary-green);
}

.certification-text h4 {
    color: var(--primary-green);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.certification-text p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
}

/* Products Preview */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

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

.product-card.featured {
    border: 2px solid var(--light-green);
}

.product-card.featured::before {
    content: 'Nouveau !';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card h3 i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.product-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-highlight {
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(127, 176, 105, 0.05));
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-green);
    margin-top: 1rem;
}

.product-highlight span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-green);
    font-family: var(--font-secondary);
}

.product-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding: 12px 15px;
    background: var(--light-blue);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
}

.product-hours i {
    font-size: 1rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.03), rgba(127, 176, 105, 0.03));
    border-radius: 15px;
    border: 1px solid rgba(45, 95, 63, 0.1);
}

.products-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-green);
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 95, 63, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reviews-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.reviews-rating {
    display: inline-block;
}

.rating-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 2rem 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(45, 95, 63, 0.1);
}

.rating-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.rating-score {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray);
    font-family: var(--font-secondary);
    font-weight: 500;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(45, 95, 63, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.highlight {
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.02), rgba(127, 176, 105, 0.02));
    border-color: rgba(45, 95, 63, 0.15);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.quote-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 1.5rem 0 2rem 0;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(45, 95, 63, 0.1);
}

.author-name {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.author-stars {
    display: flex;
    gap: 2px;
}

.author-stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Commitments Preview */
.commitments-preview {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--accent-blue) 100%);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.commitments-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/5.jpeg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.commitments-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.commitments-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.commitments-preview h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -1px;
}

.commitments-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.values-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.value-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.value-item:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-item h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 4rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-section h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bio-certification {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bio-certification i {
    color: var(--light-green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: var(--light-green);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link.facebook {
    color: #4267B2;
}

.social-link.facebook:hover {
    color: #4267B2;
    background: rgba(66, 103, 178, 0.15);
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.instagram:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.15);
}

.social-link span {
    color: var(--white);
    font-weight: 500;
}

.footer-schedule {
    padding: 1rem;
    border-radius: 10px;
}

.footer-schedule h5 {
    margin-bottom: 0.5rem;
    color: var(--light-green);
}

.footer-schedule p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-nav li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   STYLES SPÉCIFIQUES PAGE EXPLOITATION
   ======================================== */

/* Section Histoire Familiale */
.family-story {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
    padding: 6rem 0;
    position: relative;
}

.family-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/pattern-bg.svg') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.story-header {
    margin-bottom: 3rem;
}

.story-header h2 {
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--dark-green);
    font-size: 2.5rem;
    line-height: 1.2;
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(45, 95, 63, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(45, 95, 63, 0.2);
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heritage-badge i {
    color: var(--light-green);
    font-size: 1rem;
}

.story-narrative {
    margin-bottom: 3rem;
}

.story-chapter {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.story-chapter:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(45, 95, 63, 0.2);
}

.chapter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.2);
}

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

.chapter-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.chapter-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1rem;
}

.story-quote {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.story-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.story-quote blockquote {
    margin: 0;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.quote-author span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quote-author small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.story-visuals {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: var(--white);
}

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

.years {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.legacy {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heritage-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-item {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 3px solid var(--light-green);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-item.special {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-top-color: var(--white);
}

.highlight-number {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.highlight-item.special .highlight-number {
    color: var(--white);
}

.highlight-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 500;
}

.highlight-item.special span {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Chiffres clés avec fond d'image */
.key-numbers {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(45, 95, 63, 0.7)), 
                url('./images/4.jpeg') center/cover no-repeat fixed;
    padding: 6rem 0;
    color: var(--white);
}

.key-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.8), rgba(74, 124, 89, 0.6));
    pointer-events: none;
}

.numbers-overlay {
    position: relative;
    z-index: 2;
}

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

.numbers-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.numbers-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.number-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.number-card:hover::before {
    opacity: 1;
}

.number-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.number-card.highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(127, 176, 105, 0.5);
    box-shadow: 0 8px 25px rgba(127, 176, 105, 0.2);
}

.number-card.highlight:hover {
    border-color: rgba(127, 176, 105, 0.8);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.number-card.highlight .card-icon {
    background: rgba(127, 176, 105, 0.3);
    border-color: rgba(127, 176, 105, 0.5);
}

.number-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.number-card.highlight:hover .card-icon {
    background: rgba(127, 176, 105, 0.5);
    border-color: rgba(127, 176, 105, 0.8);
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.number {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.number-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.numbers-footer {
    text-align: center;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 16px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.achievement-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.achievement-badge i {
    color: #ffd700;
    font-size: 1.2rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

/* Section Méthodes d'élevage */
.farming-methods {
    background: var(--light-gray);
    padding: 5rem 0;
}

.farming-methods h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--light-green);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-green);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.method-card:hover .method-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.method-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Section Production */
.production-section {
    background: var(--white);
    padding: 5rem 0;
}

.production-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.production-text h2 {
    margin-bottom: 2rem;
}

.production-highlight {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 3rem;
    padding: 25px;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(127, 176, 105, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.production-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.production-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.production-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.production-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.production-info h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.production-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.production-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   STYLES SPÉCIFIQUES PAGE ENGAGEMENTS
   ======================================== */

/* Hero Engagements - Badges de valeurs */
.values-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.value-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.value-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.value-badge i {
    font-size: 1rem;
}

.value-badge:nth-child(1) i { color: #ff6b6b; }
.value-badge:nth-child(2) i { color: var(--light-green); }
.value-badge:nth-child(3) i { color: #4ecdc4; }

/* Section Valeurs */
.values-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

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

.values-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--light-green);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(45, 95, 63, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-green);
}

.value-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.2);
}

.value-card:hover .value-icon-large {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.value-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

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

.value-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.value-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(45, 95, 63, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.detail-item:hover {
    background: rgba(45, 95, 63, 0.1);
    transform: translateX(5px);
}

.detail-item i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 16px;
}

.detail-item span {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Section Impact Environnemental */
.environmental-impact {
    background: var(--white);
    padding: 6rem 0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.impact-text h2 {
    margin-bottom: 2rem;
    font-size: 2.3rem;
}

.impact-highlight {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 3rem;
    padding: 25px;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(127, 176, 105, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

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

.action-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.action-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.action-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.action-content p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.impact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eco-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 3rem 2rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 15px 40px rgba(45, 95, 63, 0.2);
}

.stat-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-weight: 500;
}

/* ========================================
   STYLES SPÉCIFIQUES PAGE PRODUITS
   ======================================== */

/* Section Nos Productions */
.our-products {
    background: var(--light-gray);
    padding: 6rem 0;
}

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

.products-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.main-product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

.main-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}

.product-info {
    padding: 3rem 2.5rem;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.2);
}

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

.main-product-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(45, 95, 63, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.feature:hover {
    background: rgba(45, 95, 63, 0.1);
    transform: translateX(3px);
}

.feature i {
    color: var(--primary-green);
    font-size: 1rem;
}

.feature span {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.product-details {
    border-top: 1px solid rgba(45, 95, 63, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-details .detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.detail-value {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Section Magasin à la Ferme */
.farm-store {
    background: var(--white);
    padding: 6rem 0;
}

.store-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.store-info h2 {
    margin-bottom: 2rem;
    font-size: 2.3rem;
    color: var(--primary-green);
}

.store-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(127, 176, 105, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.store-highlight i {
    font-size: 2rem;
    color: var(--primary-green);
}

.highlight-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.highlight-detail {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
}

.store-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.store-hours {
    margin-bottom: 2.5rem;
}

.store-hours h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(45, 95, 63, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--light-green);
}

.hours-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.hours-item span {
    color: var(--gray);
    font-weight: 500;
    font-size: 1rem;
}

.store-services {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 95, 63, 0.1);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--light-green);
}

.service-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.service-item span {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.store-visual {
    display: flex;
    justify-content: center;
}

.store-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.store-image:hover {
    transform: scale(1.02);
}

.store-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Section Produits Partenaires */
.partner-products {
    background: var(--light-gray);
    padding: 6rem 0;
}

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

.partners-header h2 {
    margin-bottom: 1rem;
    font-size: 2.3rem;
}

.partners-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.partner-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 3px solid var(--light-green);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-green);
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition);
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

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

.partner-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.partner-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.partners-footer {
    text-align: center;
}

.quality-commitment {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
}

.quality-commitment i {
    color: #ffd700;
    font-size: 1.3rem;
}

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

/* Section Contact Principal */
.main-contact {
    background: var(--light-gray);
    padding: 6rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

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

.contact-header h2 {
    margin-bottom: 1rem;
    font-size: 2.3rem;
    color: var(--primary-green);
}

.contact-subtitle {
    color: var(--gray);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--light-green);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-green);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: scale(1.1);
}

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

.contact-info-text h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info-text p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.social-link-contact.facebook {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.social-link-contact.facebook:hover {
    background: #3b5998;
    color: var(--white);
    transform: translateY(-2px);
}

.social-link-contact.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
}

.social-link-contact.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    transform: translateY(-2px);
}

.store-hours-contact {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--primary-green);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.hours-header i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.hours-header h3 {
    color: var(--primary-green);
    margin: 0;
    font-size: 1.3rem;
}

.hours-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(45, 95, 63, 0.05);
    border-radius: 10px;
}

.hours-item-contact .day {
    color: var(--primary-green);
    font-weight: 600;
}

.hours-item-contact .time {
    color: var(--gray);
    font-weight: 500;
}

/* Formulaire de contact */
.contact-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-green);
}

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

.form-header h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-subtitle {
    color: var(--gray);
    font-style: italic;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid rgba(45, 95, 63, 0.2);
    background: transparent;
    font-size: 1rem;
    color: var(--gray);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-green);
}

.form-group textarea {
    border-bottom: 2px solid rgba(45, 95, 63, 0.2);
    min-height: 120px;
}

.form-group textarea::placeholder {
    color: rgba(102, 102, 102, 0.6);
    font-style: italic;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transition: var(--transition);
}

.form-group input:focus + .form-line
 {
    width: 100%;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.btn-form {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 95, 63, 0.3);
}

.btn-form i {
    font-size: 1rem;
}

/* Checkbox personnalisée */
.checkbox-container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--white);
    border: 2px solid var(--gray);
    border-radius: 3px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-green);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--primary-green);
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

/* Section Carte */
.map-section {
    background: var(--white);
    padding: 6rem 0;
}

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

.map-header h2 {
    margin-bottom: 1rem;
    font-size: 2.3rem;
    color: var(--primary-green);
}

.map-subtitle {
    color: var(--gray);
    font-style: italic;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    text-align: center;
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--light-gray);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.map-directions i {
    font-size: 1.2rem;
}

/* ========================================
   STYLES SPÉCIFIQUES PAGE MENTIONS LÉGALES
   ======================================== */

/* Section Contenu Légal */
.legal-content {
    background: var(--light-gray);
    padding: 6rem 0;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    transition: var(--transition);
    border-left: 4px solid var(--light-green);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.legal-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-green);
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(45, 95, 63, 0.2);
    min-width: 80px;
}

.legal-section:hover .legal-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: scale(1.05);
}

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

.legal-text {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.legal-text h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
}

.detail-group h4 {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-group p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.legal-details p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
    min-width: 0;
}

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

.legal-details a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-details a:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

/* Section Contact dans les mentions légales */
.contact-legal {
    background: linear-gradient(135deg, rgba(45, 95, 63, 0.05), rgba(127, 176, 105, 0.05));
    border-left-color: var(--primary-green);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    min-width: 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-method span {
    color: var(--gray);
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.contact-method a {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-method a:hover {
    color: var(--secondary-green);
    text-decoration: underline;
}

/* Footer des mentions légales */
.legal-footer {
    margin-top: 4rem;
    text-align: center;
}

.update-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-green);
    font-weight: 500;
    border: 2px solid var(--light-green);
}

.update-info i {
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0%, 20% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    80%, 100% {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo {
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(45, 95, 63, 0.95), rgba(74, 124, 89, 0.95));
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Force les liens à rester blancs quand le menu mobile est ouvert */
    .nav-menu.active .nav-link {
        color: var(--white) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    }

    .nav-menu.active .nav-link:hover {
        color: var(--light-green) !important;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

    .about-image {
        order: -1;
    }

    .about-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .bio-certification-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .ab-logo-large {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

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

    .product-card.featured::before {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .products-cta {
        padding: 1.5rem;
    }

    .rating-link {
        padding: 1.5rem 2rem;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .quote-icon {
        width: 45px;
        height: 45px;
        top: -12px;
        left: 25px;
    }

    .quote-icon i {
        font-size: 1rem;
    }

    .commitments-preview {
        min-height: 60vh;
    }

    .values-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        margin: auto;
        max-width: 100%;
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
        max-width: none;
    }

    .contact-info {
        align-items: center;
    }

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

    .social-links {
        align-items: center;
        justify-content: center;
    }

    .footer-nav {
        align-items: center;
    }

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

    .hero-content {
        padding: 0 1rem;
    }

    section {
        padding: 60px 0;
        overflow-x: hidden;
    }

    /* Responsive pour page exploitation */
    .family-story {
        padding: 4rem 0;
    }

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

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

    .story-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .heritage-badge {
        justify-content: center;
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .story-chapter {
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .chapter-icon {
        width: 50px;
        height: 50px;
    }

    .chapter-icon i {
        font-size: 1.2rem;
    }

    .chapter-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .chapter-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .main-image {
        margin-bottom: 1.5rem;
    }

    .main-image img {
        height: 300px;
    }

    .image-overlay {
        padding: 1.5rem;
    }

    .years {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .legacy {
        font-size: 0.9rem;
    }

    .heritage-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .highlight-item {
        padding: 1.2rem 0.8rem;
    }

    .highlight-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .highlight-item span {
        font-size: 0.75rem;
    }

    .key-numbers {
        padding: 4rem 0;
    }

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

    .numbers-subtitle {
        font-size: 1rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .number-card {
        padding: 2.5rem 1.5rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

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

    .number {
        font-size: 2.8rem;
    }

    .number-label {
        font-size: 1rem;
    }

    .card-detail {
        font-size: 0.85rem;
    }

    .achievement-badge {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* Responsive pour page engagements */
    .values-badges {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .value-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .values-section {
        padding: 4rem 0;
    }

    .values-header h2 {
        font-size: 2rem;
    }

    .values-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .value-card {
        padding: 2.5rem 2rem;
    }

    .value-icon-large {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .value-icon-large i {
        font-size: 1.8rem;
    }

    .value-card h3 {
        font-size: 1.3rem;
    }

    .environmental-impact {
        padding: 4rem 0;
    }

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

    .impact-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .impact-highlight {
        padding: 20px;
        text-align: center;
    }

    .action-item {
        padding: 1.2rem;
    }

    .action-icon {
        width: 50px;
        height: 50px;
    }

    .action-icon i {
        font-size: 1.3rem;
    }

    .eco-stats {
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Responsive pour page produits */
    .our-products {
        padding: 4rem 0;
    }

    .products-header h2 {
        font-size: 2rem;
    }

    .products-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

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

    .main-product-card {
        border-radius: 20px;
    }

    .product-image {
        height: 250px;
    }

    .product-info {
        padding: 2.5rem 2rem;
    }

    .product-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .product-icon i {
        font-size: 1.8rem;
    }

    .main-product-card h3 {
        font-size: 1.5rem;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .farm-store {
        padding: 4rem 0;
    }

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

    .store-info h2 {
        font-size: 2rem;
        text-align: center;
    }

    .store-highlight {
        padding: 1.2rem;
        text-align: center;
        justify-content: center;
    }

    .store-services {
        justify-content: center;
        gap: 1rem;
    }

    .store-image img {
        height: 300px;
    }

    .partner-products {
        padding: 4rem 0;
    }

    .partners-header h2 {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .partner-card {
        padding: 2rem 1.5rem;
    }

    .quality-commitment {
        padding: 15px 25px;
        font-size: 0.95rem;
    }

    /* Responsive pour page contact */
    .hero-contact {
        height: 50vh;
        min-height: 400px;
    }

    .main-contact {
        padding: 4rem 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon i {
        font-size: 1.3rem;
    }

    .social-links-contact {
        justify-content: center;
    }

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

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

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-form {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .map-section {
        padding: 4rem 0;
    }

    .map-header h2 {
        font-size: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .map-directions {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Responsive pour page mentions légales */
    .hero-legal {
        height: 40vh;
        min-height: 350px;
    }

    .legal-content {
        padding: 4rem 0;
    }

    .legal-sections {
        gap: 2rem;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .legal-section {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .legal-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
        min-width: 70px;
    }

    .legal-icon i {
        font-size: 1.8rem;
    }

    .legal-text {
        width: 100%;
        min-width: 0;
    }

    .legal-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .detail-group {
        text-align: left;
        width: 100%;
        min-width: 0;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .update-info {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .production-image {
        order: -1;
    }

    .production-details {
        gap: 1.5rem;
    }

    .production-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 20px;
    }

    .nav {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-logo {
        height: 35px;
    }

    .commitment-item {
        padding: 1.5rem;
    }

    /* Responsive très petit écran pour histoire familiale */
    .family-story {
        padding: 3rem 0;
    }

    .story-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .heritage-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        gap: 8px;
    }

    .story-chapter {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .chapter-icon {
        width: 45px;
        height: 45px;
    }

    .chapter-icon i {
        font-size: 1.1rem;
    }

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

    .chapter-content p {
        font-size: 0.9rem;
    }

    .main-image img {
        height: 250px;
    }

    .image-overlay {
        padding: 1rem;
    }

    .years {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .legacy {
        font-size: 0.8rem;
    }

    .heritage-highlights {
        gap: 0.6rem;
    }

    .highlight-item {
        padding: 1rem 0.6rem;
    }

    .highlight-number {
        font-size: 1.3rem;
    }

    .highlight-item span {
        font-size: 0.7rem;
    }

    /* Responsive très petit écran pour chiffres clés */
    .key-numbers {
        padding: 3rem 0;
    }

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

    .numbers-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .number-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.3rem;
    }

    .number {
        font-size: 2.5rem;
    }

    .number-label {
        font-size: 0.9rem;
    }

    .card-detail {
        font-size: 0.8rem;
    }

    .achievement-badge {
        font-size: 0.9rem;
        padding: 12px 24px;
        margin: 0 1rem;
    }

    /* Responsive très petit écran pour page engagements */
    .values-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .value-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .values-section {
        padding: 3rem 0;
    }

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

    .values-subtitle {
        font-size: 0.95rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .value-icon-large {
        width: 60px;
        height: 60px;
    }

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

    .value-card h3 {
        font-size: 1.2rem;
    }

    .value-description {
        font-size: 0.95rem;
    }

    .environmental-impact {
        padding: 3rem 0;
    }

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

    .impact-highlight {
        padding: 15px;
        margin-bottom: 2rem;
    }

    .action-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }

    .action-icon {
        margin: 0 auto;
    }

    .eco-stats {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Smooth scrolling pour Safari */
@supports not (scroll-behavior: smooth) {
    html {
        scroll-behavior: auto;
    }
}

.container-footer {
    padding: 0;
}

@media screen and (max-width: 768px) {
    .hero-contact, .hero-legal {
        height: 100vh !important;
    }
}