        /* Styles spécifiques pour Distri & Coffee */
        .coffee-hero {
            position: relative;
            height: 85vh;
            min-height: 550px;
            background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), url('../images/distri&coffee.jpeg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }
        
        .coffee-hero-content {
            max-width: 900px;
            padding: 0 20px;
        }
        
        .coffee-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }
        
        .coffee-hero .hero-tagline {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #f5c542;
        }
        
        .coffee-hero .hero-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Section Axes */
        .axes-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .axes-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .axes-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .axes-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .axes-title p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-top: 15px;
        }
        
        .axis-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 80px;
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .axis-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .axis-card.reverse {
            direction: rtl;
        }
        
        .axis-card.reverse .axis-content {
            direction: ltr;
        }
        
        .axis-image {
            height: 100%;
            min-height: 350px;
            overflow: hidden;
        }
        
        .axis-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .axis-card:hover .axis-image img {
            transform: scale(1.05);
        }
        
        .axis-content {
            padding: 40px;
        }
        
        .axis-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .axis-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .axis-content p {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .axis-content strong {
            color: var(--primary-dark);
        }
        
        /* Section CTA */
        .cta-coffee {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-coffee h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-coffee p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .address-badge {
            background-color: rgba(255, 255, 255, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .address-badge i {
            color: var(--secondary);
        }
        
        .cta-buttons-coffee {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-coffee {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1rem;
        }
        
        .btn-coffee:hover {
            background-color: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-coffee-outline {
            background-color: transparent;
            border: 2px solid var(--white);
        }
        
        .btn-coffee-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }
         /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary);
            color: var(--white);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .coffee-hero h1 {
                font-size: 2.8rem;
            }
            
            .coffee-hero .hero-tagline {
                font-size: 1.2rem;
            }
            
            .axis-card {
                grid-template-columns: 1fr;
                margin-bottom: 40px;
            }
            
            .axis-card.reverse {
                direction: ltr;
            }
            
            .axis-image {
                min-height: 280px;
            }
            
            .axis-content {
                padding: 30px;
            }
            
            .axis-content h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .coffee-hero {
                height: 70vh;
                min-height: 500px;
            }
            
            .coffee-hero h1 {
                font-size: 2rem;
            }
            
            .coffee-hero .hero-tagline {
                font-size: 1rem;
            }
            
            .coffee-hero .hero-description {
                font-size: 0.95rem;
            }
            
            .axes-title h2 {
                font-size: 2rem;
            }
            
            .cta-coffee h2 {
                font-size: 1.8rem;
            }
            
            .cta-coffee p {
                font-size: 1rem;
            }
            
            .address-badge {
                font-size: 0.9rem;
                flex-wrap: wrap;
                text-align: center;
                justify-content: center;
            }
            .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top i {
        font-size: 1.2rem;
    }
        }
        
        @media (max-width: 480px) {
            .axis-content {
                padding: 25px;
            }
            
            .btn-coffee {
                padding: 12px 25px;
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
            .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .back-to-top i {
        font-size: 1rem;
    }
        }
