:root {
    --primary-color: #34A040;
    --primary-light: #7FDD4C;
    --primary-dark: #34A040;
    --secondary-color: #ff7b00;
    --secondary-light: #ff9e40;
    --secondary-dark: #e55a00;
    --accent-color: #00c6b3;
    --dark-color: #1A1A2E;
    --light-color: #ffffff;
    --gray-color: #6C757D;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(87, 0, 69, 0.15);
    --shadow-hover: 0 15px 30px rgba(87, 0, 69, 0.2);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.btn-accent:hover {
    background: #00a895;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: 200px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
    list-style: none;
}

nav ul li a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    color: var(--dark-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-switcher a {
    font-weight: 600;
    text-decoration: none;
    color: var(--dark-color);
}

.language-switcher a.active {
    color: var(--primary-color);
}

.language-switcher span {
    margin: 0 5px;
    color: var(--gray-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding-top: 80px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 0, 69, 0.6);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--light-color); /* ✅ Corrigé : ancien var(--light-gray) */
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-container {
    display: flex;
    list-style: none;
}

.breadcrumb-item {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}



.breadcrumb-link {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* About Intro Section */
.about-intro {
    padding: 5rem 0;
    background-color: var(--light-color); /* ✅ Déjà correct */
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}


.section-title p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

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

.intro-text {
    font-size: 1.1rem;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

/* Values Section */
.values {
    padding: 5rem 0;
    background: var(--light-color); /* ✅ Corrigé : ancien gradient violet */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}



.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.value-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Promise Section */
.promise {
    padding: 5rem 0;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    position: relative;
    color: white;
}



.promise .container {
    position: relative;
    z-index: 1;
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promise-content h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.promise-content p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: var(--light-color); /* ✅ Déjà correct */
    overflow: hidden;
}

.clients-slider-container {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 10);
}

.client-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    margin: 0 2rem;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: var(--transition);
}

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

.client-logo img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5));
    }
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--light-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}



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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Back to Top Button */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #cccccc);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 87, 7, 0.3);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

/* Hover effect */
.btn-back-to-top:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 87, 7, 0.4);
  background: linear-gradient(135deg, #cccccc, var(--primary-dark));
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 87, 7, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 87, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 87, 7, 0);
  }
}


/* Styles pour la page expertise */
.expertise-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.expertise-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(87, 0, 69, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-line {
    height: 100%;
    width: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.section-padding {
    padding: 6rem 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.expertise-item {
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.read-more {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-color);
}

.step-content p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonials {
    background-color: var(--light-color); /* ✅ Corrigé : ancien var(--light-gray) */
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 2rem);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.author-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Styles spécifiques à la page expertise */
.expertise-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.expertise-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1497215842964-222b430dc094?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    opacity: 0.15;
}

.hero-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

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

.floating-cards {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-cards .card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px) rotate(-10deg);
}

.floating-cards .card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.floating-cards .card span {
    font-size: 0.9rem;
}

.floating-cards .card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.floating-cards .card-2 {
    top: 30%;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.floating-cards .card-3 {
    bottom: 20%;
    left: 10%;
    background: linear-gradient(135deg, var(--accent-color), #92FE9D);
}

.floating-cards .card-4 {
    top: 20%;
    left: 0;
    background: linear-gradient(135deg, #FF086E, #FF5CAC);
}

.floating-cards .card-5 {
    bottom: 0;
    right: 20%;
    background: linear-gradient(135deg, #6F42C1, #E83E8C);
}

/* Section Intro */
.expertise-intro {
    background-color: var(--light-color); /* ✅ Déjà correct */
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(87, 0, 69, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.intro-text {
    font-size: 1.1rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.intro-image .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 0, 69, 0.3) 0%, rgba(138, 76, 124, 0.1) 100%);
}

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

/* Expertise Grid */
.expertise-grid {
    background: var(--light-color); /* ✅ Corrigé : ancien gradient violet */
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.expertise-card {
    perspective: 1000px;
    height: 500px;
}

.expertise-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.expertise-card:hover .card-inner {
    transform: rotateY(180deg);
}

.expertise-card .card-front,
.expertise-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.expertise-card .card-front {
    background: white;
    color: var(--dark-color);
}

.expertise-card .card-back {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.expertise-card .card-front p {
    color: var(--gray-color);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-cta {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.card-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

.expertise-card .card-back h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.expertise-card .card-back ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.expertise-card .card-back ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}



.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* Approach Section */
.approach {
    background-color: white; /* ✅ Déjà correct */
}

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

.approach-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(87, 0, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--gray-color);
}

.approach-process {
    background: var(--light-color); /* ✅ Corrigé : ancien gradient violet */
    padding: 2rem;
    border-radius: 15px;
}

.process-steps {
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    z-index: 2;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: 50px;
    background: var(--primary-light);
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color); /* ✅ Déjà corrigé ci-dessus */
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0;
    scrollbar-width: none;
    margin-bottom: 3rem;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 2rem);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.author-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonials-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonials-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* CTA Section */
.expertise-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.expertise-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.expertise-cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Styles spécifiques à la page sectors */

/* Hero Section amélioré */
.sectors-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sectors-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Grille d'icônes flottantes */
.floating-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 500px;
}

.icon-item {
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.icon-item i {
    font-size: 2rem;
    color: white;
}

.icon-item span {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Section intro */
.sectors-intro {
    background-color: var(--light-color); /* ✅ Déjà correct */
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Grille des secteurs */
.sectors-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    transition: height 0.5s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.sector-card:hover::before {
    height: 100%;
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.sector-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
}

.sector-content {
    margin-bottom: 25px;
    flex-grow: 1;
}

.sector-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.sector-content ul {
    list-style: none;
    padding-left: 0;
}

.sector-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

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

.sector-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sector-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.sector-link:hover i {
    transform: translateX(5px);
}

/* Section Pourquoi nous choisir */
.why-choose {
    background: var(--light-color); /* ✅ Corrigé : ancien gradient violet */
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Styles spécifiques à la page carrière */
.career-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.career-hero .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Section Pourquoi nous rejoindre */
.why-join {
    background-color: var(--light-color); /* ✅ Déjà correct */
}

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

.reason-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.reason-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

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

/* Section offres d'emploi */
.job-offers {
    background: var(--light-color); /* ✅ Corrigé : ancien gradient violet */
}

.jobs-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.job-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.job-type {
    background: var(--primary-light);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.job-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.job-description h4 {
    color: var(--primary-color);
    margin: 20px 0 10px;
}

.job-description ul,
.job-benefits ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.job-description li,
.job-benefits li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.job-benefits {
    background: rgba(87, 0, 69, 0.05);
    padding: 20px;
    border-radius: 10px;
    align-self: start;
}

.job-benefits h4 {
    color: var(--primary-color);
    margin-top: 0;
}

.job-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Section candidature spontanée */
.spontaneous-application {
    background-color: white; /* ✅ Déjà correct */
}

.spontaneous-content {
    max-width: 800px;
    margin: 0 auto;
}

.spontaneous-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.spontaneous-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

/* CTA Section */
.career-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

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

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

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

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

    .intro-image {
        order: -1;
    }

    .hero-content-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .testimonial-item {
        flex: 0 0 calc(50% - 2rem);
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-item {
        flex: 0 0 calc(50% - 1.5rem);
    }

    .floating-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .job-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        transition: 0.5s;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 30px;
        width: 100%;
    }

    nav ul li {
        margin: 15px 0;
        width: 100%;
    }

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

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

    .client-logo {
        width: 150px;
        height: 100px;
        margin: 0 1rem;
    }

    .clients-track {
        animation-duration: 20s;
    }

    .testimonial-item {
        flex: 0 0 100%;
    }

    .stat-item {
        flex: 0 0 100%;
    }

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

    .floating-cards {
        width: 300px;
        height: 300px;
    }

    .floating-cards .card {
        width: 90px;
        height: 90px;
    }

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

    .floating-cards .card span {
        font-size: 0.7rem;
    }

    .sectors-hero .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .floating-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

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

    .icon-item span {
        font-size: 0.8rem;
    }

    .sectors-container {
        grid-template-columns: 1fr;
    }

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

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

    .career-hero .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .job-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .floating-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

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

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

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

    .sector-card {
        padding: 20px;
    }

    .reason-card,
    .job-card {
        padding: 20px;
    }
}
