/* ========== RESET ET STYLES DE BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #ffffff;
}

/* Palette de couleurs basée sur le logo */
:root {
    --primary-dark: #3d3d3d;      /* Gris foncé du logo */
    --primary-medium: #7d7d7d;     /* Gris moyen du logo */
    --primary-light: #9e9e9e;       /* Gris plus clair */
    --accent-gold: #c9a959;          /* Or (accent) */
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #3d3d3d;
    --text-light: #6c757d;
    --white: #ffffff;
    --success-green: #28a745;
    --error-red: #dc3545;
    
    /* Overlays */
    --overlay-dark: rgba(61, 61, 61, 0.95);
    --overlay-medium: rgba(125, 125, 125, 0.9);
}

/* Typographie */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-medium);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
	font-size: 18px;
}
ul li{
	font-size: 17px;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== TOP HEADER ========== */
.top-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--accent-gold);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info-top {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-info-top span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-top i {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-gold);
}

/* ========== MAIN HEADER ========== */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-medium);
    font-weight: 400;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-medium);
}

.nav-menu a.active {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--accent-gold);
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    transition: all 0.3s;
}

.lang-switch a.active {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* ========== HERO SECTION (page d'accueil) ========== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/fonds/6.jpg') center/cover no-repeat;
    padding: 4rem 0;
    text-align: center; /* Centre tout le texte à l'intérieur */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto; /* Centre le bloc horizontalement */
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Si vous voulez que le sous-titre soit également centré */
.hero-text {
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark); /* Texte sombre */
}

.hero-text {
    font-size: 1.2rem;
    color: var(--primary-medium);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero h1,
.hero .hero-text {
    color: white;
}

.hero .stat-number,
.hero .stat-label {
    color: white;
}
.hero,
.hero * {
    color: white;
}

/* ========== HERO SMALL (pages internes) ========== */
.hero-small {
    background-color: var(--primary-dark); /* Fond sombre */
	background: linear-gradient(rgba(61,61,61,0.7), rgba(61,61,61,0.7)), 
                url('../images/hero.jpg') center/cover no-repeat;
    padding: 3rem 0;
    text-align: center;
}

.hero-small h1 {
    color: var(--white); /* Texte blanc */
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-small h1:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
}

.hero-small p {
    color: rgba(255, 255, 255, 0.9); /* Texte blanc légèrement transparent */
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Version encore plus petite pour certaines pages */
.hero-mini {
    background-color: var(--primary-dark);
    padding: 2rem 0;
}

.hero-mini h1 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
}

.hero-mini h1:after {
    display: none;
}

.text-accent {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--primary-medium);
    margin-bottom: 2rem;
    max-width: 600px;
}

/*.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}*/

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/*.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}*/

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary-medium);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(61, 61, 61, 0.15);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(61, 61, 61, 0.2);
}

.hero-image-badge i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-right: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(61, 61, 61, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(61, 61, 61, 0.15);
}

.btn-outline {
    border: 2px solid var(--primary-medium);
    color: var(--primary-dark);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-medium);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: #b89447;
    transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--light-gray);
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.9);
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--primary-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== SECTION CLIENTS ========== */
.section-clients {
    background-color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.clients-title {
    text-align: center;
    color: var(--primary-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.clients-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.client-logo {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.client-logo:hover {
    opacity: 1;
    background-color: var(--light-gray);
}

/* ========== GRILLES ========== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* ========== CARTES ========== */
.card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.05);
    transition: all 0.3s;
    border: 1px solid var(--medium-gray);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(61, 61, 61, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-dark);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.05);
    transition: all 0.3s;
    border: 1px solid var(--medium-gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(61, 61, 61, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-medium);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s;
}

.feature-link:hover {
    gap: 1rem;
    color: var(--accent-gold);
}

/* ========== SECTION EXPERTISE ========== */
.section-expertise {
    background-color: var(--light-gray);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.expertise-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}
.expertise-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.expertise-item:hover img {
    transform: scale(1.05);
}
/* Texte centré sur l’image (disparaît au survol) */
.expertise-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background: rgba(0,0,0,0.6);*/
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 1.4rem;
    font-weight: bold;
    z-index: 1;
    transition: opacity 0.3s;
    white-space: nowrap;
}
/* Au survol, on cache le titre pour laisser place à l’overlay */
.expertise-item:hover .expertise-title {
    opacity: 0;
}
/* Overlay (apparaît au survol) */
.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(61,61,61,0.95), rgba(125,125,125,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.expertise-item:hover .expertise-overlay {
    opacity: 1;
}
.expertise-overlay h3,
.expertise-overlay p {
    color: white;
}
.expertise-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
}



/*.expertise-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.1);
}

.expertise-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.expertise-item:hover img {
    transform: scale(1.1);
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--overlay-dark), var(--overlay-medium));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}

.expertise-item:hover .expertise-overlay {
    opacity: 1;
}

.expertise-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.expertise-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.expertise-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.expertise-link:hover {
    gap: 1rem;
}*/

/* ========== SECTION TÉMOIGNAGES ========== */
.section-testimonials {
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid var(--medium-gray);
}

.testimonial-card:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(61, 61, 61, 0.1);
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 0.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-medium);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
    color: var(--primary-dark);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary-medium);
}

/* ========== SECTION ÉQUIPE ========== */
.section-team {
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.05);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--medium-gray);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(61, 61, 61, 0.15);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    /*aspect-ratio: 1;*/
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, var(--overlay-dark), transparent);
    transition: bottom 0.3s;
}

.team-card:hover .team-card-social {
    bottom: 0;
}

.team-card-social a {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.team-card-social a:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.team-card-content {
    padding: 1.5rem;
    text-align: center;
}

.team-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.team-position {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.team-expertise {
    color: var(--primary-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-card-btn {
    background: transparent;
    border: 1px solid var(--primary-medium);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-card-btn:hover {
    background-color: var(--primary-medium);
    color: var(--white);
}

.team-card-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.team-card-btn:hover i {
    transform: translateX(5px);
}

/* ========== SECTION CTA ========== */
.section-cta {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.section-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-cta h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
}

.section-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.cta-contact i {
    color: var(--accent-gold);
}

/* ========== SECTION CHIFFRES ========== */
.section-numbers {
    background-color: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid var(--medium-gray);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.number-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s;
}

.number-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(61, 61, 61, 0.1);
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.number-label {
    color: var(--primary-medium);
    font-size: 1rem;
    font-weight: 500;
}

/* ========== PROCESSUS ========== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(61, 61, 61, 0.1);
}

.step h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* ========== ÉQUIPE (version page) ========== */
.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.05);
    transition: all 0.3s;
    border: 1px solid var(--medium-gray);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(61, 61, 61, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-medium);
}

.team-member h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.team-member .position {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ========== CONTACT ========== */
.contact-info {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(61, 61, 61, 0.1);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent-gold);
    width: 25px;
    margin-right: 0.5rem;
}

.contact-info strong {
    color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.1);
    border: 1px solid var(--medium-gray);
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(125, 125, 125, 0.1);
}

/* ========== POPUPS ========== */
.popup-overlay,
.team-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(61, 61, 61, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.popup-overlay.active,
.team-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-container,
.team-popup-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
    box-shadow: 0 20px 40px rgba(61, 61, 61, 0.2);
}

.team-popup-container {
    max-width: 800px;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close,
.team-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-medium);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.popup-close:hover,
.team-popup-close:hover {
    background-color: var(--light-gray);
    color: var(--error-red);
}

.popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-header h2 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: var(--primary-medium);
}

.popup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.popup-form .form-group {
    margin-bottom: 1.5rem;
}

.popup-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 3px rgba(125, 125, 125, 0.1);
}

.popup-form .checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-form .checkbox input {
    width: auto;
}

.popup-form .checkbox label {
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-actions .btn {
    flex: 1;
}

.form-info {
    background-color: var(--light-gray);
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-info i {
    color: var(--accent-gold);
}

.popup-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

/* ========== POPUPS ÉQUIPE ========== */
.team-popup-content {
    padding: 2rem;
}

.team-popup-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.team-popup-header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-gold);
}

.team-popup-header h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.team-popup-header h2:after {
    display: none;
}

.team-popup-position {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-popup-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
}

.team-popup-rating span {
    color: var(--primary-medium);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.team-popup-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-popup-section h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
}

.team-popup-list {
    list-style: none;
}

.team-popup-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.team-popup-list li i {
    color: var(--accent-gold);
    width: 20px;
}

.team-popup-contact {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.team-popup-contact h3 {
    margin-bottom: 1.5rem;
}

.team-popup-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    border: 1px solid var(--medium-gray);
}

.contact-item:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(61, 61, 61, 0.1);
}

.contact-item:hover i {
    color: var(--accent-gold);
}

.contact-item i {
    color: var(--accent-gold);
    transition: color 0.3s;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-content h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-content h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 0.5rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 0.8rem;
}

.footer-content ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content ul li a:hover {
    color: var(--accent-gold);
}

.footer-content i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid,
    .expertise-grid,
    .testimonials-grid,
    .numbers-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .features-grid,
    .expertise-grid,
    .testimonials-grid,
    .numbers-grid,
    .team-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .process-steps,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-info-top {
        justify-content: center;
    }
    
    .popup-form .form-row,
    .team-popup-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .team-popup-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .team-popup-header img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .number {
        font-size: 2.5rem;
    }
    
    .team-popup-content {
        padding: 1.5rem;
    }
    
    .team-popup-header h2 {
        font-size: 1.5rem;
    }
    
    .team-popup-position {
        font-size: 1rem;
    }
}
/* ========== CARROUSEL LOGOS CLIENTS ========== */
.section-clients {
    background-color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    color: var(--primary-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.clients-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scrollClients 25s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s;
    padding: 0 3rem;
    white-space: nowrap;
}

.client-logo:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: scale(1.05);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Version responsive */
@media (max-width: 768px) {
    .client-logo {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
}

/* ========== MENU AVEC POLICE PLUS GRANDE ========== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem; /* Augmenté de la taille par défaut */
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--primary-medium);
}

.nav-menu a.active {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--accent-gold);
}

/* Pour les très grands écrans */
@media (min-width: 1440px) {
    .nav-menu a {
        font-size: 1.2rem;
        gap: 3rem;
    }
}

/* Version responsive pour tablette */
@media (max-width: 1024px) {
    .nav-menu a {
        font-size: 1rem;
        gap: 1.5rem;
    }
}

/* Version mobile (menu hamburger à prévoir) */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Sera remplacé par un menu hamburger */
    }
}

/* Optionnel: Style du menu au survol avec soulignement animé */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
    background-color: var(--accent-gold);
}
/* ========== CARROUSEL LOGOS CLIENTS AVEC IMAGES ========== */
.section-clients {
    background-color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
    overflow: hidden;
}

.clients-title {
    text-align: center;
    color: var(--primary-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.clients-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    animation: scrollClients 30s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo-card {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    margin: 0 1rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(61, 61, 61, 0.05);
}

.client-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 16px rgba(61, 61, 61, 0.1);
}

.client-logo-content {
    text-align: center;
}

.client-logo-icon {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.client-logo-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-logo-industry {
    font-size: 0.7rem;
    color: var(--primary-medium);
    margin-top: 0.2rem;
}

/* Différentes couleurs de fond pour varier */
.client-logo-card:nth-child(odd) .client-logo-icon {
    color: var(--accent-gold);
}

.client-logo-card:nth-child(3n) .client-logo-icon {
    color: var(--primary-dark);
}

.client-logo-card:nth-child(5n) .client-logo-icon {
    color: #5a5a5a;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Version responsive */
@media (max-width: 768px) {
    .client-logo-card {
        width: 140px;
        height: 80px;
        margin: 0 0.8rem;
    }
    
    .client-logo-icon {
        font-size: 1.5rem;
    }
    
    .client-logo-name {
        font-size: 0.8rem;
    }
    
    .client-logo-industry {
        font-size: 0.6rem;
    }
}
/* ========== MENU HAMBURGER POUR MOBILE ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 30px rgba(61, 61, 61, 0.2);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        margin: 0;
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-menu a:hover {
        background-color: var(--light-gray);
        border-radius: 5px;
    }

    .nav-menu a.active {
        border-bottom: none;
        background-color: var(--primary-dark);
        color: var(--white);
        border-radius: 5px;
    }

    .nav-menu a.active::after {
        display: none;
    }

    /* Overlay sombre quand le menu est ouvert */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(61, 61, 61, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* Ajustement du header pour mobile */
    .header-content {
        padding: 0.8rem 0;
    }

    .logo-img {
        height: 45px;
    }

    .lang-switch {
        margin-left: auto;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        max-width: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }
}
/* ========== RESPONSIVE GLOBAL ========== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Hero section */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Grilles */
    .features-grid,
    .expertise-grid,
    .testimonials-grid,
    .team-grid,
    .numbers-grid,
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Processus */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobiles (jusqu'à 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Hero section */
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-item {
        align-items: center;
        width: 100%;
    }

    .hero-image-badge {
        position: static;
        margin-top: 1rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    /* Grilles - Passage à 1 colonne */
    .features-grid,
    .expertise-grid,
    .testimonials-grid,
    .team-grid,
    .numbers-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .feature-card,
    .team-card,
    .testimonial-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    /* Section expertise */
    .expertise-item {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Top header */
    .top-header .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-info-top {
        justify-content: center;
        gap: 1rem;
    }

    .contact-info-top span {
        font-size: 0.8rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-content h4:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-content ul li {
        text-align: center;
    }

    .footer-content i {
        margin-right: 0.3rem;
    }

    /* Contact page */
    .contact-info,
    .contact-form {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Popups */
    .popup-container,
    .team-popup-container {
        width: 95%;
        padding: 1.5rem;
    }

    .team-popup-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .team-popup-header img {
        width: 120px;
        height: 120px;
    }

    .team-popup-contact-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Petits mobiles (jusqu'à 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .number {
        font-size: 2rem;
    }

    .team-card-content h3 {
        font-size: 1.1rem;
    }

    .team-position {
        font-size: 0.8rem;
    }

    /* Logos clients */
    .client-logo-card {
        width: 120px;
        height: 70px;
    }

    .client-logo-icon {
        font-size: 1.2rem;
    }

    .client-logo-name {
        font-size: 0.7rem;
    }

    /* Popups */
    .team-popup-content {
        padding: 1rem;
    }

    .team-popup-header h2 {
        font-size: 1.3rem;
    }

    .team-popup-position {
        font-size: 0.9rem;
    }

    .team-popup-section h3 {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Très grands écrans */
@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero h1 {
        font-size: 4rem;
    }
}
/* ========== MENU HAMBURGER POUR MOBILE ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent-gold);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent-gold);
}

/* Overlay pour le menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 61, 61, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Styles pour mobile et tablette */
@media screen and (max-width: 1024px) {
    .menu-toggle {
        display: flex;
        margin-left: 15px;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 80% !important;
        max-width: 400px !important;
        height: 100vh !important;
        background-color: var(--white) !important;
        box-shadow: -5px 0 30px rgba(61, 61, 61, 0.2) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2rem !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 2rem !important;
        list-style: none !important;
        display: flex !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .nav-menu a {
        font-size: 1.2rem !important;
        padding: 1rem 1.5rem !important;
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        color: var(--text-dark) !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
    }

    .nav-menu a:hover {
        background-color: var(--light-gray) !important;
        color: var(--primary-dark) !important;
    }

    .nav-menu a.active {
        border-bottom: none !important;
        background-color: var(--primary-dark) !important;
        color: var(--white) !important;
        border-radius: 8px !important;
    }

    .nav-menu a.active::after {
        display: none !important;
    }

    /* Ajustement du header pour mobile */
    .header-content {
        padding: 0.8rem 0 !important;
        position: relative;
    }

    .logo-img {
        height: 45px !important;
        width: auto;
    }

    .lang-switch {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
}

/* Pour les petits mobiles */
@media screen and (max-width: 480px) {
    .nav-menu {
        width: 100% !important;
        max-width: none !important;
    }

    .nav-menu a {
        font-size: 1.1rem !important;
        padding: 0.8rem 1rem !important;
    }

    .menu-toggle {
        width: 25px;
        height: 18px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Pour les très grands écrans, cacher le menu hamburger */
@media screen and (min-width: 1025px) {
    .menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        box-shadow: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        gap: 2rem !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
}

/* ========== FEATURES GRID MODERN ========== */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-modern {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(61, 61, 61, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 89, 0.1);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent-gold), var(--primary-medium));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.feature-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(61, 61, 61, 0.15);
    border-color: rgba(201, 169, 89, 0.3);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-icon-modern {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-svg {
    transition: transform 0.5s ease;
}

.feature-card-modern:hover .feature-svg {
    transform: scale(1.1) rotate(5deg);
}

/* Animations SVG */
.circle-rotate {
    animation: rotateCircle 10s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scales, .hand-left, .hand-right, .hand-middle, .graph-line, .globe-circle {
    transition: all 0.3s ease;
}

.feature-card-modern:hover .scales {
    transform: translateY(-3px);
}

.feature-card-modern:hover .hand-left {
    transform: translateX(-5px);
}

.feature-card-modern:hover .hand-right {
    transform: translateX(5px);
}

.feature-card-modern:hover .graph-line {
    stroke-dasharray: 100;
    animation: drawLine 1.5s ease;
}

@keyframes drawLine {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-medium);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(61, 61, 61, 0.05), rgba(125, 125, 125, 0.05));
    transition: all 0.3s ease;
}

.feature-link-modern:hover {
    color: var(--accent-gold);
    gap: 1rem;
    background: linear-gradient(135deg, rgba(201, 169, 89, 0.1), rgba(201, 169, 89, 0.05));
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.feature-link-modern:hover .arrow-icon {
    transform: translateX(5px);
}

/* Version responsive */
@media (max-width: 1024px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    .feature-icon-modern {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .feature-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
}
/* Responsive pour la page carrière */
@media (max-width: 1024px) {
    .values-grid,
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .benefits-showcase {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .jobs-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefits-showcase {
        padding: 2rem !important;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .job-popup-content {
        padding: 1.5rem;
    }
}

/* ========== VALEURS FONDAMENTALES - MODERN ========== */
.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card-modern {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(61, 61, 61, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(201, 169, 89, 0.1);
    isolation: isolate;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent-gold), var(--primary-medium));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
    z-index: 1;
}

.value-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 89, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.value-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 50px rgba(61, 61, 61, 0.15);
    border-color: rgba(201, 169, 89, 0.3);
}

.value-card-modern:hover::before {
    transform: scaleX(1);
}

.value-card-modern:hover::after {
    opacity: 1;
    animation: rotate 20s linear infinite;
}

.value-icon-modern {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.value-svg {
    transition: all 0.5s ease;
}

.value-card-modern:hover .value-svg {
    transform: scale(1.1) rotate(5deg);
}

/* Animations SVG spécifiques */
.circle-rotate-slow {
    animation: rotateCircle 15s linear infinite;
}

.circle-rotate-reverse {
    animation: rotateCircleReverse 12s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCircleReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.trophy-cup, .shield, .bulb {
    transition: all 0.3s ease;
}

.value-card-modern:hover .trophy-cup {
    transform: translateY(-5px);
    fill: var(--primary-dark);
}

.value-card-modern:hover .shield {
    transform: scale(1.05);
}

.value-card-modern:hover .bulb {
    fill: var(--primary-dark);
    filter: drop-shadow(0 0 5px var(--accent-gold));
}

.value-card-modern:hover .filament {
    stroke: var(--accent-gold);
    stroke-width: 3;
}

.light-ray {
    opacity: 0;
    transform-origin: left;
    transition: all 0.5s ease;
}

.value-card-modern:hover .light-ray {
    opacity: 0.8;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.laurel-left, .laurel-right {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.8s ease;
}

.value-card-modern:hover .laurel-left,
.value-card-modern:hover .laurel-right {
    stroke-dashoffset: 0;
}

.shield-cross {
    transform-origin: center;
    transition: transform 0.3s ease;
}

.value-card-modern:hover .shield-cross {
    transform: rotate(90deg);
}

.trophy-star {
    animation: twinkle 2s ease infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.value-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.value-card-modern h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.value-card-modern:hover h3::after {
    width: 50%;
}

.value-card-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .values-grid-modern {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .value-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .value-icon-modern {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .value-icon-modern {
        width: 80px;
        height: 80px;
    }
    
    .value-card-modern h3 {
        font-size: 1.3rem;
    }
}
/* ========== FOOTER STYLES ========== */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-content h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-content h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 0.5rem;
}

.footer-content ul {
    list-style: none;
    padding: 0;
}

.footer-content ul li {
    margin-bottom: 0.8rem;
    color: white;
}

.footer-content ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content ul li a:hover {
    color: var(--accent-gold);
}

.footer-content i {
    color: var(--accent-gold);
    width: 20px;
    margin-right: 0.5rem;
}

/* ========== FOOTER SOCIAL ICONS ========== */
.footer-social {
    margin-top: 1.5rem;
    width: 100%;
}

.footer-social h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

.footer-social h4:after {
    display: none;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
	justify-content: left;
}

.social-icon {
    display: flex;
    align-items: center;
	justify-content: left;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
	padding: 13px;
}

.social-icon:hover {
    transform: translateY(-3px);
    text-decoration: none;
    border: none;
    outline: none;
}

.social-icon:link,
.social-icon:visited,
.social-icon:active,
.social-icon:focus {
    text-decoration: none;
    border: none;
    outline: none;
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icon.twitter:hover {
    background-color: #1DA1F2;
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.instagram:hover {
    background-color: #E1306C;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-bottom p:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credit-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.footer-credit-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-credit-link:link,
.footer-credit-link:visited,
.footer-credit-link:active,
.footer-credit-link:focus {
    text-decoration: none;
    border: none;
    outline: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom p:last-child {
        font-size: 0.8rem;
    }
}
/* Messages d'alerte */
.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success i,
.alert-error i {
    margin-right: 10px;
}

/* Popup overlay - masqué par défaut */
.job-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Quand la classe active est ajoutée */
.job-popup-overlay.active {
    display: flex;
}

/* Conteneur du popup */
.job-popup-container {
    background-color: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bouton de fermeture */
.job-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.job-popup-close:hover {
    color: #e74c3c;
}

/* Contenu du popup */
.job-popup-content {
    padding: 25px;
}

/*.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}*/

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .hero-overlay-text {
        font-size: 1.5rem;
    }
}

/*.hero-image {
    position: relative; /* Nécessaire pour le positionnement absolu des enfants 
}
.expertise-item {
    position: relative;
    overflow: hidden;
}
.expertise-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 2rem;
    font-weight: bold;
    z-index: 1;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

/* Au survol, on cache le texte pour laisser place à l'overlay 
.expertise-item:hover .expertise-title {
    opacity: 0;
    visibility: hidden;
}

/* L'overlay (déjà présent) doit être au-dessus 
.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--overlay-dark), var(--overlay-medium));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.expertise-item:hover .expertise-overlay {
    opacity: 1;
}*/

.full-width-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
}

.mission-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.mission-list li:before {
    content: "✓";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Page Expertise - cartes sans images */
.expertise-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-card.alt {
    background: #f8f9fa;
}

.expertise-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem 0 2rem;
    border-bottom: 2px solid var(--accent-gold);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: rgba(201,169,89,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.expertise-card-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--primary-dark);
}

.expertise-card-body {
    padding: 1.5rem 2rem 2rem 2rem;
}

.expertise-card-body p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.expertise-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.expertise-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.expertise-list li:before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-card-header {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    .expertise-card-body {
        padding: 1.5rem;
    }
    .expertise-list {
        grid-template-columns: 1fr;
    }
}

/* Introduction de la page Expertise */
.expertise-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.expertise-intro-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.expertise-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}
/* Texture subtile sur la section expertise */
.expertise-cards-section {
    background-color: #fefefe;
    background-image: radial-gradient(circle at 25% 40%, rgba(201,169,89,0.03) 2%, transparent 2.5%);
    background-size: 30px 30px;
}

/* Page Carrière - section intro sans image */
.career-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.career-intro-text {
    flex: 2;
    min-width: 250px;
}

.career-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.career-intro-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.career-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.career-stats-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,169,89,0.1), rgba(61,61,61,0.05));
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(2px);
}

.career-stat-item {
    text-align: center;
    min-width: 100px;
}

.career-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
}

.career-stat-label {
    font-size: 0.9rem;
    color: var(--primary-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .career-intro {
        flex-direction: column;
        text-align: center;
    }
    .career-cta {
        justify-content: center;
    }
    .career-stats-grid {
        width: 100%;
    }
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
/* Grille expertise (3 colonnes) */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Carte avec fond stylé */
.expertise-card-bg {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(201,169,89,0.2);
    position: relative;
    overflow: hidden;
}

.expertise-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.expertise-card-bg:hover::before {
    opacity: 1;
}

.expertise-card-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise-card-inner i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.expertise-card-inner h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.expertise-card-inner p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.expertise-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--accent-gold);
    transition: all 0.2s;
}

.expertise-link:hover {
    text-decoration: underline;
}

/* Variantes de couleurs de fond pour chaque carte (optionnel) */
.expertise-card-bg-1 { background: linear-gradient(135deg, #fff5eb, #fff); }
.expertise-card-bg-2 { background: linear-gradient(135deg, #eef2ff, #fff); }
.expertise-card-bg-3 { background: linear-gradient(135deg, #e6f7f0, #fff); }
.expertise-card-bg-4 { background: linear-gradient(135deg, #fef3e2, #fff); }
.expertise-card-bg-5 { background: linear-gradient(135deg, #e0f2fe, #fff); }
.expertise-card-bg-6 { background: linear-gradient(135deg, #fce7f3, #fff); }

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
.bg-gradient-dark {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}
.bg-gradient-light {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}
/* Page de détail expertise - fond dégradé */
.expertise-detail-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    margin-top: 1rem;
}

.expertise-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}

.expertise-detail-content h2 {
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.expertise-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.expertise-detail-content li {
    margin-bottom: 0.5rem;
}
/* Page de détail expertise - design amélioré */
.expertise-detail-section {
    background: linear-gradient(145deg, #fefefe 0%, #f5f7fa 100%);
    border-radius: 30px;
    padding: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.expertise-detail-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* En-tête de la page détail */
.expertise-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.expertise-detail-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.expertise-detail-header h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

.expertise-detail-header p {
    font-size: 1.2rem;
    color: var(--primary-medium);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* Contenu principal */
.expertise-detail-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.expertise-detail-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(201,169,89,0.3);
}

.expertise-detail-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem;
}

.expertise-detail-content p {
    margin-bottom: 1.2rem;
}

.expertise-detail-content ul, 
.expertise-detail-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.expertise-detail-content li {
    margin-bottom: 0.6rem;
}

/* Mise en valeur des sous-listes */
.expertise-detail-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.expertise-detail-content ul ul li {
    list-style-type: circle;
}

/* Carte de service individuelle (optionnel) */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(201,169,89,0.1);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-top: 0;
    color: var(--accent-gold);
}

/* Pied de page retour */
.detail-back-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-detail-header h1 {
        font-size: 2rem;
    }
    .expertise-detail-header p {
        font-size: 1rem;
    }
    .expertise-detail-content {
        font-size: 1rem;
    }
    .expertise-detail-content h2 {
        font-size: 1.5rem;
    }
    .expertise-detail-content ul,
    .expertise-detail-content ol {
        margin-left: 1rem;
    }
}
/* CTA dans les pages expertise détail */
.cta-expertise-detail {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cta-expertise-detail h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-expertise-detail p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.cta-expertise-detail .btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-expertise-detail .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: #b89447;
}

.expertise-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.expertise-cta-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.expertise-cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.expertise-cta .btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.expertise-cta .btn-primary:hover {
    background-color: #b89447;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Boutons CTA et retour sur page expertise */
.expertise-cta .btn-primary,
.detail-back-link .btn-outline {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b89447);
    border: none;
    color: var(--primary-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.expertise-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #b89447, var(--accent-gold));
}

.detail-back-link .btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
}

.detail-back-link .btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.detail-back-link .btn-outline i {
    transition: transform 0.2s;
}

.detail-back-link .btn-outline:hover i {
    transform: translateX(-5px);
}
/* Boutons de la page expertise (détail) */
.expertise-cta .btn-primary,
.detail-back-link .btn-outline {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b89447);
    border: none;
    color: var(--primary-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.expertise-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #b89447, var(--accent-gold));
}

.detail-back-link .btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
}

.detail-back-link .btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateX(-3px);
}

.detail-back-link .btn-outline i {
    transition: transform 0.2s;
}

.detail-back-link .btn-outline:hover i {
    transform: translateX(-5px);
}
/* Grille pour Mission et Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.mission-card, .vision-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(201,169,89,0.2);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-card .card-icon, .vision-card .card-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.mission-card p, .vision-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Carte "Qui sommes-nous" */
.about-us-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(201,169,89,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.about-us-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.75rem;
}

.about-us-header i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.about-us-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-dark);
}

.about-us-content p {
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
	font-size: 18px;
	text-align: justify;
}
