/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.6;
    color: #e8e8e8;
    background-color: #343332;
}


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

/* Header */
.header {
    background: #2a2a29;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    border-bottom: 1px solid #4a4a49;
}


.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-decoration: none;
    gap: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
    background: transparent;
    border-radius: 8px;
    padding: 5px;
    min-height: 60px;
    max-height: 60px;
}

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

.logo-text {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logo-escape {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 2px;
    margin-top: 2px;
    margin-bottom: 0;
}

.logo-production {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    display: block;
    margin-top: 0;
    margin-bottom: 2px;
    letter-spacing: 1.5px;
}

.logo:hover .logo-escape {
    color: #ff6b35;
    transform: translateY(-2px);
    text-shadow: 2px 4px 6px rgba(0,0,0,0.7);
}

.logo:hover .logo-production {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 2px 4px 6px rgba(0,0,0,0.7);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-nav a {
    text-decoration: none;
    color: #e8e8e8;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav a:hover {
    color: #ff6b35;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #ff6b35;
}

/* Scenarios menu with thumbnails */
.scenarios-menu {
    min-width: 400px;
    max-width: 500px;
}

.menu-header {
    border-bottom: 1px solid #eee;
    padding: 0;
}

.menu-title {
    display: block;
    padding: 1rem;
    font-weight: 600;
    color: #ff6b35;
    text-decoration: none;
    background: #f8f9fa;
}

.scenario-menu-item {
    padding: 0;
}

.scenario-menu-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f0f0f0;
}

.scenario-menu-link:hover {
    background-color: #f8f9fa;
    color: #ff6b35;
}

.scenario-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.scenario-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.scenario-name {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scenario-meta {
    font-size: 0.8rem;
    color: #666;
}

.menu-footer {
    border-top: 1px solid #eee;
    padding: 0;
}

.see-all {
    display: block;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #ff6b35;
    text-decoration: none;
    background: #f8f9fa;
}

.see-all:hover {
    background: #e3f2fd;
}


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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, rgba(229, 90, 43, 0.1) 100%);
    animation: heroShimmer 3s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive pour hero-content */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Icônes Font Awesome */
.badge-icon,
.hero-feature-icon,
.highlight-icon,
.summary-icon,
.step-icon,
.event-type-icon,
.button-icon {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    vertical-align: middle;
}

.badge-icon i,
.hero-feature-icon i,
.highlight-icon i,
.summary-icon i,
.step-icon i,
.event-type-icon i,
.button-icon i {
    font-size: inherit;
    color: inherit;
}

/* Assombrir les icônes pour meilleure visibilité */
.event-type-icon,
.card-icon,
.client-icon,
.feature-icon,
.innovation-icon,
.advantage-icon,
.contact-icon,
/* .service-icon, */
.included-icon,
.highlight-icon,
.summary-icon,
.step-icon {
    color: #333 !important;
}

.event-type-icon i,
.card-icon i,
.client-icon i,
.feature-icon i,
.innovation-icon i,
.advantage-icon i,
.contact-icon i,
/* .service-icon i, */
.included-icon i,
.highlight-icon i,
.summary-icon i,
.step-icon i {
    color: #333 !important;
}

/* Icônes blanches sur fond sombre */
.scenarios-highlights .highlight-icon,
.scenarios-highlights .highlight-icon i,
.sur-mesure-hero .highlight-icon,
.sur-mesure-hero .highlight-icon i,
.dark-section .highlight-icon,
.dark-section .highlight-icon i,
.dark-section .feature-icon,
.dark-section .feature-icon i,
.dark-section .card-icon,
.dark-section .card-icon i,
.concept-innovation .innovation-icon,
.concept-innovation .innovation-icon i,
.concept-advantages .advantage-icon,
.concept-advantages .advantage-icon i,
.concept-process .badge-icon,
.concept-process .badge-icon i,
.testimonials-section .badge-icon,
.testimonials-section .badge-icon i {
    color: #ffffff !important;
}

/* Forcer l'affichage des icônes Font Awesome et éviter les carrés */
.fas, .far, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    display: inline-block !important;
    line-height: 1 !important;
}

/* Règles spécifiques pour éviter les carrés Unicode */
span[style*="font-size"] i.fas,
span[style*="font-size"] i.far,
span[style*="font-size"] i.fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.badge-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.8) !important;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: 1.2;
    word-wrap: break-word;
}

/* ========================================
   HERO SECTION - STYLES UNIQUES
   ======================================== */

/* Grid des features du hero */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem auto 2rem auto;
    max-width: 750px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Features du hero - 4 cartes alignées */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 1000px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.hero-feature-text {
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Cards des features du hero */
.hero-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    color: white;
    min-height: 100px;
}

.hero-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Texte des features du hero */
.hero-feature-text {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    text-align: center;
    line-height: 1.2;
}

/* Icônes des features du hero */
.hero-feature-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    margin-top: 0.5rem;
}

/* Positionnement de la 4ème feature */
.hero-feature-bottom {
    grid-column: 2;
    grid-row: 2;
}

.feature {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 30px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    font-weight: 500 !important;
    text-align: center !important;
}

.feature-text {
    display: block !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

/* Anciens styles supprimés - remplacés par les styles uniques du hero */

.feature-bottom {
    grid-column: 2 !important;
    grid-row: 2 !important;
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Ancien style supprimé pour éviter les conflits */

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    animation: fadeInUp 1s ease-out 1s both;
}

/* Style spécifique pour le bouton du hero */
.hero-cta .cta-button.primary {
    background: white !important;
    color: #ff6b35 !important;
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3) !important;
}

.hero-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3);
    background: #ff6b35 !important;
    color: white !important;
}

.hero-cta .cta-button.secondary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3) !important;
    border: none !important;
}

.hero-cta .cta-button.secondary:hover {
    background: linear-gradient(135deg, #e55a2b, #d44a1a) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4) !important;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    color: #ff6b35 !important;
}

/* Exception pour le hero - les boutons restent orange */
.hero-cta .cta-button.primary:hover {
    background: linear-gradient(135deg, #e55a2b, #d44a1a) !important;
    color: white !important;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3) !important;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #e55a2b, #d44a1a);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    flex: 1;
    transition: transform 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
}

.about-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #e8e8e8;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #343332;
}

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

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #e8e8e8;
    line-height: 1.6;
}

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

.testimonial-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8e8e8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    text-align: left !important;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #ff6b35;
    font-size: 0.9rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.process-step {
    text-align: center;
    position: relative;
}

/* Style global harmonisé pour tous les step-number */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 2rem auto;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8e8e8;
}

/* Scenarios Preview Section */
.scenarios-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    overflow-x: hidden;
}

.scenarios-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.scenarios-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.scenarios-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.scenarios-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenarios-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.scenarios-highlights .highlight-item:hover {
    transform: translateX(10px);
}

.scenarios-highlights .highlight-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.scenarios-highlights .highlight-text h4 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.scenarios-highlights .highlight-text p {
    color: #e8e8e8;
    margin: 0;
    font-size: 1rem;
}

.scenarios-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* Responsive pour scenarios-cta */
@media (max-width: 768px) {
    .scenarios-cta {
        padding: 1rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .scenarios-cta {
        padding: 0.8rem;
        margin: 0 0.3rem;
    }
}

.scenarios-cta .cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.scenarios-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.scenarios-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.scenarios-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.scenarios-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.preview-card {
    background: #2a2a29;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.preview-image {
    height: 200px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.preview-content {
    padding: 1.5rem;
}

.preview-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.preview-content p {
    color: #ff6b35;
    font-size: 0.9rem;
    margin: 0;
}

/* Scenarios Section */
.scenarios {
    padding: 0;
}

.scenarios-list {
    padding: 80px 0 120px 0;
}

.scenarios-list .page-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

.scenarios-list .page-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #e8e8e8;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.scenarios h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    text-align: center;
}

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

.scenario-card {
    background: #2a2a29;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border: 1px solid #4a4a49;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scenario-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 0 !important;
}

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

.scenario-content {
    padding: 2rem;
}

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

.scenario-header h3 {
    font-family: 'Roboto Slab', serif;
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scenario-header h3 a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto Slab', serif;
    font-weight: 600;
}

.scenario-header h3 a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.scenario-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

.scenario-meta span {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.scenario-meta .difficulty {
    background: transparent !important;
    color: #ff6b35 !important;
    padding: 0.2rem 0.5rem !important;
    font-size: 1rem !important;
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.scenario-description {
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.scenario-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #ff6b35;
    border-radius: 25px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.scenario-link:hover {
    color: #ffffff;
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* How it works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    text-align: center;
}

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

.feature-item {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.feature-content {
    padding: 2rem;
}

.feature-item h3 {
    font-family: 'Lora', serif;
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
}

.target-audience h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.audience-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-item:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-3px);
}

.audience-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    text-align: center;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* What is escape game */
.what-is-escape {
    padding: 80px 0;
    background: #f8f9fa;
}

.what-is-escape h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.what-is-escape p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why choose us */
.why-choose-us {
    padding: 80px 0;
}

.why-choose-us h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.why-choose-us p {
    font-size: 1.1rem;
    color: #e8e8e8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* How to organize */
.how-to-organize {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-to-organize h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-align: center;
}

.how-to-organize h3 {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b35;
    margin: 2rem 0 1rem;
}

.how-to-organize p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a19 0%, #2a2a29 100%);
    color: #e8e8e8;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.footer-section h4 {
    color: #ff6b35;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 1px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #d0d0d0;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-section ul li::before {
    content: '→';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: -15px;
}

.footer-section a {
    color: #e8e8e8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

.footer-section a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    background: rgba(255, 107, 53, 0.05);
    padding-left: 0.5rem;
}

.footer-contact .contact-icon {
    font-size: 1.3rem;
    min-width: 25px;
    color: #ff6b35;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-social .social-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: inline;
}

.footer-social .social-link:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: none;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    text-align: center;
    color: #b8b8b8;
    font-size: 0.95rem;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    border-radius: 20px 20px 0 0;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #2a2a29;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 2rem;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .navbar-nav a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #ffffff;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav a:hover {
        background: #ff6b35;
        color: #ffffff;
        transform: translateY(-2px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        min-width: auto;
    }
    
    .dropdown-menu a {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        color: #e8e8e8;
        border-bottom: 1px solid #4a4a49;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #ff6b35;
    }
    
/* MENU MOBILE - ULTRA SIMPLE */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 0 20px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    max-height: calc(100vh - 140px);
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    color: #e8e8e8;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start !important;
    text-align: left !important;
    text-align-last: left !important;
}

.menu-item:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.menu-item i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.menu-item-with-submenu {
    position: relative;
}

.menu-item-with-submenu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    color: #e8e8e8;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-align: left !important;
    text-align-last: left !important;
}

.menu-item-with-submenu .menu-item:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateX(5px);
}

.menu-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left !important;
    text-align-last: left !important;
    justify-content: flex-start !important;
    width: 100%;
}

.menu-item-content i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.menu-item-content span {
    text-align: left !important;
    text-align-last: left !important;
    display: block;
    width: 100%;
}

.submenu-arrow {
    color: #ff6b35;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.submenu-arrow.rotated {
    transform: rotate(180deg);
}

.submenu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin: 0;
    padding: 0;
}

.submenu-items.open {
    max-height: 600px;
}

.submenu-item {
    display: block;
    padding: 8px 20px 8px 30px;
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 0;
    line-height: 1.2;
}

.submenu-item:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
    transform: translateX(5px);
}
}
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
        max-width: 900px;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    
    .audience-item {
        padding: 1.2rem 0.8rem;
        min-height: 100px;
    }
    
    .audience-item h4 {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page content */
.page-content {
    padding: 120px 0 80px;
}

.page-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.page-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Scenario detail page */
.scenario-detail {
    padding: 120px 0 80px;
}

.scenario-hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.scenario-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.scenario-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.scenario-meta span {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.scenario-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.scenario-content h2 {
    font-family: 'Lora', serif;
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.scenario-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
}

.scenario-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.scenario-content li {
    margin-bottom: 0.5rem;
}

.scenario-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #ff6b35;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid #ff6b35;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: #ff6b35;
    color: white;
}

/* Random Scenario Widget */
.random-scenario-widget {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.widget-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.random-scenario-card {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.random-scenario-card .scenario-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.random-scenario-card .scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 0 !important;
}

.random-scenario-card:hover .scenario-image img {
    transform: scale(1.05);
}

.random-scenario-card .scenario-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.random-scenario-card .scenario-header h4 {
    margin-bottom: 1rem;
}

.random-scenario-card .scenario-header h4 a {
    font-family: 'Roboto Slab', serif;
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s;
}

.random-scenario-card .scenario-header h4 a:hover {
    color: #ffffff;
}

.random-scenario-card .scenario-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
}

.random-scenario-card .scenario-meta span {
    background: #ff6b35;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.random-scenario-card .scenario-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.random-scenario-card .scenario-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.random-scenario-card .scenario-link:hover {
    color: #e55a2b;
}

.widget-footer {
    text-align: center;
    margin-top: 2rem;
}

.see-all-scenarios {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.see-all-scenarios:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.page-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-description {
    font-size: 1.2rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-body h2 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.page-body h3 {
    font-family: 'Lora', serif;
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.page-body h4 {
    font-family: 'Poppins', sans-serif;
    color: #ff6b35;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.page-body p {
    margin-bottom: 1.5rem;
    color: #e8e8e8;
}

.page-body ul, .page-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.8rem;
    color: #e8e8e8;
}

.page-body strong {
    color: #ff6b35;
    font-weight: 600;
}

.page-body em {
    color: #b8b8b8;
    font-style: italic;
}

.page-body blockquote {
    background: #2a2a29;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #e8e8e8;
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.page-body th, .page-body td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.page-body th {
    background: #ff6b35;
    color: white;
    font-weight: 600;
}

.page-body tr:hover {
    background: #2a2a29;
}

.page-actions {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    background: #2a2a29;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid #4a4a49;
}

.page-actions .cta-button,
.page-actions .secondary-button {
    margin: 0 1rem;
    display: inline-block;
}

/* Responsive pour le widget */
@media (max-width: 768px) {
    .random-scenarios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .random-scenario-card .scenario-content {
        padding: 1.5rem;
    }
    
    .random-scenario-card .scenario-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .random-scenario-card .scenario-meta span {
        text-align: center;
    }
    
    /* Responsive pour les pages */
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .page-body {
        font-size: 1rem;
    }
    
    .page-body h2 {
        font-size: 1.8rem;
    }
    
    .page-body h3 {
        font-size: 1.5rem;
    }
    
    .page-actions .cta-button,
    .page-actions .secondary-button {
        margin: 0.5rem;
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Responsive pour le logo */
    .logo-escape {
        font-size: 1.9rem;
        letter-spacing: 2.5px;
    }
    
    .logo-production {
        font-size: 2.1rem;
        letter-spacing: 1.5px;
    }
    
    .logo-text {
        margin-left: 0;
    }
    
    .logo-img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-escape {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .logo-production {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .logo-text {
        margin-left: 0;
    }
    
    .logo-img {
        height: 55px;
    }
    
    /* Hero responsive pour très petits écrans */
    .hero {
        padding: 60px 0 30px 0;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.6rem 0.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .hero-feature-card {
        padding: 0.8rem 0.3rem;
    }
    
    .hero-feature-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
    
    .hero-feature-text {
        font-size: 0.7rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Responsive pour tablettes (768px à 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px 0;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        max-width: 900px;
    }
    
    .hero-feature-card {
        padding: 1.2rem 0.8rem;
    }
    
    .hero-feature-text {
        font-size: 0.9rem;
    }
}

/* Responsive pour les nouvelles sections */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 40px 0;
    }
    
    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        margin-top: 2rem;
        margin-bottom: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.8rem 0.4rem;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        margin: 1.5rem 0;
    }
    
    .hero-feature-card {
        padding: 1rem 0.5rem;
    }
    
    .hero-feature-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .hero-feature-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-cta {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .about-stat {
        padding: 1rem 0.5rem;
    }
    
    .about-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Style step-number harmonisé globalement */
    
    /* Responsive pour les nouvelles pages */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .concept-text h2 {
        font-size: 2.2rem;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details h2,
    .contact-form-section h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .scenarios-list .page-header h1 {
        font-size: 3.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    /* Responsive pour scenarios-preview */
    .scenarios-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .scenarios-text h2 {
        font-size: 2.2rem;
    }
    
    .scenarios-highlights .highlight-item {
        padding: 1rem;
    }
    
    .scenarios-cta {
        gap: 0.8rem;
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .scenarios-cta .cta-button.primary,
    .scenarios-cta .cta-button.secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Page Concept Styles */
.page-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(229, 90, 43, 0.9) 100%), url('{{ "images/IMG_8468-scaled.jpg" | relURL }}');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

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

.page-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero .hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.concept-overview {
    padding: 100px 0;
    background: #343332;
}

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

.concept-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.concept-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.concept-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.highlight-text h4 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-text p {
    color: #e8e8e8;
    margin: 0;
    font-size: 1rem;
}

.concept-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.how-it-works-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.process-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-content p {
    color: #e8e8e8;
    line-height: 1.6;
}

.features-detailed {
    padding: 100px 0;
    background: #343332;
}

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

.feature-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.target-audience-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.audience-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.audience-card li {
    color: #e8e8e8;
    padding: 0.5rem 0;
    border-bottom: 1px solid #4a4a49;
    position: relative;
    padding-left: 1.5rem;
}

.audience-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.concept-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.cta-buttons .cta-button.primary {
    background: white;
    color: #ff6b35;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-buttons .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-buttons .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Page Contact Styles */
.contact-info {
    padding: 100px 0;
    background: #343332;
}

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

.contact-details h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #2a2a29;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

/* Contact Content Section */
.contact-content {
    padding: 100px 0;
    background: #343332;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

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

.contact-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #404040;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #e8e8e8;
    margin: 0;
}

.contact-card a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #ff6b35;
}

.contact-form {
    background: #2a2a29;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #404040;
}

.contact-form h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #343332;
    border: 1px solid #404040;
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.contact-form-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-form {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #4a4a49;
    border-radius: 8px;
    background: #343332;
    color: #e8e8e8;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

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

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.service-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.service-icon i {
    color: white !important;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.faq-section {
    padding: 100px 0;
    background: #343332;
}

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

.faq-item {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #e8e8e8;
    line-height: 1.6;
}

/* Contact FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: #343332;
}

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

.contact-faq .section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-faq .section-header p {
    font-size: 1.2rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #e8e8e8;
    line-height: 1.6;
}

/* Contact Services Section */
.contact-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.contact-services .section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-services .section-header p {
    font-size: 1.2rem;
    color: #e8e8e8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #343332;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.service-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    text-align: center;
    color: white;
}

.contact-cta .cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.contact-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.contact-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.contact-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.contact-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Styles pour les nouvelles pages - Concept Cards */
.concept-cards-section {
    padding: 100px 0;
    background: #343332;
}

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

.concept-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.concept-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.concept-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.concept-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

/* Styles pour la page Clients */
.client-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.stat-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #e8e8e8;
    font-size: 1rem;
}

.client-types {
    padding: 100px 0;
    background: #343332;
}

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

/* .client-type-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

.client-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
} */

/* .client-type-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.client-type-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.client-type-card p {
    color: #e8e8e8;
    margin-bottom: 1.5rem;
}

.client-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.client-type-card li {
    color: #e8e8e8;
    padding: 0.5rem 0;
    border-bottom: 1px solid #4a4a49;
    position: relative;
    padding-left: 1.5rem;
}

.client-type-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
} */

.testimonials-detailed {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.testimonial-card-detailed {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.testimonial-content .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e8e8e8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.author-info {
    text-align: left !important;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #ff6b35;
    font-size: 0.9rem;
}

.success-stories {
    padding: 100px 0;
    background: #343332;
}

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

.success-story-card {
    background: #2a2a29;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.story-image {
    height: 150px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-icon {
    font-size: 3rem;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.story-content p {
    color: #e8e8e8;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.story-content strong {
    color: #ff6b35;
}

.clients-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    text-align: center;
    color: white;
}

.clients-cta .cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.clients-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.clients-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.clients-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.clients-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.clients-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Styles pour la page Événements */
.event-types {
    padding: 100px 0;
    background: #343332;
}

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

    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
} */

    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
} */







.pricing-packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.package-card {
    background: #2a2a29;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.package-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(229, 90, 43, 0.1));
}

.package-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-price .price {
    color: #e8e8e8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.package-price .amount {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.package-content {
    padding: 1rem 2rem;
}

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

.package-content li {
    color: #e8e8e8;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.package-footer {
    padding: 1rem 2rem 2rem;
}

.package-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.event-process {
    padding: 100px 0;
    background: #343332;
}

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

.process-step-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

/* Style step-number harmonisé globalement */

.process-step-card .step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.process-step-card .step-content p {
    color: #e8e8e8;
    line-height: 1.6;
}

.whats-included {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.included-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.included-card .included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.included-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.included-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.events-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    text-align: center;
    color: white;
}

.events-cta .cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.events-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.events-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.events-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.events-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.events-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ===== STYLES POUR PAGE CONCEPT ===== */
.concept-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.concept-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.concept-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.concept-hero .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.concept-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.concept-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.concept-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.concept-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.concept-hero .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.concept-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.concept-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.concept-hero .stat-label {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.concept-hero .hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.floating-cards {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-card {
    background: linear-gradient(135deg, #2a2a29, #3a3a39);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transition: left 0.6s ease;
}

.floating-card:hover::before {
    left: 100%;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255,107,53,0.2);
    border-color: rgba(255,107,53,0.3);
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.floating-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.floating-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.innovation-section {
    padding: 100px 0;
    background: #343332;
}

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

.innovation-card {
    background: #2a2a29;
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.innovation-visual {
    margin-bottom: 2rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.before, .after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.before .icon, .after .icon {
    font-size: 3rem;
    padding: 1rem;
    border-radius: 50%;
    background: #4a4a49;
}

.after .icon {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.arrow {
    font-size: 2rem;
    color: #ff6b35;
    font-weight: bold;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    z-index: 1;
}

.timeline-item {
    background: #2a2a29;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    z-index: 2;
    position: relative;
}

.timeline-item .time {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-item .event {
    color: #e8e8e8;
    font-size: 0.9rem;
}

.coverage-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.map-icon {
    font-size: 4rem;
    color: #ff6b35;
}

.coverage-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.innovation-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.innovation-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.advantage-card {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

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

.advantage-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.advantage-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: transparent;
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ff6b35;
}

.process-interactive {
    padding: 100px 0;
    background: #343332;
}

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

.process-step {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Style step-number harmonisé globalement */

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.process-step p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
}

.target-audience {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.audience-card {
    background: #2a2a29;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.audience-visual {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(229, 90, 43, 0.1));
    position: relative;
}

.audience-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-stats {
    margin-top: 1rem;
}

.audience-stats .stat {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.audience-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.audience-card p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.audience-examples {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0 2rem 2rem;
    justify-content: center;
}

.example {
    background: transparent;
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ff6b35;
}

.concept-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.concept-cta::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.concept-cta .cta-content {
    position: relative;
    z-index: 1;
}

.concept-cta .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.concept-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.concept-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.concept-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin-bottom: 3rem;
}

.concept-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.concept-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.concept-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.concept-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: nowrap;
}

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

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.trust-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== STYLES POUR PAGE CLIENTS ===== */
.clients-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.clients-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.clients-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.clients-hero .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.clients-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.clients-hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.clients-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.clients-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.clients-hero .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.clients-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.clients-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.clients-hero .stat-label {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.clients-hero .hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.client-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.logo-item {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.logo-item:nth-child(1) { animation-delay: 0.2s; }
.logo-item:nth-child(2) { animation-delay: 0.4s; }
.logo-item:nth-child(3) { animation-delay: 0.6s; }
.logo-item:nth-child(4) { animation-delay: 0.8s; }

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

/* ===== STYLES POUR PAGE ÉVÉNEMENTS ===== */
.events-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.events-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.events-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.events-hero .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.events-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.events-hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.events-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.events-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.events-hero .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.events-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.events-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.events-hero .stat-label {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.events-hero .hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.event-types-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.event-preview-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.event-preview-card:nth-child(1) { animation-delay: 0.2s; }
.event-preview-card:nth-child(2) { animation-delay: 0.4s; }
.event-preview-card:nth-child(3) { animation-delay: 0.6s; }
.event-preview-card:nth-child(4) { animation-delay: 0.8s; }

.event-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

.preview-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   MENU MOBILE SIMPLIFIÉ
   ======================================== */

.navbar-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 1px solid rgba(255,107,53,0.3);
}

.navbar-nav-mobile li {
    list-style: none;
}

.navbar-nav-mobile a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.navbar-nav-mobile a:hover {
    color: #ff6b35;
    padding-left: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .concept-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .clients-hero-content,
    .events-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .concept-hero h1,
    .clients-hero h2,
    .events-hero h2 {
        font-size: 2.5rem;
    }
    
    .concept-hero .hero-stats,
    .clients-hero .hero-stats,
    .events-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .audience-item {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
    
    .audience-item h4 {
        font-size: 0.8rem;
    }
    
    .client-logos,
    .event-types-preview {
        grid-template-columns: 1fr;
    }
    
    .cta-trust {
        gap: 2rem;
    }
}

/* ===== STYLES POUR PAGE CONCEPT ===== */
.concept-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.concept-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.concept-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.concept-hero .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.concept-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.concept-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.concept-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.concept-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.concept-hero .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.concept-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.concept-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.concept-hero .stat-label {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.concept-hero .hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.floating-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.floating-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.floating-card:nth-child(1) { animation-delay: 0.2s; }
.floating-card:nth-child(2) { animation-delay: 0.4s; }
.floating-card:nth-child(3) { animation-delay: 0.6s; }

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

.card-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.floating-card span {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.innovation-section {
    padding: 100px 0;
    background: #343332;
}

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

.innovation-card {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
}

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

.innovation-visual {
    margin-bottom: 2rem;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.before, .after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.before .icon, .after .icon {
    font-size: 2rem;
}

.before span, .after span {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.arrow {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
}

.timeline {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.timeline-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    flex: 1;
}

.timeline-item .time {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-item .event {
    color: #e8e8e8;
    font-size: 0.8rem;
    font-weight: 500;
}

.coverage-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.map-icon {
    font-size: 3rem;
}

.coverage-text {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 600;
}

.innovation-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.innovation-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.advantage-card {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card.featured {
    border-color: #ff6b35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}

.advantage-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b35;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.advantage-card p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: transparent;
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ff6b35;
}

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

.concept-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    text-align: center;
    color: white;
}

.concept-cta .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.concept-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.concept-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    color: #ffffff !important;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.concept-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin-bottom: 3rem;
}

.concept-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.concept-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.concept-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.concept-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: nowrap;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.trust-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive pour la page concept */
@media (max-width: 768px) {
    .concept-hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .concept-hero h1 {
        font-size: 2.5rem;
    }
    
    .concept-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-cards {
        gap: 1rem;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
    
    .innovation-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .timeline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-trust {
        gap: 2rem;
    }
}

/* ===== STYLES POUR PAGE ENGAGEMENTS ÉCOLOGIQUES ===== */
.eco-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.eco-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.eco-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eco-hero .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.eco-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.eco-hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.eco-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.eco-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.eco-hero .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.eco-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.eco-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4CAF50;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.eco-hero .stat-label {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.eco-hero .hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.eco-symbols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.eco-symbol {
    background: #2a2a29;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    font-size: 4rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.eco-symbol:nth-child(1) { animation-delay: 0.2s; }
.eco-symbol:nth-child(2) { animation-delay: 0.4s; }
.eco-symbol:nth-child(3) { animation-delay: 0.6s; }
.eco-symbol:nth-child(4) { animation-delay: 0.8s; }

.eco-symbol:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: #4CAF50;
}

.eco-mission {
    padding: 100px 0;
    background: #343332;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.mission-visual {
    text-align: center;
}

.eco-icon-large {
    font-size: 8rem;
    color: #4CAF50;
    animation: pulse 2s infinite;
}

.eco-actions {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.action-card {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
}

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

.action-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.action-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.action-card p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.action-card li {
    color: #e8e8e8;
    padding: 0.5rem 0;
    border-bottom: 1px solid #4a4a49;
    position: relative;
    padding-left: 1.5rem;
}

.action-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.scenario-spotlight {
    padding: 100px 0;
    background: #343332;
}

.scenario-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.scenario-visual {
    text-align: center;
}

.scenario-image {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-icon {
    font-size: 6rem;
    color: white;
}

.scenario-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.scenario-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.scenario-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(76, 175, 80, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.scenario-cta {
    margin-top: 2rem;
}

.eco-impact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.impact-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    color: #4CAF50;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.impact-description {
    color: #e8e8e8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.eco-partnerships {
    padding: 100px 0;
    background: #343332;
}

.partnerships-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.partnership-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.partnership-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.partner-logo {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    text-align: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
}

.eco-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    text-align: center;
    color: white;
}

.eco-cta .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
}

.eco-cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

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

.eco-cta .cta-button.primary {
    background: white;
    color: #4CAF50;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.eco-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.eco-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    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 rgba(255, 255, 255, 0.3);
}

.eco-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive pour la page éco */
@media (max-width: 768px) {
    .eco-hero-content,
    .mission-content,
    .scenario-content,
    .partnerships-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .eco-hero h2 {
        font-size: 2.5rem;
    }
    
    .eco-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .eco-symbols {
        grid-template-columns: 1fr;
    }
    
    .actions-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-logos {
        grid-template-columns: 1fr;
    }
}

/* ===== STYLES POUR PAGE CONTACT ===== */
.contact-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.contact-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.contact-hero .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e8e8e8;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-hero .hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-hero .stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.contact-hero .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-hero .stat-label {
    color: #e8e8e8;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-hero .hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.contact-hero .hero-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.contact-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

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

/* Force image display */
.contact-hero .hero-image {
    display: block !important;
    flex: 1 !important;
    text-align: center !important;
    width: 100% !important;
}

.contact-hero .hero-image img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.contact-method:nth-child(1) { animation-delay: 0.2s; }
.contact-method:nth-child(2) { animation-delay: 0.4s; }
.contact-method:nth-child(3) { animation-delay: 0.6s; }

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #ff6b35;
}

.method-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.contact-method span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info {
    padding: 100px 0;
    background: #343332;
}

.contact-grid {
    margin-top: 4rem;
}

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

.contact-card {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

.contact-form-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.contact-form {
    background: #2a2a29;
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #4a4a49;
    border-radius: 10px;
    background: #343332;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e8e8e8;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.services-overview {
    padding: 100px 0;
    background: #343332;
}

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

.service-card {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
}

.service-icon i {
    color: white !important;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
}

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

.faq-item {
    background: #2a2a29;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #e8e8e8;
    line-height: 1.6;
}

/* Force flex layout for contact hero */
.contact-hero-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 4rem !important;
    grid-template-columns: none !important;
}

/* Responsive pour Contact */
@media (max-width: 768px) {
    .contact-hero-content {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .contact-hero h2 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 80% !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cards,
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* ========================================
   PAGES STATE OF THE ART - ÉVÉNEMENTS
   ======================================== */

.events-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.events-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="events-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23events-pattern)"/></svg>');
    opacity: 0.3;
}

.events-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.events-showcase {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    height: auto;
    justify-content: center;
    align-items: center;
}


.event-types-section {
    padding: 6rem 0;
    background: #343332;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

    background: #2a2a29;
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}




.event-type-header {
    margin-bottom: 2rem;
}

.event-type-header .event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.event-type-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.event-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b8b8b8;
    font-size: 0.95rem;
}

.feature-icon {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}


.event-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,53,0.3);
}

.process-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b, #ff6b35);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Style step-number harmonisé globalement */

.step-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: #b8b8b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.events-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    text-align: center;
}

.events-cta .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.events-cta .cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.events-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
}

.events-cta .cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

/* ========================================
   PAGES STATE OF THE ART - NOS CLIENTS
   ======================================== */

.clients-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.clients-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="clients-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23clients-pattern)"/></svg>');
    opacity: 0.3;
}

.clients-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}


.client-card {
    background: linear-gradient(135deg, #2a2a29, #3a3a39);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transition: left 0.6s ease;
}

.client-card:hover::before {
    left: 100%;
}

.client-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255,107,53,0.2);
    border-color: rgba(255,107,53,0.3);
}

.client-card .client-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.client-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.clients-section {
    padding: 6rem 0;
    background: #343332;
}

.client-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.client-category {
    background: #2a2a29;
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.client-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-category:hover::before {
    transform: scaleX(1);
}

.client-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.client-category h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.client-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.client-item {
    background: rgba(255,107,53,0.1);
    color: #ff6b35;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255,107,53,0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: rgba(255,107,53,0.2);
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

/* Scenarios page title styling */
.scenarios-hero h1,
.scenarios-title {
    font-family: 'Montserrat', 'Arial', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase !important;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none !important;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5)) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
    .scenarios-hero h1,
    .scenarios-title {
        font-family: 'Montserrat', 'Arial', sans-serif !important;
        font-weight: 800 !important;
        letter-spacing: -0.03em !important;
        text-transform: uppercase !important;
        background: none !important;
        -webkit-text-fill-color: white !important;
        color: white !important;
        text-shadow: 0 4px 8px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3) !important;
        filter: none !important;
    }
}

/* Testimonials section with blurred background for concept page */
.concept-page .testimonials-section {
    position: relative;
    overflow: hidden;
    color: white;
    background: none !important;
}

.concept-page .testimonials-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('/images/IMG_8468-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1);
    z-index: -2;
}

.concept-page .testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.concept-page .testimonials-section .container {
    position: relative;
    z-index: 1;
}

.concept-page .testimonials-section .section-header h2,
.concept-page .testimonials-section .section-header .section-subtitle {
    color: white;
}

.concept-page .testimonials-section .section-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
}

.concept-page .testimonials-section .section-badge span {
    color: white;
}

.concept-page .testimonials-section .testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.concept-page .testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.concept-page .testimonials-section .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.concept-page .testimonials-section .testimonial-author {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.concept-page .testimonials-section .testimonial-author h4,
.concept-page .testimonials-section .testimonial-author span {
    color: white;
}

.concept-page .testimonials-section .testimonial-content p {
    color: white;
}

.concept-page .testimonials-section .stars {
    color: #ffd700;
}

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

.testimonial-card {
    background: #2a2a29;
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #b8b8b8;
    line-height: 1.6;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info strong {
    color: #ffffff;
    font-size: 1.1rem;
    display: block;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

.testimonial-rating {
    font-size: 1.2rem;
}

.clients-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    text-align: center;
}

.clients-cta .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.clients-cta .cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.clients-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
}

.clients-cta .cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

/* ========================================
   PAGES STATE OF THE ART - CONTACT
   ======================================== */

.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.contact-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="contact-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    display: flex !important;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.contact-card {
    background: linear-gradient(135deg, #2a2a29, #3a3a39);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid #4a4a49;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255,107,53,0.2);
    border-color: rgba(255,107,53,0.3);
}

.contact-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-methods-section {
    padding: 6rem 0;
    background: #343332;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.contact-method-card {
    background: #2a2a29;
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

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

.contact-method-card .method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-method-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #e55a2b;
}

.method-hours {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.contact-form-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.contact-form {
    background: #2a2a29;
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid #4a4a49;
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem auto 0;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    text-align: center;
}

.contact-cta .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-cta .cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.contact-cta .cta-button.primary {
    background: white;
    color: #ff6b35;
}

.contact-cta .cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

/* ========================================
   HOMEPAGE - SECTION "QU'EST-CE QUE C'EST"
   ======================================== */

.how-it-works {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::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="concept-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23concept-pattern)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,107,53,0.1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,107,53,0.2);
    margin-bottom: 2rem;
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.95rem;
}

.section-header h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: #b8b8b8;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle.text-light {
    color: #e8e8e8;
}

.text-muted {
    color: #e8e8e8;
    font-size: 1.2rem;
    line-height: 1.6;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #2a2a29;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255,107,53,0.2);
}

.feature-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.feature-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image-container img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(255,107,53,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .image-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: rgba(255,107,53,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
    backdrop-filter: blur(10px);
}

.feature-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.feature-highlight {
    background: rgba(255,107,53,0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,107,53,0.2);
}

.highlight-text {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.95rem;
}

.concept-summary {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.summary-card {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    padding: 3rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(255,107,53,0.3);
    position: relative;
    overflow: hidden;
}

.summary-card::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="summary-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23summary-pattern)"/></svg>');
    opacity: 0.3;
}

.summary-icon {
    font-size: 3rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.summary-content {
    position: relative;
    z-index: 2;
}

.summary-content h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.summary-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FINAL CTA SECTION - STATE OF THE ART
   ======================================== */

.final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::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="cta-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.4;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,107,53,0.1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,107,53,0.2);
    margin-bottom: 2rem;
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.95rem;
}

.cta-text h2 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cta-text p {
    color: #b8b8b8;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.cta-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

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

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

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    box-shadow: 0 15px 35px rgba(255,107,53,0.3);
}

.cta-button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255,107,53,0.4);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-5px);
}

.button-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.button-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
    z-index: 2;
}

.button-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.button-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
}

.stat-item:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-5px);
}

.stat-number {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FOOTER STATE OF THE ART - NOUVEAU DESIGN
   ======================================== */

.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    color: #e8e8e8;
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-pattern {
    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="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

/* Brand Section */
.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
    background: transparent;
    border-radius: 8px;
    padding-right:0px;
    
    padding-top: 3px;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-escape {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-logo-production {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,107,53,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255,107,53,0.2);
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.9rem;
    width: fit-content;
}

.footer-description {
    color: #b8b8b8;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-3px);
}

.trust-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.trust-subtitle {
    color: #888;
    font-size: 0.85rem;
}

/* Navigation Section */
.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-nav-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.nav-icon {
    font-size: 1.5rem;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    text-decoration: none;
    color: #b8b8b8;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-nav-link:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    color: #ffffff;
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.link-text {
    flex: 1;
    font-weight: 500;
}

.link-arrow {
    color: #ff6b35;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-nav-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-contact-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.contact-icon {
    font-size: 1.5rem;
}

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

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
    transition: left 0.6s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,107,53,0.1);
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.contact-card-icon .icon {
    font-size: 1.5rem;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card-action {
    position: relative;
    z-index: 2;
}

.action-icon {
    font-size: 1.2rem;
    color: #ff6b35;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .action-icon {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 0 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-social-section {
    text-align: center;
}

.social-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: #b8b8b8;
    transition: all 0.3s ease;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-hover-effect {
    opacity: 1;
}

.social-link:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    color: #ff6b35;
    transform: translateY(-5px);
}

.social-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.social-text {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.footer-legal-section {
    text-align: center;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-copyright p {
    color: #888;
    margin: 0;
    font-size: 0.95rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ff6b35;
}

/* ========================================
   SCENARIOS PAGE - STATE OF THE ART
   ======================================== */

.scenarios-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.scenarios-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="scenarios-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23scenarios-pattern)"/></svg>');
    opacity: 0.4;
}

.scenarios-hero .hero-content {
    position: relative;
    z-index: 2;
}

.scenarios-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,107,53,0.1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,107,53,0.2);
    margin-bottom: 2rem;
    font-weight: 600;
    color: #ff6b35;
    font-size: 0.95rem;
}

.scenarios-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.scenarios-hero .hero-subtitle {
    color: #b8b8b8;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.scenarios-hero .hero-stats {
    display: flex;
    gap: 2rem;
}

.scenarios-hero .stat-item {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex: 1;
}

.scenarios-hero .stat-item:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-3px);
}

.scenarios-hero .stat-number {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
}

.scenarios-hero .stat-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scenarios-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.showcase-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 180px;
    flex: 1;
    max-width: 200px;
}

.showcase-card:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-5px);
}

.showcase-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.showcase-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Scenarios Section */
.scenarios-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.scenario-card {
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scenario-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,53,0.3);
    box-shadow: 0 25px 50px rgba(255,107,53,0.2);
}

.scenario-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.scenario-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0 !important;
}

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

.scenario-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: #ff6b35;
}

.scenario-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scenario-card:hover .scenario-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    text-align: center;
}

.play-icon {
    font-size: 3rem;
    background: rgba(255,107,53,0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.scenario-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.scenario-header {
    margin-bottom: 2rem;
}

.scenario-header h3 {
    margin: 0 0 1rem 0;
}

.scenario-header h3 a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.scenario-header h3 a:hover {
    color: #ff6b35;
}

.difficulty-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.difficulty-label {
    color: #b8b8b8;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Système de rating de difficulté */
.room__complexity {
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating__inner {
    display: flex;
    gap: 0.2rem;
}

.rating__inner::before,
.rating__inner::after {
    content: '🔒';
    font-size: 1rem;
    color: #888;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rating 1 - 1 cadenas rouge, 4 gris */
.rating--1 .rating__inner::before {
    content: '🔒';
    color: #ff4444;
}

.rating--1 .rating__inner::after {
    content: '🔒 🔒 🔒 🔒';
    color: #888;
}

/* Rating 2 - 2 cadenas rouges, 3 gris */
.rating--2 .rating__inner::before {
    content: '🔒 🔒';
    color: #ff4444;
}

.rating--2 .rating__inner::after {
    content: '🔒 🔒 🔒';
    color: #888;
}

/* Rating 3 - 3 cadenas rouges, 2 gris */
.rating--3 .rating__inner::before {
    content: '🔒 🔒 🔒';
    color: #ff4444;
}

.rating--3 .rating__inner::after {
    content: '🔒 🔒';
    color: #888;
}

/* Rating 4 - 4 cadenas rouges, 1 gris */
.rating--4 .rating__inner::before {
    content: '🔒 🔒 🔒 🔒';
    color: #ff4444;
}

.rating--4 .rating__inner::after {
    content: '🔒';
    color: #888;
}

/* Rating 5 - 5 cadenas rouges */
.rating--5 .rating__inner::before {
    content: '🔒 🔒 🔒 🔒 🔒';
    color: #ff4444;
}

.rating--5 .rating__inner::after {
    content: '';
}

.scenario-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.3);
}

.meta-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.meta-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.meta-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.scenario-description {
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.scenario-footer {
    margin-top: auto;
}

.scenario-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    justify-content: center;
}

.scenario-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255,107,53,0.4);
}

.button-icon {
    font-size: 1.2rem;
}

/* Scenarios CTA */
.scenarios-cta {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    margin: 0 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.cta-content h3 {
    color: #ffffff;
}

/* FORCE ALL SCENARIO ELEMENTS TO HAVE NO BORDER RADIUS */
.scenario, .scenario-card, .scenario-image, .scenario-image img, .scenario-hero-image, .scenario-hero-image img, .scenario-image-container, .scenario-image-container img {
    border-radius: 0 !important;
}

/* ===== NOUVELLES CARTES DE SCÉNARIOS ===== */

/* Badge "Nouveau" */
.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.new-text {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

/* Indicateur de difficulté avec cadenas */
.difficulty-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.difficulty-label {
    font-size: 0.9rem;
    color: #b8b8b8;
    font-weight: 500;
}

.difficulty-cadenas {
    display: flex;
    gap: 4px;
}

.cadena {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cadena.active {
    color: #ff6b35;
    filter: drop-shadow(0 0 3px rgba(255, 107, 53, 0.5));
}

.cadena.inactive {
    color: #666;
    opacity: 0.4;
}

/* Métadonnées simplifiées */
.scenario-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: nowrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.meta-icon {
    font-size: 1.1rem;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

/* Prix du scénario */
.scenario-price {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 12px 16px;
    border-radius: 12px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.price-label {
    font-size: 0.85rem;
    color: #b8b8b8;
    font-weight: 500;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.price-conditions {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Description améliorée */
.scenario-description {
    color: #d0d0d0;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Bouton amélioré */
.scenario-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.scenario-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #e8841a);
}

.button-icon {
    font-size: 1.1rem;
}

/* Header du scénario */
.scenario-header {
    margin-bottom: 15px;
}

.scenario-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.scenario-header h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.scenario-header h3 a:hover {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* Amélioration du contenu */
.scenario-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scenario-footer {
    margin-top: auto;
    padding-top: 20px;
}

/* Animation pulse pour le badge nouveau */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }
}

/* Responsive pour les nouvelles cartes */
@media (max-width: 768px) {
    .scenario-meta {
        gap: 10px;
    }
    
    .meta-item {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .scenario-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .difficulty-cadenas {
        gap: 2px;
    }
    
    .cadena {
        font-size: 1rem;
    }
}

.cta-content p {
    color: #ffffff !important;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255,107,53,0.4);
}

/* ========================================
   RESPONSIVE POUR NOUVELLES PAGES
   ======================================== */

@media (max-width: 768px) {
    /* Homepage - Section "Qu'est-ce que c'est" */
    .how-it-works {
        padding: 6rem 0;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-visual {
        height: 200px;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    /* Final CTA Section */
    .final-cta {
        padding: 6rem 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .cta-buttons {
        flex-wrap: nowrap;
        gap: 1rem;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1.5rem 2rem;
        min-height: 70px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-social {
        grid-column: 1;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Événements */
    .events-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .events-showcase {
        height: auto;
        gap: 1rem;
        flex-direction: column;
    }
    
    .showcase-card {
        width: 100%;
        max-width: 250px;
    }
    
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .events-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Clients */
    .clients-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    
    .client-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .clients-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Contact */
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-showcase {
        height: auto;
        gap: 1rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Homepage - Section "Qu'est-ce que c'est" */
    .how-it-works {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-visual {
        height: 180px;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .summary-card {
        padding: 2rem;
    }
    
    .summary-content h4 {
        font-size: 1.5rem;
    }
    
    /* Final CTA Section */
    .final-cta {
        padding: 4rem 0;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1.2rem 1.5rem;
        min-height: 60px;
        gap: 1rem;
    }
    
    .button-icon {
        font-size: 2rem;
    }
    
    .button-title {
        font-size: 1.1rem;
    }
    
    .button-subtitle {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-trust {
        justify-content: center;
    }
    
    /* Événements */
    .events-hero {
        padding: 6rem 0 4rem;
    }
    
    .events-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .event-types-section,
    .process-section {
        padding: 4rem 0;
    }
    
    .contact-method-card {
        padding: 2rem 1.5rem;
    }
    
    .events-cta {
        padding: 4rem 0;
    }
    
    .events-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Clients */
    .clients-hero {
        padding: 6rem 0 4rem;
    }
    
    .clients-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .clients-section,
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .client-category {
        padding: 2rem 1.5rem;
    }
    
    .clients-cta {
        padding: 4rem 0;
    }
    
    .clients-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Contact */
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .contact-methods-section,
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-cta {
        padding: 4rem 0;
    }
    
    .contact-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Contact Content responsive */
    .contact-content {
        padding: 4rem 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    /* Contact FAQ & Services responsive */
    .contact-faq,
    .contact-services {
        padding: 4rem 0;
    }
    
    .contact-faq .section-header h2,
    .contact-services .section-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

/* ========================================
   FOOTER COMPACT STYLES
   ======================================== */

.footer-compact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-escape {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.footer-logo-production {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav-group h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-group li {
    margin-bottom: 0.5rem;
}

.footer-nav-group a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-group a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-contact h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: #ff6b35;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #888888;
    font-size: 0.85rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ff6b35;
}

/* Footer Compact Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

/* CLIENTS PAGE - STATE OF THE ART */
.client-types-section {
    padding: 6rem 0;
    background: none !important;
    position: relative;
    overflow: hidden;
    color: white;
}

.client-types-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('/images/IMG_8468-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1);
    z-index: -2;
}

.client-types-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.client-types-section .container {
    position: relative;
    z-index: 1;
}

.client-types-section .section-header h2,
.client-types-section .section-header .section-subtitle {
    color: white;
}

.client-types-section .section-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
}

.client-types-section .section-badge span {
    color: white;
}

.client-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.client-type-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.client-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.client-type-card:hover::before {
    transform: scaleX(1);
}

.client-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.client-type-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

.client-type-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.client-card-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 20px 0 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.client-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.client-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.client-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.client-card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.client-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: auto;
    margin-top: auto;
}

.client-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 1rem;
}

.client-card-footer {
    text-align: center;
    margin-top: auto;
}

.client-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    justify-content: center;
    width: 100%;
}

.client-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #d44a1a);
}

/* Badge "Populaire" commun */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
    z-index: 5;
}

.testimonials-section {
    padding: 6rem 0;
    background: none !important;
    position: relative;
    overflow: hidden;
    color: white;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('/images/IMG_8468-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1);
    z-index: -2;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

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

.testimonials-section .section-header h2,
.testimonials-section .section-header .section-subtitle {
    color: white;
}

.testimonials-section .section-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
}

.testimonials-section .section-badge span {
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    color: white;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-content p {
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: auto;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.author-info span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.clients-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clients-cta::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.clients-cta .cta-content {
    position: relative;
    z-index: 1;
}

.clients-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.clients-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.clients-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clients-cta .cta-button.primary {
    background: #ffffff;
    color: #ff6b35;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.clients-cta .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.clients-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.clients-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.clients-cta .button-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .client-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .client-type-card {
        padding: 2rem 1.5rem;
    }

    .client-type-card.featured {
        transform: none;
    }

    .client-type-card.featured:hover {
        transform: translateY(-10px);
    }

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

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

    .clients-cta .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* Ensure high-contrast subtitle in "Comment organiser" section */
.how-to-organize .section-header p,
.how-to-organize .section-header .text-muted {
    color: #f2f2f2 !important;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   HOW TO ORGANIZE - STATE OF THE ART
   ======================================== */

.how-to-organize {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.how-to-organize::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.organization-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

@media (max-width: 1024px) {
    .organization-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.process-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Style step-number harmonisé globalement */

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

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.event-types-showcase {
    margin: 5rem 0;
    text-align: center;
}

.showcase-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

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

    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}



.event-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 16px 0 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.event-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}



.event-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

.event-stats .stat {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.organization-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.organization-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Responsive: ajuster les boutons selon la taille d'écran */
@media (max-width: 1024px) and (min-width: 769px) {
    .cta-buttons {
        flex-wrap: nowrap;
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .organization-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.organization-cta h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.organization-cta p {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 1;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.organization-cta::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff !important;
    margin-bottom: 2.5rem;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.button-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .organization-process {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
        transform: none;
    }
    
    .cta-buttons {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== MODERN SCENARIO CARDS - STATE OF THE ART ===== */

/* Enhanced Card Hover Effects */
.scenario-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.scenario-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 16px 40px rgba(0,0,0,0.1) !important;
}

.scenario-card:hover .scenario-image-container img {
    transform: scale(1.1);
}

.scenario-card:hover .discover-button {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4) !important;
}

.scenario-card:hover .discover-button::before {
    left: 100%;
}

/* Pulse Animation for New Badge */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
}

/* Shimmer Effect for CTA Button */
.discover-button::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;
}

/* Enhanced Info Items */
.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    border-color: rgba(255,107,53,0.3) !important;
}

/* Difficulty Cadenas Animation */
.cadena {
    transition: all 0.3s ease;
}

.cadena.active:hover {
    transform: scale(1.2);
    filter: hue-rotate(45deg) saturate(2) brightness(1.2);
}

/* Price Section Enhancement */
.scenario-price {
    transition: all 0.3s ease;
}

.scenario-price:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

/* Responsive Design for Modern Cards */
@media (max-width: 768px) {
    .scenarios-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding: 0 16px;
    }
    
    .scenario-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .scenario-content {
        padding: 24px !important;
    }
    
    .scenario-info {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .info-item {
        padding: 12px !important;
    }
}

@media (max-width: 480px) {
    .scenarios-section {
        padding: 40px 0 !important;
    }
    
    .scenario-image-container {
        height: 200px !important;
    }
    
    .scenario-title {
        font-size: 1.3rem !important;
    }
    
    .discover-button {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Loading Animation for Images */
.scenario-image-container img {
    transition: opacity 0.3s ease;
}

.scenario-image-container img[loading="lazy"] {
    opacity: 0;
}

.scenario-image-container img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessibility Enhancements */
.scenario-card:focus-within {
    outline: 3px solid #ff6b35;
    outline-offset: 2px;
}

.discover-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Dark Mode Support - DISABLED to keep white cards */
@media (prefers-color-scheme: dark) {
    .scenario-card {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .scenario-title {
        color: #ffffff !important;
    }
    
    .scenario-description {
        color: #b0b0b0 !important;
    }
}

/* ===== SCENARIO TITLE SPACING FIX ===== */
.scenario-hero .hero-content {
    padding: 0 40px !important;
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}

.scenario-hero h1 {
    margin: 0 0 20px 0 !important;
}

.scenario-hero .hero-content p {
    margin: 0 0 20px 0 !important;
    text-align: center !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {
    .scenario-hero .hero-content {
        padding: 0 20px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
    
    .scenario-hero h1 {
        font-size: 2.2rem !important;
        padding: 0 10px !important;
        margin-bottom: 15px !important;
    }
    
    .scenario-hero .hero-content p {
        margin-bottom: 15px !important;
        text-align: center !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .scenario-hero .hero-content {
        padding: 0 15px !important;
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }
    
    .scenario-hero h1 {
        font-size: 1.8rem !important;
        padding: 0 5px !important;
        margin-bottom: 12px !important;
    }
    
    .scenario-hero .hero-content p {
        margin-bottom: 12px !important;
        text-align: center !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== LIGHTBOX MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    #lightbox {
        padding: 10px !important;
    }
    
    #lightbox-image {
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    #lightbox button {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }
    
    #lightbox button[onclick*="previousImage"],
    #lightbox button[onclick*="nextImage"] {
        width: 50px !important;
        height: 50px !important;
        left: 10px !important;
        right: 10px !important;
    }
    
    #thumbnail-nav {
        bottom: 60px !important;
        max-width: 90% !important;
        gap: 6px !important;
    }
    
    #thumbnail-nav > div {
        width: 50px !important;
        height: 50px !important;
    }
    
    #image-counter {
        bottom: 20px !important;
        font-size: 0.9rem !important;
        padding: 8px 16px !important;
    }
}

@media (max-width: 480px) {
    #lightbox {
        padding: 5px !important;
    }
    
    #lightbox button {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
    
    #lightbox button[onclick*="previousImage"],
    #lightbox button[onclick*="nextImage"] {
        width: 45px !important;
        height: 45px !important;
        left: 5px !important;
        right: 5px !important;
    }
    
    #thumbnail-nav > div {
        width: 45px !important;
        height: 45px !important;
    }
}

/* ===== MOBILE MENU - FIXED SYSTEM ===== */

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    outline: none;
    z-index: 1001;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-left: auto;
    min-width: 40px;
    min-height: 40px;
    justify-content: center;
    align-items: center;
}

.navbar-toggle:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.navbar-toggle span {
    width: 16px;
    height: 2px;
    background: #ff6b35;
    margin: 1.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: relative;
    z-index: 1;
}

.navbar-toggle.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #fff;
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #fff;
}

/* Améliorer l'apparence de la croix */
.navbar-toggle.active {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.navbar-toggle.active span {
    background: #fff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: 16px;
    height: 2px;
}

/* S'assurer que la croix est parfaitement centrée */
.navbar-toggle.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Animation plus fluide pour la croix */
.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #fff !important;
    position: absolute;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #fff !important;
    position: absolute;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
}

.mobile-menu-container.active {
    right: 0;
}


/* Header du menu mobile supprimé - utilise le header principal responsive */

.mobile-menu-nav {
    padding: 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 60px;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

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

.menu-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.menu-link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 18px 20px;
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: #ff6b35;
}

.menu-icon {
    font-size: 1.3rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.menu-text {
    flex: 1;
    font-weight: 500;
}

.menu-arrow {
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    color: #ff6b35;
}

.menu-link:hover .menu-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.menu-link:hover .menu-icon {
    transform: scale(1.1);
}

.mobile-menu-footer {
    padding: 10px 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: auto;
    min-height: auto;
    max-height: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    text-align: center;
}

.footer-text {
    color: #888;
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.social-link {
    color: #ff6b35;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: inline;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .mobile-menu-container {
        display: block;
    }
    
    /* S'assurer que le header principal reste visible */
    .header {
        z-index: 1002;
    }
    
    .navbar-brand {
        z-index: 1003;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo-img {
        height: 60px;
        width: auto;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        margin-left: 10px;
    }
    
    .logo-escape {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
    }
    
    .logo-production {
        font-size: 1rem;
        font-weight: 600;
        color: #ff6b35;
        line-height: 1;
    }
    
    /* Assurer que le footer reste en place sur mobile */
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .footer {
        position: relative;
        z-index: 1;
        margin-top: auto;
        flex-shrink: 0;
    }
    
    /* S'assurer que le menu mobile ne chevauche pas le footer */
    .mobile-menu-container {
        height: calc(100vh - 80px);
    }
    
    .mobile-menu-nav {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .mobile-menu-container {
        width: 100%;
    }
}

/* Styles pour la section concept-innovation */
.concept-innovation {
    padding: 80px 0;
    background: #343332;
    margin-top: 60px;
}

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

.concept-innovation .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.concept-innovation .section-badge .badge-icon {
    font-size: 1.1rem;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Twemoji', 'EmojiOne Color', sans-serif;
}

.concept-innovation h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.concept-innovation .section-subtitle {
    font-size: 1.2rem;
    color: #e8e8e8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.concept-innovation .innovation-card {
    background: #2a2a29;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.concept-innovation .innovation-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.concept-innovation .innovation-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.concept-innovation .innovation-card p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.concept-innovation .innovation-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.concept-innovation .feature-tag {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 500;
}

/* Responsive pour concept-innovation */
@media (max-width: 768px) {
    .concept-innovation {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .concept-innovation h2 {
        font-size: 2.2rem;
    }
    
    .concept-innovation .innovation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concept-innovation .innovation-card {
        padding: 2rem 1.5rem;
    }
}

/* Styles pour la section concept-advantages */
.concept-advantages {
    padding: 80px 0;
    background: #2a2a29;
    margin-top: 60px;
}

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

.concept-advantages .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.concept-advantages .section-badge .badge-icon {
    font-size: 1.1rem;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Twemoji', 'EmojiOne Color', sans-serif;
}

.concept-advantages h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.concept-advantages .section-subtitle {
    font-size: 1.2rem;
    color: #e8e8e8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.concept-advantages .advantage-card {
    background: #343332;
    padding: 2rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.concept-advantages .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.concept-advantages .advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.concept-advantages .advantage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.concept-advantages .advantage-card p {
    color: #e8e8e8;
    line-height: 1.6;
}

/* Responsive pour concept-advantages */
@media (max-width: 1024px) {
    .concept-advantages .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .concept-advantages {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .concept-advantages h2 {
        font-size: 2.2rem;
    }
    
    .concept-advantages .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concept-advantages .advantage-card {
        padding: 2rem 1.5rem;
    }
}

/* Styles pour la section concept-process */
.concept-process {
    padding: 80px 0;
    background: #343332;
    margin-top: 60px;
}

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

.concept-process .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 2rem;
}

.concept-process .section-badge .badge-icon {
    font-size: 1.1rem;
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Twemoji', 'EmojiOne Color', sans-serif;
}

.concept-process h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.concept-process .section-subtitle {
    font-size: 1.2rem;
    color: #e8e8e8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.concept-process .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.concept-process .process-step {
    background: #2a2a29;
    padding: 2rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #4a4a49;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.concept-process .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Style step-number harmonisé globalement */

.concept-process .step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
    margin-top: 1rem;
}

.concept-process .step-content p {
    color: #e8e8e8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive pour concept-process */
@media (max-width: 1024px) {
    .concept-process .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .concept-process {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .concept-process h2 {
        font-size: 2.2rem;
    }
    
    .concept-process .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concept-process .process-step {
        padding: 2rem 1.5rem;
    }
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.events-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.events-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.event-types-section {
    padding: 6rem 0;
    background: none !important;
    position: relative;
    overflow: hidden;
    color: white;
}

.event-types-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url('/images/IMG_8468-scaled.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(12px);
    transform: scale(1.1);
    z-index: -2;
}

.event-types-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.event-types-section .container {
    position: relative;
    z-index: 1;
}

.event-types-section .section-header h2,
.event-types-section .section-header .section-subtitle {
    color: white;
}

.event-types-section .section-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: white;
}

.event-types-section .section-badge span {
    color: white;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}







.event-card-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 20px 0 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.event-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.event-card-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a29;
    margin: 0;
}

.event-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.event-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: auto;
    margin-top: auto;
}

.event-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.event-card-footer {
    text-align: center;
    margin-top: auto;
}

.event-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.event-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #d44a1a);
    color: white;
    text-decoration: none;
}

/* Additional Events Styles */
.special-features-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.special-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.special-feature-card:hover::before {
    transform: scaleX(1);
}

.special-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.special-feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.special-feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a2a29;
    margin: 0 0 1rem 0;
}

.special-feature-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.packages-section {
    padding: 6rem 0;
    background: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.package-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.package-card.featured {
    border: 2px solid #ff6b35;
    transform: scale(1.05);
}

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

.package-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 20px 0 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.package-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2a29;
    margin: 0 0 1rem 0;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    font-family: 'Space Grotesk', sans-serif;
}

.price-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.package-content {
    flex: 1;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #6c757d;
    position: relative;
    padding-left: 2rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.package-footer {
    text-align: center;
    margin-top: auto;
}

.package-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    width: 100%;
    justify-content: center;
}

.package-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #e55a2b, #d44a1a);
    color: white;
    text-decoration: none;
}

.event-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2a2a29 0%, #343332 100%);
    position: relative;
    overflow: hidden;
}

.event-process-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b35" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.event-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.event-process-steps .process-step {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.event-process-steps .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255, 107, 53, 0.2);
}

/* Style step-number harmonisé globalement */

.event-process-steps .step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.event-process-steps .step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.event-process-steps .step-content p {
    color: #e8e8e8;
    line-height: 1.6;
    margin: 0;
}

.included-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.included-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.included-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.included-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2a2a29;
    margin: 0 0 1rem 0;
}

.included-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.testimonials-section {
    padding: 6rem 0;
    background: #ffffff;
}

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

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    color: #6c757d;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
    margin-top: auto;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a2a29;
    margin: 0 0 0.25rem 0;
}

.author-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

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

    .special-feature-card {
        padding: 2rem 1.5rem;
    }

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

    .package-card {
        padding: 2rem 1.5rem;
    }

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

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .event-process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-process-steps .process-step {
        padding: 2rem 1.5rem;
    }

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

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

/* Styles pour l'image de contact - affichage uniquement sur desktop */
@media (min-width: 769px) {
    .contact-hero .hero-image {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-image {
        display: none !important;
    }
}

/* ===== EVENT TYPES SECTION - STATE OF THE ART UX ===== */
.event-types-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.event-types-section::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="event-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23event-pattern)"/></svg>');
    opacity: 0.3;
}

.event-types-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.header-badge::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.6s ease;
}

.header-badge:hover::before {
    left: 100%;
}

.badge-icon {
    font-size: 1.2rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 80px 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.event-type-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    margin: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-type-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.event-type-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.event-type-card.featured:hover {
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.event-type-card:hover .card-glow {
    opacity: 1;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.popular-badge i {
    font-size: 1rem;
}

.card-header {
    padding: 40px 40px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.event-type-card:nth-child(1) .icon-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.event-type-card:nth-child(2) .icon-bg {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.event-type-card:nth-child(3) .icon-bg {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.card-icon-wrapper i {
    position: relative;
    z-index: 2;
}

.card-title-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 0 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 8px;
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a2e;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: auto;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-footer {
    padding: 0 40px 40px;
    margin-top: auto;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::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.6s ease;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.cta-button.tertiary {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}

.cta-button.tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

.button-icon {
    font-size: 1.1rem;
}

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

.button-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.button-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
}

.section-cta {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-cta::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="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .cta-button.phone {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.cta-buttons .cta-button.phone:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.cta-buttons .cta-button.email {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.cta-buttons .cta-button.email:hover {
    background: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .event-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .event-type-card {
        margin: 5px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== ICÔNE ROCKET GRISE ===== */
.final-cta .cta-button.primary .button-icon i.fa-rocket {
    color: #666 !important;
}

/* ===== HOME EVENTS SECTION - STATE OF THE ART ===== */
.home-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.home-event-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.home-event-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.home-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.event-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.home-event-card:nth-child(1) .event-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.home-event-card:nth-child(2) .event-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.home-event-card:nth-child(3) .event-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.home-event-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home-event-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.event-tag {
    background: transparent;
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ff6b35;
    transition: all 0.3s ease;
}

.event-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.event-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: auto;
}

.event-stat-box {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 80px;
}

.event-stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.event-stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.event-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive pour home events */
@media (max-width: 1200px) {
    .home-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .home-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .home-event-card {
        padding: 25px;
    }
    
    .event-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-stat-box {
        min-width: auto;
    }
}

/* ===== MODERN EVENTS SECTION - STATE OF THE ART ===== */
.modern-events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.modern-events-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

.modern-events-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.modern-events-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.modern-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.modern-event-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.modern-event-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.modern-event-card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.modern-event-card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.modern-event-card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.modern-event-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.modern-event-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.tag {
    background: transparent;
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ff6b35;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.card-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: auto;
}

.stat-box {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive pour modern events */
@media (max-width: 1200px) {
    .modern-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .modern-events-section {
        padding: 60px 0;
    }
    
    .modern-events-header h2 {
        font-size: 2.2rem;
    }
    
    .modern-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .modern-event-card {
        padding: 25px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-box {
        min-width: auto;
    }
}

/* ===== CLIENTS MODERN SECTION - STATE OF THE ART ===== */
.clients-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.clients-modern-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.clients-modern-card.featured {
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.clients-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.clients-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 20px;
}

.clients-modern-card:nth-child(1) .clients-card-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.clients-modern-card:nth-child(2) .clients-card-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.clients-modern-card:nth-child(3) .clients-card-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.clients-modern-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.clients-modern-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.clients-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.clients-tag {
    background: transparent;
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #ff6b35;
    transition: all 0.3s ease;
}

.clients-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.clients-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: auto;
}

.clients-stat-box {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 80px;
}

.clients-stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 4px;
}

.clients-stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clients-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.clients-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive pour clients modern */
@media (max-width: 1200px) {
    .clients-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .clients-modern-card {
        padding: 25px;
    }
    
    .clients-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .clients-stat-box {
        min-width: auto;
    }
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 25px;
}

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

.contact-info-card.phone {
    border-left: 4px solid #ff6b35;
}

.contact-info-card.email {
    border-left: 4px solid #667eea;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.contact-info-card.phone .contact-info-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.contact-info-card.email .contact-info-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-info-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: #e55a2b;
    transform: translateX(5px);
}

.contact-info-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #999;
}

.contact-info-meta i {
    font-size: 0.8rem;
}

/* Responsive pour contact info */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}


