/* Reset et variables CSS */
:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --secondary-color: #fef3c7;
    --accent-color: #f59e0b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --background: #ffffff;
    --background-alt: #fef3c7;
    --border-color: #fde68a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
    --gradient-hover: linear-gradient(135deg, #ea580c 0%, #d97706 100%);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Style global pour les liens dans le contenu */
p a,
.section-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

p a:hover,
.section-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Fix Font Awesome pour Firefox */
.fas,
.fa,
.fab,
.far {
    font-family: 'Font Awesome 6 Free', 'FontAwesome', 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'Font Awesome 6 Brands', Arial, sans-serif;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Amélioration spécifique pour les icônes de contact */
.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    display: inline-block;
    vertical-align: middle;
    width: 1.2rem;
    text-align: center;
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    gap: 3rem;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.bar {
    width: 22px;
    height: 3px;
    background: var(--text-primary) !important;
    margin: 2.5px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.hero-title strong {
    font-weight: 900;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.hero-visual {
    position: relative;
    height: 400px;
}

.hero-mascotte {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mascotte-img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections communes */
section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.2rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.5rem;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-container {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

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

.about-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.video-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.video-indicator:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.play-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon i {
    font-size: 0.8rem;
    margin-left: 2px;
}

.video-text {
    font-size: 0.85rem;
}

.hidden-video {
    display: none;
}

/* Video Modal Styles */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: black;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-video-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.close-video-modal:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-modal-content video {
    width: auto;
    height: 90vh;
    max-width: 90vw;
    display: block;
    object-fit: contain;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive video modal */
@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95%;
        max-height: 95%;
    }

    .close-video-modal {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    background: var(--background-alt);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Marchés de France Section */
.marches {
    background: var(--background);
}

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

.marches-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.marches-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.marche-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.marche-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.marche-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.marche-feature span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.marches-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marches-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 16/9;
}

.marches-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}



/* Oranges Section */
.oranges {
    background: var(--background-alt);
}

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

.oranges-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.oranges-text p {
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {

    .orange-features,
    .tv-features,
    .marches-features,
    .professionnels-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.oranges-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oranges-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 16/9;
}

.oranges-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* TV Section */
.tv {
    background: var(--background);
}

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

.tv-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.tv-text p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .tv-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .video-container {
        max-width: 100%;
    }
}

.tv-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tv-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tv-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tv-feature span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.tv-video {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-container {
    margin-bottom: 1rem;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.video-play-button:hover {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}

.video-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.video-overlay {
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.video-overlay .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-overlay .btn i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: var(--background-alt);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
    aspect-ratio: 16/9;
}

.contact-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.social-links a i {
    font-size: 1.5rem;
    display: block;
    margin: 0;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
}

.social-links a .fa-facebook-f {
    color: white !important;
}

.social-links a .fa-youtube {
    color: white !important;
}

.social-links a .fa-linkedin {
    color: white !important;
}

.social-links a .fa-instagram {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        gap: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .logo-img {
        height: 30px;
    }

    .about-image {
        margin-top: 2rem;
    }

    .about-img {
        width: 220px;
        height: 220px;
    }

    .mascotte-img {
        width: 150px;
        height: 150px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(16px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 60vh;
        padding: 30px 0 20px 0;
    }

    .hero-title {
        padding-top: 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        place-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
        padding-top: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .oranges-content,
    .tv-content,
    .contact-content,
    .marches-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .hero-mascotte {
        top: 20%;
    }

    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        padding-top: 80px;
    }
}

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

    .logo-img {
        height: 25px;
    }

    .about-img {
        width: 180px;
        height: 180px;
    }

    .video-indicator {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .play-icon {
        width: 20px;
        height: 20px;
    }

    .play-icon i {
        font-size: 0.7rem;
    }

    .video-text {
        font-size: 0.75rem;
    }

    .mascotte-img {
        width: 150px;
        height: 150px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .portfolio-item,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Animations d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2001;
    }

    .bar {
        width: 28px;
        height: 4px;
        background: var(--text-primary, #1e293b);
        margin: 4px 0;
        border-radius: 2px;
        transition: all 0.3s;
    }
}

/* Section Juice Truck en action */
.action {
    padding: 4rem 0;
    background: var(--background);
}

.action-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.action-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

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

.action-photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.action-photo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.action-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

/* Responsive pour la galerie */
@media (max-width: 768px) {
    .action-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .action-img {
        height: 150px;
    }
}

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

    .action-img {
        height: 200px;
    }
}

/* Modal pour la galerie photos */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-image-container {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 1.2rem;
}

.image-counter {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    min-width: 60px;
    text-align: center;
}

/* Responsive pour la modal */
@media (max-width: 768px) {
    .modal-navigation {
        bottom: 20px;
        gap: 1rem;
        padding: 0.75rem 1.5rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

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

    .image-counter {
        font-size: 1rem;
    }

    .close-modal {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .modal-navigation {
        bottom: 15px;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .nav-btn i {
        font-size: 0.9rem;
    }

    .image-counter {
        font-size: 0.9rem;
        min-width: 50px;
    }
}

/* Section Statistiques */
.statistiques {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

.statistiques-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: "Ubuntu", sans-serif;
}

.statistiques-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.statistique-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.statistique-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.statistique-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.statistique-feature span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.statistiques-graphique {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.graphique-container {
    background: var(--background);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    transition: var(--transition);
}

.graphique-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.graphique-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 768px) {
    .statistiques-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .statistiques-text {
        text-align: center;
    }

    .statistiques-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }

    .statistique-feature {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .statistiques-graphique {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .graphique-container {
        padding: 1rem;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .graphique-container canvas {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    /* Force le centrage du canvas Chart.js */
    .graphique-container canvas[width] {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .graphique-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .statistiques-content {
        gap: 1.5rem;
    }

    .statistiques-text h3 {
        font-size: 1.5rem;
    }

    .statistiques-text p {
        font-size: 1rem;
    }

    .statistique-feature {
        padding: 1rem;
        max-width: 280px;
    }

    .graphique-container {
        padding: 0.75rem;
    }

    .graphique-legend {
        gap: 0.75rem;
    }
}