:root {
    --primary-blue: #1e3a8a;
    --accent-teal: #0d9488;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #475569;
    --text-dark: #1e293b;
}

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Styles globaux pour les liens */
a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:link,
a:visited {
    color: var(--accent-teal);
}

a:hover {
    color: #0b7d70;
    text-decoration: underline;
}

a:active {
    color: #0a6b5f;
}

/* Les boutons conservent leur couleur de texte spécifique */
a.inner-btn-primary,
a.inner-btn-secondary,
a.btn-primary,
a.btn-secondary,
a.nav-cta,
a.service-cta,
button.submit-btn,
button.inner-btn-primary,
button.inner-btn-secondary,
button.btn-primary,
button.btn-secondary {
    color: inherit;
}

/* Boutons avec texte blanc */
a.inner-btn-primary,
a.nav-cta,
a.service-cta {
    color: white !important;
}

a.inner-btn-primary:hover,
a.service-cta:hover {
    color: white !important;
    text-decoration: none;
}

/* Le nav-cta a un style hover spécifique avec fond transparent et texte bleu */
a.nav-cta:hover {
    color: var(--primary-blue) !important;
    text-decoration: none;
}

/* Boutons avec texte bleu (fond blanc) */
a.raf-cta,
a.btn-primary {
    color: var(--primary-blue) !important;
}

a.raf-cta:hover {
    color: white !important;
    text-decoration: none;
}

a.btn-primary:hover {
    color: white !important;
    text-decoration: none;
}

/* Liens dans le contenu principal */
p a,
li a,
.inner-service-intro a,
.inner-feature-category a {
    color: var(--accent-teal);
    text-decoration: underline;
    text-decoration-color: rgba(13, 148, 136, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

p a:hover,
li a:hover,
.inner-service-intro a:hover,
.inner-feature-category a:hover {
    color: #0b7d70;
    text-decoration-color: var(--accent-teal);
    text-decoration-thickness: 2px;
}

/* Liens dans les titres de sections */
.inner-feature-category h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.inner-feature-category h4 a:hover {
    color: var(--accent-teal);
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
}

.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 ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-teal);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--accent-teal);
    border-left-color: var(--accent-teal);
    transform: translateX(5px);
}

.dropdown-menu a:active {
    background: var(--accent-teal);
    color: white;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .burger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .burger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu-btn.active .burger-icon {
    transform: rotate(0deg);
}

/* Navigation CTA Button */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--accent-teal);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-teal);
    position: relative;
    overflow: hidden;
}

.nav-phone-btn i {
    font-size: 1rem;
    color: var(--accent-teal);
}

.nav-phone-btn .phone-number {
    display: none;
    font-size: 0.9rem;
    color: var(--accent-teal);
    text-decoration: none !important;
}

.nav-phone-btn:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    padding-right: 1.5rem;
    text-decoration: none !important;
}

.nav-phone-btn:hover .phone-number {
    display: inline;
    color: white;
    text-decoration: none !important;
}

.nav-phone-btn:hover i,
.nav-phone-btn:hover .phone-number {
    color: white;
}

.nav-phone-btn:hover i,
.nav-phone-btn:hover .phone-number {
    color: white;
}

.nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

/* Effet de reflet qui parcourt le bouton */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    animation: cta-shine 20s infinite;
}

.nav-cta:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Animation de l'effet de reflet */
@keyframes cta-shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 4rem 2rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 120vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

/* Animation de graphique en background */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.5s ease;
}

.hero-chart:hover {
    opacity: 0.25;
}

.hero-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.chart-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    opacity: 0;
}

.chart-area {
    fill: url(#chartGradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-point {
    fill: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 2;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.chart-point:hover {
    fill: rgba(255, 255, 255, 1);
    stroke: rgba(255, 255, 255, 1);
    stroke-width: 3;
}

.chart-bar {
    fill: rgba(255, 255, 255, 0.4);
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

.chart-bar:hover {
    fill: rgba(255, 255, 255, 0.3);
    stroke: rgba(255, 255, 255, 0.6);
}

.chart-text {
    fill: rgba(255, 255, 255, 0.7);
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-anchor: middle;
    transition: opacity 0.3s ease;
}

.chart-text:hover {
    opacity: 1;
}

/* Animation de la grille */
.chart-grid line {
    stroke-dasharray: 5, 5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 10; }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    background: var(--accent-teal);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #0f766e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

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

.hero-portrait {
    margin-top: 3rem;
    text-align: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-portrait a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.hero-portrait img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-portrait img:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive du graphique et de la section hero sur mobile */
@media (max-width: 768px) {
    #chartContainer {
        transform: scale(1.2);
        transform-origin: center center;
        opacity: 0.8;
        width: 100%;
        height: auto;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero {
        min-height: 100vh;
        padding: 3rem 1rem 5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* Ajustements pour très petits écrans */
@media (max-width: 480px) {
    #chartContainer {
        transform: scale(1.4);
        opacity: 0.9;
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero {
        padding: 6rem 1rem 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        max-width: 250px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: block;
    }
}

/* Sections */
.section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Services Section - Design de cartes superposées avec décalage */
#services {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    position: relative;
    z-index: 2;
    margin-top: -50px;
    padding-top: 100px;
    border-radius: 50px 50px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 100vh;
    /* Empêcher le scroll normal dans cette section */
    scroll-behavior: smooth;
    /* Empêcher le scroll avec la molette */
    overscroll-behavior: contain;
}

/* Background Animation Lines */
.services-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.animated-lines {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.animated-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 8s ease-in-out infinite;
}

/* Animation des lignes horizontales */
.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 1s; }
.line-3 { animation-delay: 2s; }
.line-4 { animation-delay: 3s; }
.line-5 { animation-delay: 4s; }
.line-6 { animation-delay: 5s; }
.line-7 { animation-delay: 6s; }

/* Animation des lignes verticales */
.line-v1 { animation-delay: 0.5s; }
.line-v2 { animation-delay: 1.5s; }
.line-v3 { animation-delay: 2.5s; }
.line-v4 { animation-delay: 3.5s; }
.line-v5 { animation-delay: 4.5s; }
.line-v6 { animation-delay: 5.5s; }

/* Animation des lignes diagonales */
.line-d1 { animation-delay: 0.8s; }
.line-d2 { animation-delay: 1.8s; }
.line-d3 { animation-delay: 2.8s; }
.line-d4 { animation-delay: 3.8s; }

/* Keyframes pour l'animation des lignes */
@keyframes drawLine {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
}

/* Animation de pulsation subtile */
.animated-line {
    animation: drawLine 8s ease-in-out infinite, pulse 12s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="servicesGrid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23servicesGrid)"/></svg>');
    opacity: 0.4;
}

/* Container pour les cartes superposées */
.services-stack-container {
    position: relative;
    height: 85vh; /* Remis à la valeur d'origine */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: 2rem;
}

/* Flèches de navigation des services */
.services-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.services-nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
}

.services-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.services-nav-arrow i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.services-nav-prev {
    left: 20px;
}

.services-nav-next {
    right: 20px;
}

/* Ajuster les flèches sur mobile */
@media (max-width: 768px) {
    .services-nav-arrow {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        z-index: 15;
    }
    
    .services-nav-prev {
        left: 5px;
    }
    
    .services-nav-next {
        right: 5px;
    }
}

/* Grille des services avec effet de superposition */
        .services-grid {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 650px;
            margin: 0 auto;
        }

/* Carte de service individuelle */
.service-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 2.5rem; /* Augmenté de 2rem à 2.5rem pour plus d'espace */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
    transform: translateX(100px) translateY(0px);
    opacity: 0;
    will-change: transform;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr;
    gap: 2.5rem;
    align-items: start;
}

.service-left {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    grid-row: 1 / 3;
    height: 100%;
    align-self: start;
}

/* Adaptation de la colonne gauche quand elle contient une image */
.service-card:has(.service-image) .service-left {
    justify-content: flex-start;
    align-items: stretch;
    padding: 1rem;
}

.service-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem; /* Augmenté de 1rem à 1.2rem */
    justify-content: flex-start; /* Changé pour commencer après le titre */
    height: 100%;
    padding-bottom: 1rem; /* Ajouté pour éviter la coupure en bas */
    grid-row: 2;
    overflow: visible;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: white;
    font-size: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Styles pour l'image du service administratif */
.service-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

/* Modifier le conteneur quand il contient une image */
.service-card:has(.service-image) .service-icon {
    width: auto;
    height: auto;
    background: none !important;
    padding: 0;
    display: block;
    border-radius: 0;
}

/* Masquer l'effet ::before quand il y a une image */
.service-card:has(.service-image) .service-icon::before {
    display: none;
}

/* Masquer aussi les effets spécifiques aux types de services quand il y a une image */
.service-card:has(.service-image).features-admin .service-icon::before,
.service-card:has(.service-image).features-finance .service-icon::before,
.service-card:has(.service-image).features-strategy .service-icon::before,
.service-card:has(.service-image).features-startup .service-icon::before {
    display: none;
}

/* Masquer l'icône FontAwesome quand il y a une image */
.service-card:has(.service-image) .service-icon i {
    display: none;
}

/* Forcer la suppression de tous les arrière-plans quand il y a une image */
.service-card:has(.service-image) .service-icon,
.service-card:has(.service-image) .service-icon::before,
.service-card:has(.service-image) .service-icon::after {
    background: none !important;
    box-shadow: none !important;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.service-card.active .service-icon::before {
    opacity: 0.5;
}

.service-title {
    font-size: 2rem;
    font-weight: 900 !important;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-align: center;
    padding-top: 0.5rem;
}

/* Suppression du doublon */

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.service-features li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.service-features li:hover::before {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    /* Effet de surbrillance subtil au lieu de la ligne de soulignement */
    filter: brightness(1.1);
}



/* Animation d'apparition progressive des puces */
.service-features li {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-features li:nth-child(1) { animation-delay: 0.1s; }
.service-features li:nth-child(2) { animation-delay: 0.2s; }
.service-features li:nth-child(3) { animation-delay: 0.3s; }
.service-features li:nth-child(4) { animation-delay: 0.4s; }
.service-features li:nth-child(5) { animation-delay: 0.5s; }
.service-features li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icônes centralisées depuis services.json */
.service-bullet::before {
    content: attr(data-icon);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* Harmonisation des couleurs des icônes principales avec les puces */
.service-card.features-admin .service-icon {
    background: linear-gradient(135deg, #1e3a8a, #0d9488); /* Bleu royal vers teal - cohérent avec le hero */
}

.service-card.features-admin .service-icon::before {
    background: linear-gradient(135deg, #1e3a8a, #0d9488);
}

.service-card.features-finance .service-icon {
    background: linear-gradient(135deg, #10b981, #059669); /* Vert finance */
}

.service-card.features-finance .service-icon::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card.features-strategy .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed); /* Violet stratégie */
}

.service-card.features-strategy .service-icon::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-card.features-startup .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706); /* Orange startup */
}

.service-card.features-startup .service-icon::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* S'assurer que les éléments ::before et ::after sont correctement masqués pour la card startup avec image */
.service-card:has(.service-image).features-startup .service-icon::after,
.service-card:has(.service-image).features-startup .service-cta::after {
    display: none !important;
    content: none !important;
}

.service-card.features-rh .service-icon {
    background: linear-gradient(135deg, #ddb485, #c9a068); /* Beige/doré RH */
}

.service-card.features-rh .service-icon::before {
    background: linear-gradient(135deg, #ddb485, #c9a068);
}

/* Styles supplémentaires pour améliorer l'apparence des puces */
.feature-text {
    position: relative;
    z-index: 1;
    text-align: left;
    flex: 1;
}

/* Effet de brillance sur les puces */
.service-features li::before {
    position: relative;
}

.service-features li::before::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-features li:hover::before::after {
    opacity: 1;
}

/* Couleurs des puces basées sur les classes des cartes de service */
.service-card.features-admin .service-bullet::before {
    background: linear-gradient(135deg, #1e3a8a, #0d9488);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.service-card.features-admin .service-bullet:hover::before {
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.service-card.features-finance .service-bullet::before {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.service-card.features-finance .service-bullet:hover::before {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.service-card.features-strategy .service-bullet::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.service-card.features-strategy .service-bullet:hover::before {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.service-card.features-startup .service-bullet::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.service-card.features-startup .service-bullet:hover::before {
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.service-card.features-rh .service-bullet::before {
    background: linear-gradient(135deg, #ddb485, #c9a068);
    box-shadow: 0 2px 8px rgba(221, 180, 133, 0.3);
}

.service-card.features-rh .service-bullet:hover::before {
    box-shadow: 0 4px 15px rgba(221, 180, 133, 0.4);
}

/* Couleurs des boutons "En savoir plus" harmonisées avec les icônes */
.service-card.features-admin .service-cta {
    background: linear-gradient(135deg, #1e3a8a, #0d9488);
    border-color: #1e3a8a;
}

.service-card.features-admin .service-cta:hover {
    background: linear-gradient(135deg, #0d9488, #1e3a8a);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.service-card.features-finance .service-cta {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
}

.service-card.features-finance .service-cta:hover {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.service-card.features-strategy .service-cta {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: #8b5cf6;
}

.service-card.features-strategy .service-cta:hover {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.service-card.features-startup .service-cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #f59e0b;
    position: relative;
    z-index: 1;
}

.service-card.features-startup .service-cta::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.service-card.features-startup .service-cta:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.service-card.features-startup .service-cta:hover::before {
    left: 100%;
}

.service-card.features-rh .service-cta {
    background: linear-gradient(135deg, #ddb485, #c9a068);
    border-color: #ddb485;
}

.service-card.features-rh .service-cta:hover {
    background: linear-gradient(135deg, #c9a068, #ddb485);
    box-shadow: 0 10px 30px rgba(221, 180, 133, 0.3);
}

/* Animation de pulsation pour attirer l'attention */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-features li:first-child::before {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive design pour les puces */
@media (max-width: 768px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .service-features li {
        padding: 0.4rem 0;
        font-size: 0.85rem;
        gap: 1.2rem;
    }
    
    .service-features li::before {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        color: white !important;
    }
}

/* Mode sombre optionnel */
@media (prefers-color-scheme: dark) {
    .service-features li {
        color: #e2e8f0;
    }
    
    .service-features li:hover {
        color: #60a5fa;
    }
}

.service-cta {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    flex-shrink: 0;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-cta:hover::before {
    left: 100%;
}

/* Indicateurs de navigation */
.services-nav {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Responsive pour les cartes superposées */
@media (max-width: 768px) {
    .services-stack-container {
        height: 75vh !important;
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
    
    .services-grid {
        height: 450px !important;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 50px; /* Espace pour les flèches */
    }
    
    .service-card {
        padding: 1.2rem !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: 1fr auto !important;
        gap: 1rem !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        will-change: transform;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        max-width: 100%;
        height: 100% !important;
        margin: 0;
    }
    
    .service-left {
        display: none !important;
    }
    
    .service-icon {
        display: none !important;
    }
    
    .service-image {
        display: none !important;
    }
    
    .service-right {
        grid-row: 1 / -1;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .service-title {
        font-size: 1.4rem !important;
        font-weight: 900 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
        text-align: center;
    }
    
    .service-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.8rem !important;
        text-align: center;
    }
    
    .service-features {
        display: none;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
        gap: 1.2rem;
    }
    
    .service-features li::before {
        display: none;
    }
    
    .service-cta {
        grid-row: 3;
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 25px !important;
        align-self: center !important;
        margin-top: 0.5rem !important;
        width: auto;
    }
    
    .services-nav {
        top: 1rem;
        gap: 0.75rem;
        z-index: 20;
    }
    
    .service-dot {
        width: 10px;
        height: 10px;
    }
}

/* Responsive pour très petits écrans */
@media (max-width: 480px) {
    .service-features {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .services-stack-container {
        height: 70vh !important;
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
    
    .services-grid {
        height: 400px !important;
        max-width: 100%;
        padding: 0 45px; /* Espace pour les flèches */
    }
    
    .service-card {
        padding: 1rem !important;
        gap: 0.8rem !important;
        border-radius: 12px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        grid-template-rows: 1fr auto !important;
    }
    
    .service-left {
        display: none !important;
    }
    
    .service-icon {
        display: none !important;
    }
    
    .service-image {
        display: none !important;
    }
    
    .service-right {
        grid-row: 1 / -1;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .service-title {
        font-size: 1.2rem !important;
        font-weight: 900 !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.3 !important;
    }
    
    .service-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .service-features {
        display: none;
    }
    
    .service-features li {
        font-size: 0.8rem;
        padding: 0.15rem 0;
        gap: 1rem;
    }
    
    .service-features li::before {
        display: none;
    }
    
    .service-cta {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.95rem !important;
        border-radius: 20px !important;
    }
    
    .services-nav {
        top: 0.75rem;
        gap: 0.6rem;
    }
    
    .service-dot {
        width: 8px;
        height: 8px;
    }
    
    .services-nav-arrow {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .services-nav-prev {
        left: 5px !important;
    }
    
    .services-nav-next {
        right: 5px !important;
    }
}

/* About Section - Style sombre avec variation */
#apropos {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

#apropos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutGrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutGrid)"/></svg>');
    opacity: 0.3;
}

/* Testimonials Section - Style sombre avec variation */
#temoignages {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

#temoignages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonialsGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 0 0 L 25 25 M 25 0 L 0 25" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonialsGrid)"/></svg>');
    opacity: 0.3;
}

/* Contact Section - Style sombre avec variation */
#contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactGrid" width="30" height="30" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="30" height="30" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrid)"/></svg>');
    opacity: 0.2;
}

/* Why Choose Us Section - Style clair pour contraste */
#pourquoi-nous {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
}

#pourquoi-nous::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whyChooseGrid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 0 0 L 25 25 M 25 0 L 0 25" fill="none" stroke="rgba(30,58,138,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23whyChooseGrid)"/></svg>');
    opacity: 0.4;
}

#pourquoi-nous .section-title {
    color: var(--primary-blue);
}

#pourquoi-nous .section-subtitle {
    color: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Couleurs spécifiques pour les sections sombres */
#services .section-title,
#apropos .section-title,
#temoignages .section-title,
#contact .section-title {
    color: white;
}

#services .section-subtitle,
#apropos .section-subtitle,
#temoignages .section-subtitle,
#contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    text-align: center;
    color: var(--text-dark);
    transform: translateY(50px);
    opacity: 0;
}

.service-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

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

/* Why Choose Us - Design professionnel moderne */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 58, 138, 0.1);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-choose-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-button {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-choose-card .btn-secondary {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.why-choose-card .btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.card-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.why-choose-highlight {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.why-choose-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="highlightPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23highlightPattern)"/></svg>');
    opacity: 0.4;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-text {
    flex: 1;
}

.highlight-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.highlight-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.highlight-badges {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.experience-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.experience-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.about-image {
    text-align: center;
}

.founder-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto;
    position: relative;
}

.founder-photo::before {
    content: '👩‍💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    color: white;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-teal);
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    color: white;
    font-weight: 600;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Messages de formulaire */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: 0.5px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-text {
    margin-bottom: 1.5rem;
    opacity: 0.85;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-teal);
}

.footer-links a:hover {
    color: white;
    padding-left: 1.2rem;
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link i {
    color: white !important;
}

.social-link:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    border-color: var(--accent-teal);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    color: white !important;
}

.social-link:hover i {
    color: white !important;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.6;
}

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

/* Éléments fade-in - maintenant gérés par Anime.js */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* Fallback CSS : s'assurer que les éléments deviennent visibles après 3 secondes */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeInFallback 3s ease forwards;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-highlight {
        padding: 2rem;
        margin-top: 3rem;
    }

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

    .highlight-badges {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .contact-form {
        order: 1;
        padding: 1.5rem !important;
    }

    .contact-info {
        order: 2;
        padding: 1.5rem 0;
    }
    
    .contact-info h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-item {
        margin-bottom: 1.2rem !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .contact-icon {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem !important;
    }
    
    .form-group label {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
    }
    
    .form-group textarea {
        min-height: 100px !important;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 25px !important;
        width: 100% !important;
    }

}

@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem 4rem;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .service-card,
    .contact-form {
        padding: 1.2rem !important;
    }
    
    .contact-info h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .contact-item {
        margin-bottom: 1rem !important;
        gap: 0.6rem;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem !important;
        font-size: 0.95rem !important;
    }
    
    .submit-btn {
        padding: 0.9rem 1.2rem !important;
        font-size: 0.95rem !important;
    }
}

/* ========================================
   STYLES SPÉCIFIQUES AUX PAGES DE SERVICES
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--accent-teal);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--dark-gray);
    margin: 0 0.5rem;
}

/* Services Grid */
.services-section {
    padding: 5rem 2rem;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

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

.service-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-content {
    padding: 2rem;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem; /* Augmenté pour plus d'espace entre l'icône et le texte */
}

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

.service-cta {
    background: var(--accent-teal);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #0f766e;
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--accent-teal);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

.pricing-cta {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-cta:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.pricing-cta.featured {
    background: var(--accent-teal);
}

.pricing-cta.featured:hover {
    background: #0f766e;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive pour les pages de services */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-phone-btn {
        padding: 0.5rem;
        min-width: 44px;
        justify-content: center;
    }
    
    .nav-phone-btn .phone-number {
        display: none !important;
    }
    
    .nav-phone-btn:hover {
        padding-right: 0.5rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .logo img {
        height: 40px;
    }

    /* Dropdown responsive */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-left: 1rem;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu a:hover {
        transform: none;
        background: transparent;
        color: var(--accent-teal);
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Section des Offres */
.offers-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

.offers-header {
    margin-bottom: 2.5rem;
}

.offers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.offers-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.offers-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 2rem;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.offer-card-highlight {
    border-color: var(--accent-teal);
    transform: scale(1.02);
}

.offer-card-highlight:hover {
    transform: scale(1.02) translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.offer-badge .badge {
    background: var(--accent-teal);
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.offer-title {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.offer-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-teal);
    display: block;
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
    display: block;
    margin-top: 0.2rem;
}

.offer-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.offer-cta-wrapper {
    margin-top: auto;
}

.offer-cta {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    font-size: 0.9rem;
}

.offer-cta:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
}

.offer-card-highlight .offer-cta {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
}

.offer-card-highlight .offer-cta:hover {
    background: white;
    color: var(--accent-teal);
    border-color: var(--accent-teal);
}

/* Responsive pour la section des offres */
@media (max-width: 768px) {
    .offers-section {
        padding: 2.5rem 0;
    }
    
    .offers-title {
        font-size: 2rem;
    }
    
    .offers-subtitle {
        font-size: 1.1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .offer-card {
        margin-bottom: 0;
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .offers-title {
        font-size: 1.75rem;
    }
    
    .offer-card {
        padding: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .offer-title {
        font-size: 1.2rem;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        padding: 5rem 0 2rem 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        list-style: none;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Overlay de fond - créé en JS ou séparément */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease forwards;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        width: 100%;
        display: block;
        list-style: none;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a,
    .nav-menu .dropdown-toggle {
        padding: 1.2rem 2rem;
        border-bottom: none;
        display: block;
        color: var(--text-dark) !important;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        background: transparent;
    }
    
    .nav-menu a:hover,
    .nav-menu .dropdown-toggle:hover {
        background: var(--light-gray) !important;
        color: var(--accent-teal) !important;
        padding-left: 2.5rem;
    }

    .nav-menu a:hover::after {
        display: none;
    }

    .dropdown {
        width: 100%;
        display: block;
    }
    
    .dropdown > .dropdown-toggle {
        width: 100%;
        margin: 0;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
        display: flex !important;
        align-items: center;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-left: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block !important;
        width: 100%;
    }

    .dropdown-menu.active {
        max-height: 400px;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        margin: 0;
        opacity: 1 !important;
        transform: none !important;
    }

    .dropdown-menu a {
        padding: 1rem 2rem 1rem 3rem !important;
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 1rem;
        color: var(--text-dark) !important;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        transform: none;
        background: var(--light-gray) !important;
        color: var(--accent-teal) !important;
        padding-left: 3.5rem !important;
    }
}

/* Current page indicator */
.nav-menu a.current-page,
.dropdown-toggle.current-page {
    color: var(--accent-teal);
    font-weight: 600;
}

.nav-menu a.current-page::after,
.dropdown-toggle.current-page::after {
    width: 100%;
}

/* ========================================
   STYLES SPÉCIFIQUES AUX PAGES INTÉRIEURES
   (Classes préfixées pour éviter les conflits)
   ======================================== */

/* Page Header - Style moderne et élégant */
.inner-page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 10rem 2rem 6rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.inner-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pageHeaderGrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pageHeaderGrid)"/></svg>');
    opacity: 0.3;
}

.inner-page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.inner-page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Breadcrumb - Style moderne */
.inner-breadcrumb {
    background: #f1f5f9;
    padding: 1rem 2rem;
    border-top: 2px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 80px;
    position: sticky;
    top: 80px;
    z-index: 1;
}

.inner-breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.inner-breadcrumb a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.inner-breadcrumb a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.inner-breadcrumb span {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Service Detail Section - Style moderne et élégant */
.inner-service-detail {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.inner-service-detail .inner-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Service Intro - Style hero */
.inner-service-intro {
    text-align: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-service-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inner-service-intro p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Introduction de section */
.inner-section-intro {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

/* Styles pour la page tarifs */
.inner-price {
    text-align: center;
    margin: 1rem 0;
}

.inner-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-teal);
    display: block;
}

.inner-price-period {
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Service Overview - Grille moderne */
.inner-service-overview {
    margin-bottom: 3rem;
}

.inner-service-overview h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.inner-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Force une distribution équilibrée pour éviter 3+1 cards */
.inner-overview-grid:has(.inner-overview-item:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.inner-overview-grid:has(.inner-overview-item:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.inner-overview-grid:has(.inner-overview-item:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.inner-overview-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.inner-overview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.inner-overview-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.inner-overview-item:hover::before {
    transform: scaleX(1);
}

.inner-overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
}

.inner-overview-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.inner-overview-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.inner-overview-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Service Features - Grille élégante */
.inner-service-features {
    margin-bottom: 3rem;
}

.inner-service-features h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

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

/* Force une distribution équilibrée pour éviter 3+1 cards */
.inner-features-grid:has(.inner-feature-category:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.inner-features-grid:has(.inner-feature-category:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.inner-features-grid:has(.inner-feature-category:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.inner-feature-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Amélioration de la typographie pour les pages SEO */
.inner-service-detail h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 4rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    padding-top: 1rem;
}

.inner-service-detail h2:first-of-type {
    margin-top: 2rem;
}

.inner-service-detail h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.inner-service-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    text-align: left;
}

.inner-service-detail p + p {
    margin-top: 1.5rem;
}

.inner-service-detail ul,
.inner-service-detail ol {
    margin: 2rem 0;
    padding-left: 2rem;
}

.inner-service-detail ul + p,
.inner-service-detail ol + p {
    margin-top: 2rem;
}

.inner-service-detail p + ul,
.inner-service-detail p + ol {
    margin-top: 1.5rem;
}

.inner-service-detail li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.inner-service-detail ul li::marker {
    color: var(--accent-teal);
}

.inner-service-detail ol li::marker {
    color: var(--accent-teal);
    font-weight: 600;
}

.inner-service-detail h2 + p {
    margin-top: 0;
}

.inner-service-detail h3 + p {
    margin-top: 0;
}

/* Amélioration des pages SEO - Cartes avec icônes */
.inner-feature-category[style*="background: white"] {
    display: flex;
    flex-direction: column;
}

.inner-feature-category[style*="background: white"] h3 {
    margin-top: 0;
}

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

.inner-section-header .inner-overview-icon {
    margin: 0 auto 1rem;
}

.inner-section-header h2 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inner-section-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.inner-feature-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.inner-feature-category h4 i {
    color: var(--accent-teal);
    font-size: 1.2rem;
}

.inner-feature-category ul {
    list-style: none;
    padding: 0;
}

.inner-feature-category li {
    padding: 0.8rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.inner-feature-category li:last-child {
    border-bottom: none;
}

.inner-feature-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(13, 148, 136, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-feature-category li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

/* Service Process - Étapes numérotées */
.inner-service-process {
    margin-bottom: 3rem;
}

.inner-service-process h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.inner-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Force une distribution équilibrée pour éviter 3+1 cards */
.inner-process-steps:has(.inner-process-step:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

.inner-process-steps:has(.inner-process-step:nth-child(5):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.inner-process-steps:has(.inner-process-step:nth-child(6):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.inner-process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.inner-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.inner-process-step:hover::before {
    transform: scaleX(1);
}

.inner-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.inner-step-number::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.inner-step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.inner-step-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Service CTA - Section finale */
.inner-service-cta {
    text-align: center;
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-service-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.inner-service-cta p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.inner-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.inner-btn-primary, .inner-btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.inner-btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    color: white;
    border-color: var(--primary-blue);
}

.inner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

.inner-btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.inner-btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
}

/* Styles spécifiques pour les pages de services */
.inner-admin-overview, .inner-startup-phases, .inner-startup-expertise, .inner-startup-tools {
    margin-bottom: 5rem;
}

.inner-admin-overview h3, .inner-startup-phases h3, .inner-startup-expertise h3, .inner-startup-tools h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.inner-phases-grid, .inner-expertise-grid, .inner-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.inner-phase-card, .inner-expertise-item, .inner-tool-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.inner-phase-card:hover, .inner-expertise-item:hover, .inner-tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.inner-phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.inner-phase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.inner-phase-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.inner-phase-content ul, .inner-expertise-item ul {
    list-style: none;
    padding: 0;
}

.inner-phase-content li, .inner-expertise-item li {
    padding: 0.6rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.inner-phase-content li:last-child, .inner-expertise-item li:last-child {
    border-bottom: none;
}

.inner-phase-content li::before, .inner-expertise-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

.inner-expertise-item h4, .inner-tool-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.inner-expertise-item h4 i, .inner-tool-item h4 i {
    color: var(--accent-teal);
    font-size: 1.2rem;
}

.inner-expertise-item p, .inner-tool-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive pour les pages intérieures */
@media (max-width: 768px) {
    .inner-page-header {
        padding: 6rem 1rem 3rem;
    }
    
    .inner-page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .inner-page-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .inner-breadcrumb {
        padding: 0.8rem 1rem;
        margin-top: 70px;
    }
    
    .inner-breadcrumb-container {
        font-size: 0.85rem;
    }
    
    .inner-service-detail {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .inner-service-intro {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .inner-service-intro h2 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .inner-service-intro p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .inner-service-overview h3,
    .inner-service-features h3,
    .inner-service-process h3 {
        font-size: 1.6rem !important;
        margin-bottom: 2rem !important;
    }
    
    .inner-overview-grid, .inner-features-grid, .inner-process-steps,
    .inner-phases-grid, .inner-expertise-grid, .inner-tools-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0;
    }
    
    .inner-overview-item, .inner-feature-category, .inner-process-step,
    .inner-phase-card, .inner-expertise-item, .inner-tool-item {
        padding: 1.5rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .inner-overview-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .inner-overview-item h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .inner-overview-item p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    .inner-feature-category h4 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .inner-feature-category li {
        font-size: 0.9rem !important;
        padding: 0.6rem 0 !important;
        padding-left: 1.8rem !important;
        line-height: 1.5;
    }
    
    .inner-feature-category li::before {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.9rem !important;
    }
    
    .inner-step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .inner-step-content h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .inner-step-content p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
    
    .inner-service-cta {
        padding: 2rem 1.5rem;
    }
    
    .inner-service-cta h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .inner-service-cta p {
        font-size: 1rem !important;
        line-height: 1.6;
        margin-bottom: 1.5rem !important;
    }
    
    .inner-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .inner-btn-primary, .inner-btn-secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Responsive pour très petits écrans - pages intérieures */
@media (max-width: 480px) {
    .inner-page-header {
        padding: 5rem 1rem 2.5rem;
    }
    
    .inner-page-header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .inner-page-header p {
        font-size: 0.95rem;
    }
    
    .inner-service-detail {
        padding: 1.5rem 0.8rem;
    }
    
    .inner-service-intro {
        padding: 1.2rem 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .inner-service-intro h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .inner-service-intro p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .inner-service-overview h3,
    .inner-service-features h3,
    .inner-service-process h3 {
        font-size: 1.4rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .inner-overview-item, .inner-feature-category, .inner-process-step {
        padding: 1.2rem 1rem;
    }
    
    .inner-overview-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }
    
    .inner-overview-item h4 {
        font-size: 1.1rem !important;
    }
    
    .inner-overview-item p {
        font-size: 0.9rem !important;
    }
    
    .inner-feature-category h4 {
        font-size: 1.1rem !important;
    }
    
    .inner-feature-category li {
        font-size: 0.85rem !important;
        padding: 0.5rem 0 !important;
        padding-left: 1.5rem !important;
    }
    
    .inner-step-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .inner-step-content h4 {
        font-size: 1.1rem !important;
    }
    
    .inner-step-content p {
        font-size: 0.9rem !important;
    }
    
    .inner-service-cta {
        padding: 1.5rem 1rem;
    }
    
    .inner-service-cta h3 {
        font-size: 1.3rem !important;
    }
    
    .inner-service-cta p {
        font-size: 0.95rem !important;
    }
}

/* Styles pour le profil de la fondatrice */
.founder-profile {
    margin-bottom: 2rem;
}

.founder-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.founder-image {
    flex-shrink: 0;
}

.founder-portrait {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-info {
    flex: 0 1 auto;
    text-align: left;
}

.founder-info h2,
.founder-info h4 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-title {
    font-size: 1.3rem;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.founder-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.founder-description p {
    margin-bottom: 1.5rem;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

/* Responsive pour le profil de la fondatrice */
@media (max-width: 768px) {
    .founder-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .founder-info {
        text-align: center;
    }
    
    .founder-portrait {
        width: 120px;
        height: 120px;
    }
    
    .founder-info h2,
    .founder-info h4 {
        font-size: 1.6rem;
    }
    
    .founder-title {
        font-size: 1.1rem;
    }
    
    .founder-subtitle {
        font-size: 1rem;
    }
    
    .founder-description {
        font-size: 1rem;
    }
}

/* Styles pour la page des services sans cards */
.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(30, 58, 138, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-teal);
}

.service-icon-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.3);
}

.service-info h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--accent-teal);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.service-content {
    padding: 0 2rem 2rem 2rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-features-list {
    margin: 2rem 0;
}

.service-features-list h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features-list ul {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    padding: 0.8rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

.service-cta .inner-btn-primary {
    display: inline-block !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    color: white !important;
    background: var(--accent-teal) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3) !important;
    border: none !important;
}

.service-cta .inner-btn-primary:hover {
    background: #0f766e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4) !important;
}

/* Responsive pour les services */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-info h3 {
        font-size: 1.8rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-content {
        padding: 0 1rem 1.5rem 1rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    .service-features-list h4 {
        font-size: 1.2rem;
    }
    
    .service-features-list li {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
}

/* Responsive pour l'animation des lignes */
@media (max-width: 768px) {
    .services-background-animation {
        opacity: 0.4;
    }
    
    .animated-lines {
        opacity: 0.4;
    }
    
    .animated-line {
        animation-duration: 6s;
    }
    
    /* Réduire le nombre de lignes sur mobile pour de meilleures performances */
    .line-3, .line-6, .line-v2, .line-v5, .line-d1, .line-d4 {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-background-animation {
        opacity: 0.3;
    }
    
    .animated-lines {
        opacity: 0.3;
    }
    
    /* Encore moins de lignes sur très petit écran */
    .line-2, .line-5, .line-v1, .line-v4, .line-d2, .line-d3 {
        display: none;
    }
}

/* RAF Banner Styles */
.raf-banner {
    background: var(--primary-blue);
    color: white;
    padding: 1.5rem 0 1rem 0;
    border-bottom: 3px solid var(--accent-teal);
    margin-top: 70px; /* Espace pour le header fixe */
}

.raf-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.raf-banner-text {
    flex: 1;
}

.raf-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-teal);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.raf-badge i {
    font-size: 0.8rem;
}

.raf-banner-text h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    color: white;
}

.raf-banner-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.raf-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-blue);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.raf-cta:hover {
    background: var(--accent-teal);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.raf-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.raf-cta:hover i {
    transform: translateX(2px);
}

/* Responsive RAF Banner */
@media (max-width: 768px) {
    .raf-banner {
        padding: 1.2rem 0;
    }
    
    .raf-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    
    .raf-banner-text h2 {
        font-size: 1.4rem;
    }
    
    .raf-banner-text p {
        font-size: 0.95rem;
    }
    
    .raf-cta {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .raf-banner {
        padding: 1rem 0;
    }
    
    .raf-banner-text h2 {
        font-size: 1.2rem;
    }
    
    .raf-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .raf-cta {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* FFMAS Banner Styles */
.ffmas-banner {
    position: absolute;
    bottom: -8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    z-index: 3;
}

.ffmas-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ffmas-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: var(--primary-blue);
}

.ffmas-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.ffmas-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

/* Responsive FFMAS Banner */
@media (max-width: 768px) {
    .ffmas-banner {
        width: 90%;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .ffmas-link {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .ffmas-logo {
        height: 35px;
    }
    
    .ffmas-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ffmas-banner {
        width: 95%;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .ffmas-link {
        padding: 0.7rem 0.8rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .ffmas-logo {
        height: 30px;
    }
    
    .ffmas-text {
        font-size: 0.8rem;
    }
}

/* Footer Contact Styles */
.footer-contact {
    margin: 0;
}

.footer-phone,
.footer-email {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-phone i,
.footer-email i {
    color: var(--accent-teal);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-phone a,
.footer-email a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: white;
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.6rem;
    }
    
    .footer-contact {
        margin: 0.5rem 0;
    }
    
    .footer-phone,
    .footer-email {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-phone,
    .footer-email {
        font-size: 0.85rem;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}
