/* 
 * IMPACT Entreprises - Main Stylesheet
 * Palette de couleurs: noir (#000), bleu électrique (#0088ff), blanc (#fff)
 */

/* Reset & Base Styles */
:root {
    --primary-color: #27a87f; /* Vert-bleu de l'entreprise */
    --primary-dark: #1b8a66; /* Version plus foncée du vert-bleu */
    --primary-light: #4dc19a; /* Version plus claire du vert-bleu */
    
    --accent-color: #eb7b02; /* Orange de l'entreprise */
    --accent-dark: #c66800; /* Version plus foncée de l'orange */
    --accent-light: #ff9226; /* Version plus claire de l'orange */
    
    --dark-color: #000000; /* Noir conservé */
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --white-color: #ffffff;
    --text-color: #333333;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
    --border-radius: 8px; /* Nouvelle variable pour les coins arrondis */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f8f8;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

h2::after {
    content: '';
    display: none;
}

h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(235, 123, 2, 0.2);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.3);
}

.btn-dark {
    background-color: var(--dark-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background-color: var(--dark-gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

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

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

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

/* Header redesign - Style moderne et high-tech */
header {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(39, 168, 127, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

header.header-scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 0;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(39, 168, 127, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    transition: all 0.3s;
    height: 50px;
}

header.header-scrolled .header-content {
    padding: 3px 0;
    height: 45px;
}

header.header-scrolled .logo img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(39, 168, 127, 0.3));
}

.logo {
    margin: 0;
    padding: 0;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.5s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

header.header-scrolled .logo img {
    max-height: 40px;
}

@media (max-width: 991px) {
    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 767px) {
    .logo img {
        max-height: 40px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 13px;
    padding: 6px 0;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(39, 168, 127, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    bottom: 0;
    left: 0;
    transition: 0.4s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

.get-started-btn {
    margin-left: 20px;
    background: var(--accent-color);
    color: #fff !important;
    border-radius: var(--border-radius);
    padding: 7px 18px !important;
    white-space: nowrap;
    transition: 0.4s !important;
    font-size: 12px !important;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(235, 123, 2, 0.25);
    position: relative;
    overflow: hidden;
    border: none;
}

.get-started-btn::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: 0.5s;
}

.get-started-btn:hover {
    background: var(--accent-dark);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 123, 2, 0.35);
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Menu animations */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 5;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--primary-color);
}

/* Hero Section - Design Futuriste et Innovant */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white-color);
    overflow: hidden;
    margin-top: -50px;
    position: relative;
}

/* Fond avec effet de circuit imprimé */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.05) 0px, rgba(39, 168, 127, 0.05) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.05) 0px, rgba(39, 168, 127, 0.05) 1px, transparent 1px, transparent 20px),
        linear-gradient(90deg, rgba(235, 123, 2, 0.02), rgba(39, 168, 127, 0.02));
    opacity: 0.7;
    z-index: 1;
}

/* Éléments flottants en arrière-plan */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Animation de particules numériques */
.hero-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(1);
    animation: particleAppear 10s linear infinite;
    box-shadow: 0 0 8px rgba(39, 168, 127, 0.6);
    z-index: 2;
}

@keyframes particleAppear {
    0% {
        opacity: 0.3;
        transform: scale(0.8) translateY(0);
    }
    10% {
        opacity: 0.5;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
        transform: scale(1) translateY(-100px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-150px);
    }
}

/* Lignes de code qui défilent */
.code-line {
    position: absolute;
    height: 1px;
    width: 15%;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
    animation: codeLine 6s linear infinite;
    opacity: 0.5;
    z-index: 2;
    box-shadow: 0 0 5px rgba(39, 168, 127, 0.3);
}

@keyframes codeLine {
    0% {
        opacity: 0.5;
        width: 10%;
    }
    50% {
        opacity: 0.7;
        width: 70%;
    }
    90% {
        opacity: 0.3;
        width: 100%;
    }
    100% {
        opacity: 0;
        width: 100%;
    }
}

/* Élément pour l'image principale avec effet avancé */
.hero-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 2;
    background-image: url('../images/accueil.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    animation: slideInRight 1.2s ease-out forwards;
    box-shadow: inset -50px 0 70px rgba(13, 13, 13, 0.3);
    filter: saturate(1.1) contrast(1.05);
}

/* Effet de ligne de scan sur l'image amélioré */
.hero-main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(39, 168, 127, 0) 0%, 
        rgba(39, 168, 127, 0.2) 50%, 
        rgba(39, 168, 127, 0) 100%);
    opacity: 0.8;
    transform: translateY(-100%);
    animation: scanLine 5s ease-out infinite;
    z-index: 3;
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(300%);
    }
}

/* Overlay avec gradient optimisé */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(10, 10, 10, 0.95) 30%, 
                rgba(13, 13, 13, 0.8) 50%, 
                rgba(15, 15, 15, 0.6) 70%, 
                rgba(15, 15, 15, 0.4) 85%);
    z-index: 2;
}

/* Éléments décoratifs technologiques améliorés */
.hero-decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(39, 168, 127, 0.15);
}

.hero-decoration-1 {
    top: 12%;
    left: 8%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    border-radius: 12px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite alternate;
    backdrop-filter: blur(5px);
    background: rgba(39, 168, 127, 0.1);
}

.hero-decoration-2 {
    bottom: 18%;
    left: 6%;
    width: 90px;
    height: 90px;
    background: conic-gradient(from 0deg, rgba(235, 123, 2, 0.1), rgba(39, 168, 127, 0.1), rgba(235, 123, 2, 0.1));
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite, rotate 30s linear infinite;
    box-shadow: 0 0 20px rgba(235, 123, 2, 0.2);
}

.hero-decoration-3 {
    top: 23%;
    right: 18%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(235, 123, 2, 0.15);
    box-shadow: 0 0 20px rgba(235, 123, 2, 0.3);
    animation: float 9s ease-in-out infinite alternate-reverse, pulse 5s ease-in-out infinite;
}

.hero-decoration-4 {
    bottom: 25%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        rgba(39, 168, 127, 0.05) 0px,
        rgba(39, 168, 127, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    border: 1px solid rgba(39, 168, 127, 0.2);
    transform: rotate(30deg);
    animation: rotate 30s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(-15px) rotate(45deg);
    }
}

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

/* Titre avec effet glitch visible */
.hero h1::before, .hero h1::after {
    display: block !important;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.2), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.4);
}

.hero h1:hover::before, .hero h1:hover::after {
    display: block;
}

@keyframes glitch-anim {
    0% {
        clip-path: inset(80% 0 0 0);
    }
    5% {
        clip-path: inset(10% 0 70% 0);
    }
    10% {
        clip-path: inset(50% 0 30% 0);
    }
    15% {
        clip-path: inset(20% 0 60% 0);
    }
    20% {
        clip-path: inset(30% 0 50% 0);
    }
    25% {
        clip-path: inset(80% 0 10% 0);
    }
    30% {
        clip-path: inset(10% 0 80% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(40% 0 40% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(20% 0 60% 0);
    }
    5% {
        clip-path: inset(60% 0 10% 0);
    }
    10% {
        clip-path: inset(30% 0 50% 0);
    }
    15% {
        clip-path: inset(70% 0 20% 0);
    }
    20% {
        clip-path: inset(40% 0 30% 0);
    }
    25% {
        clip-path: inset(10% 0 70% 0);
    }
    30% {
        clip-path: inset(50% 0 40% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(60% 0 30% 0);
    }
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.1), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
}

@keyframes lineDrawIn {
    to {
        width: 100%;
    }
}

/* Paragraphe avec amélioration typographique */
.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 85%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: fadeInSlideUp 1.2s 0.3s ease-out both;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
}

.hero p::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    left: 0;
    bottom: -10px;
}

/* Boutons avec effets interactifs avancés */
.hero-btns {
    animation: fadeInSlideUp 1.2s 0.6s ease-out both;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    position: relative;
}

.hero-btns::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-btns .btn {
    margin: 0;
    padding: 10px 25px;
    background-color: var(--primary-color);
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 12px;
}

.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.hero-btns .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.35);
}

.hero-btns .btn:hover::before {
    transform: translateX(0);
}

/* Effet de lueur au survol */
.hero-btns .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: inherit;
    z-index: -1;
}

.hero-btns .btn:active::after {
    transform: scale(3);
    opacity: 0;
    transition: 0s;
}

.hero-btns .btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(235, 123, 2, 0.12);
}

.hero-btns .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(235, 123, 2, 0.25);
}

/* Élément d'accroche technologique modernisé */
.hero-tech-tag {
    position: absolute;
    bottom: 40px;
    left: 30px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
    z-index: 3;
    font-weight: 300;
    position: relative;
}

.hero-tech-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-right: 15px;
}

/* Flèche de défilement animée */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 26px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 3;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
}

.scroll-down::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Initialisation des particules */
.hero-init {
    opacity: 0;
    position: absolute;
}

/* Responsive design adapté */
@media (max-width: 992px) {
    .hero-main-image {
        width: 45%;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .hero-content {
        width: 58%;
        padding: 0 30px 0 20px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .hero-tech-tag {
        bottom: 30px;
        left: 20px;
    }
    
    .hero-decoration-1, .hero-decoration-4 {
        display: none;
}

.hero-btns .btn {
        min-width: 140px;
        padding: 9px 20px;
    }
    
    .scroll-down {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }
    
    .hero-main-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        clip-path: none;
    }
    
    .hero-overlay {
        background: rgba(10, 10, 10, 0.75);
    }
    
    .hero-content {
        width: 100%;
        padding: 0 30px;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero p {
        text-align: center;
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-btns .btn {
        padding: 8px 18px;
        min-width: 130px;
    }
    
    .hero-tech-tag {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    
    .hero-decoration-2, .hero-decoration-3 {
        display: none;
    }
    
    .scroll-down {
        display: none;
    }
}

/* Services Section Redesign */
.services-section {
    position: relative;
    background-color: #f9fafb;
    overflow: hidden;
    padding: 100px 0;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 40px 40px, 30px 30px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

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

.services-section .section-title {
    margin-bottom: 70px;
}

.services-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
    z-index: 2;
}

.service-card:hover::before {
    width: 100%;
}

.service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    top: 0;
    left: 0;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    align-self: flex-start;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

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

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

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.services-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.services-btn:hover i {
    transform: translateX(5px);
}

.services-btn::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.7s ease;
}

.services-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .section-title {
        margin-bottom: 50px;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-filter {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(39, 168, 127, 0.2);
    color: #333;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.portfolio-filter .filter-text {
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-filter .filter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 50px;
}

.portfolio-filter:hover, 
.portfolio-filter.active {
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.portfolio-filter:hover .filter-text, 
.portfolio-filter.active .filter-text {
    color: white;
}

.portfolio-filter:hover .filter-glow, 
.portfolio-filter.active .filter-glow {
    opacity: 1;
}

/* Grille de portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Carte de portfolio */
.portfolio-card {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.25);
}

.portfolio-card-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(60px);
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.portfolio-card:hover .portfolio-tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    font-size: 12px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.portfolio-title {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    position: relative;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.portfolio-card:hover .portfolio-links {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #eb7b02;
    transform: translateY(-5px);
}

.portfolio-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(39, 168, 127, 0.8);
    border-right: 2px solid rgba(39, 168, 127, 0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-decoration {
    opacity: 1;
}

/* Section Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.client-item {
    padding: 20px;
}

.client-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-item-inner img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.client-item-inner:hover img {
    filter: grayscale(0);
    transform: scale(0.9);
}

.client-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    text-align: center;
    padding: 8px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.client-item-inner:hover .client-hover {
    transform: translateY(0);
}

.client-item-inner:hover {
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.2);
}

/* Section Témoignages Modernisée */
.testimonial-card {
    margin: 20px;
    position: relative;
}

.testimonial-card-inner {
    position: relative;
    padding: 40px 30px 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.testimonial-card-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27a87f, #eb7b02);
}

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

.testimonial-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #27a87f;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

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

.testimonial-author-img {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #27a87f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.testimonial-author-info p {
    color: #777;
    font-size: 14px;
}

.testimonial-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(39, 168, 127, 0.2);
    border-right: 2px solid rgba(39, 168, 127, 0.2);
}

/* CTA Section Modernisée */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiMyN2E4N2YiIHN0cm9rZS13aWR0aD0iMC41IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHg9IjAiIHk9IjAiIG9wYWNpdHk9IjAuMiI+PC9yZWN0PjxjaXJjbGUgZmlsbD0iIzI3YTg3ZiIgY3g9IjE1IiBjeT0iMTUiIHI9IjEiIG9wYWNpdHk9IjAuMiI+PC9jaXJjbGU+PGNpcmNsZSBmaWxsPSIjZWI3YjAyIiBjeD0iMzAiIGN5PSIzMCIgcj0iMiIgb3BhY2l0eT0iMC4xNSI+PC9jaXJjbGU+PHJlY3QgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZWI3YjAyIiBzdHJva2Utd2lkdGg9IjAuNSIgd2lkdGg9IjUiIGhlaWdodD0iNSIgeD0iNDUiIHk9IjQ1IiBvcGFjaXR5PSIwLjEiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.15;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(39, 168, 127, 0.1);
    overflow: hidden;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.05), rgba(235, 123, 2, 0.05));
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    top: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    animation: float 8s infinite ease-in-out;
}

.cta-shape-2 {
    bottom: 40px;
    left: 60px;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(235, 123, 2, 0.3);
    animation: float 6s infinite ease-in-out reverse;
}

.cta-shape-3 {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 1px dotted rgba(39, 168, 127, 0.2);
    animation: pulse 10s infinite ease-in-out;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
}

.cta-particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(39, 168, 127, 0.5);
    animation: float 5s infinite ease-in-out;
}

.cta-particle-2 {
    bottom: 30%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: rgba(235, 123, 2, 0.5);
    animation: float 7s infinite ease-in-out reverse;
}

.cta-particle-3 {
    top: 70%;
    left: 40%;
    width: 15px;
    height: 15px;
    background: rgba(39, 168, 127, 0.5);
    animation: pulse 8s infinite ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
}

.cta-circuit-1 {
    top: 30%;
    left: 0;
    width: 100%;
    animation: circuit 10s infinite ease-in-out;
}

.cta-circuit-2 {
    bottom: 40%;
    left: 0;
    width: 100%;
    animation: circuit 12s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 30px;
    color: #27a87f;
}

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.3);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse 3s infinite;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333;
}

.cta-content p {
    margin-bottom: 30px;
    color: #666;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 168, 127, 0.4);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(39, 168, 127, 0.5);
    color: #333;
}

.cta-btn-outline:hover {
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    transform: translateY(-5px);
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cta-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.cta-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #27a87f;
    margin-bottom: 5px;
    line-height: 1;
}

.cta-stat-text {
    font-size: 14px;
    color: #666;
}

.cta-stat-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 14px;
    color: #eb7b02;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes circuit {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-stats {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .portfolio-filter {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item:not(:last-child):after {
        display: none;
    }
}

/* Testimonials Section Redesign */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.06) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.04) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.testimonials-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 5;
}

.testimonials-section .section-title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.testimonials-section .section-subtitle {
    color: var(--primary-color);
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    position: relative;
    height: 100%;
    cursor: default;
    perspective: 1000px;
}

.testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px 30px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.2);
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    color: var(--primary-color);
    font-size: 28px;
    opacity: 0.6;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 100px;
    position: relative;
    padding-left: 10px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-author-img {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author-img {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

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

.testimonial-author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    box-shadow: 0 3px 8px rgba(39, 168, 127, 0.3);
}

.testimonial-author-info {
    flex-grow: 1;
}

.author-name {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

.testimonial-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border: 1px dashed rgba(235, 123, 2, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-decoration {
    width: 60px;
    height: 60px;
    border-color: rgba(235, 123, 2, 0.4);
}

.testimonials-cta {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonials-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.testimonials-btn:hover i {
    transform: translateX(5px);
}

.testimonials-btn::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.7s ease;
}

.testimonials-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .testimonial-icon {
        top: 15px;
        left: 20px;
        font-size: 24px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .testimonials-cta {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white-color);
}

.form-control:focus {
    border-color: var(--dark-color);
    outline: none;
    box-shadow: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.input-group {
    display: flex;
    position: relative;
}

.input-group .form-control {
    flex: 1;
}

.input-group-append {
    position: relative;
    z-index: 5;
}

.input-group .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
    height: 100%;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer redesign - Style moderne */
footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(39, 168, 127, 0.15);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px);
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 2fr;
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-logo {
    padding-right: 30px;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(39, 168, 127, 0.3));
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.4) 0%, transparent 80%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite;
}

.footer-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.social-links a:hover::before {
    transform: translateX(100%);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.footer-title {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title-decoration {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 0.95rem;
}

.footer-nav li a i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-nav li a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.2);
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(39, 168, 127, 0.3);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    max-width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 160px;
    margin-bottom: 30px;
    padding-right: 20px;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 25px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.tech-line-1 {
    width: 50%;
    top: 50px;
    left: -10%;
    animation: tech-line-move 15s linear infinite;
}

.tech-line-2 {
    width: 30%;
    top: 150px;
    right: -5%;
    animation: tech-line-move 12s linear infinite reverse;
}

.tech-line-3 {
    width: 40%;
    bottom: 100px;
    left: 30%;
    animation: tech-line-move 18s linear infinite;
}

@keyframes tech-line-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-intro {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-right: 0;
    }
    
    .footer-contact-text {
        font-size: 0.85rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Modern Page Header */
.modern-header {
    position: relative;
    background: linear-gradient(to right, #0a0a0a, #131313);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.modern-header .container {
    position: relative;
    z-index: 5;
}

.modern-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
    align-items: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
}

.header-tech-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0.7;
    z-index: 2;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.mission-card-inner, .vision-card-inner {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mission-card:hover .mission-card-inner,
.vision-card:hover .vision-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.2);
}

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

.mission-card-inner h3, 
.vision-card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-card-inner p, 
.vision-card-inner p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(39, 168, 127, 0.2);
    border-radius: 20px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.vision-card .card-decoration {
    border-color: rgba(235, 123, 2, 0.2);
}

.mission-card:hover .card-decoration,
.vision-card:hover .card-decoration {
    transform: rotate(60deg) scale(1.1);
}

/* Values Section */
.values-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.value-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(39, 168, 127, 0.1);
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: scale(1.1);
}

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

.value-card-inner p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.value-card:hover .value-hover-effect {
    transform: scaleX(1);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.team-card-inner {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                transparent 50%, 
                rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 5;
}

.light-title h2 {
    color: white;
}

.light-title p {
    color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    perspective: 1000px;
}

.stat-card-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-10px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.partners-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    perspective: 1000px;
}

.partner-item-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-item:hover .partner-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

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

/* Responsive styles for the About page */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .modern-header {
        padding: 100px 0 60px;
    }
    
    .modern-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid, .values-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-header {
        padding: 80px 0 50px;
    }
    
    .modern-header h1 {
        font-size: 2rem;
    }
    
    .mission-card-inner, .vision-card-inner, .value-card-inner, .stat-card-inner {
        padding: 25px;
    }
    
    .team-grid, .values-grid, .stats-grid, .partners-carousel {
        grid-template-columns: 1fr;
    }
    
    .card-icon, .value-icon, .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-img {
        height: 250px;
    }
    
    .partner-item-inner {
        height: 100px;
    }
}

.breadcrumb-item a span,
.breadcrumb-item span {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.breadcrumb-item a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover span {
    transform: translateY(-2px);
}

.breadcrumb-item a:hover span::after {
    width: 100%;
}

.breadcrumb-item.active span {
    color: white;
    font-weight: 500;
}

/* HomePage Hero specific */
.home-page .hero-new {
    margin-top: 0; /* Suppression de la marge négative */
    padding-top: 70px; /* Espace pour le header */
    height: 100vh;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-new {
    position: relative;
    min-height: 100vh; 
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    margin: 0;
    padding: 70px 0 0 0; /* Padding-top pour compenser le header */
    z-index: 1;
    box-sizing: border-box;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(39, 168, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 168, 127, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: -1;
}

.hero-new-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    height: calc(100vh - 70px); /* Hauteur ajustée pour tenir compte du header */
    box-sizing: border-box;
}

.hero-new-content {
    z-index: 2;
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-new-image {
    position: relative;
    width: 90%; /* Réduit de 100% (implicite) */
    margin: 0 auto;
    z-index: 3;
}

.hero-new-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transform: scale(0.9); /* Ajout pour réduire la taille de l'image */
}

.hero-new-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero-new-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    filter: blur(40px);
    z-index: 1;
    animation: pulse 6s ease-in-out infinite reverse;
}

.hero-new h1 {
    font-size: 2.4rem; /* Réduit de 2.8rem */
    line-height: 1.2; /* Réduit de 1.3 */
    margin-bottom: 20px; /* Réduit de 25px */
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 12px; /* Réduit de 15px */
    color: white;
    width: 100%;
}

.hero-new h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-new h1 span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.hero-new-text {
    font-size: 0.9rem; /* Réduit de 1rem */
    line-height: 1.6; /* Réduit de 1.7 */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px; /* Réduit de 30px */
    max-width: 550px; /* Réduit de 600px */
    width: 100%;
}

.hero-new-btns {
    display: flex;
    gap: 15px; /* Réduit de 20px */
    margin-top: 12px; /* Réduit de 15px */
    width: 100%;
}

.hero-new-btn {
    display: inline-block;
    padding: 10px 24px; /* Réduit de 12px 28px */
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px; /* Réduit de 13px */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-new-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.3);
}

.hero-new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.4);
    color: white;
}

.hero-new-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px var(--accent-color);
}

.hero-new-btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(235, 123, 2, 0.3);
}

.hero-new-btn::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: all 0.6s ease;
    z-index: -1;
}

.hero-new-btn:hover::before {
    left: 100%;
}

.hero-new-tag {
    position: absolute;
    bottom: 40px;
    left: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 1px;
    z-index: 10;
}

.tag-item {
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    padding: 0 5px;
}

.tag-item:hover {
    color: var(--primary-color);
}

.tag-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.hero-new-scroll {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.hero-new-scroll .scroll-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-new-scroll .scroll-link:hover {
    color: var(--primary-color);
}

.hero-new-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin-top: 15px;
}

.hero-new-badge {
    position: absolute;
    top: 80px; /* Réduit de 90px */
    right: 35px; /* Réduit de 40px */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 7px 16px; /* Réduit de 8px 18px */
    border-radius: 30px;
    font-size: 12px; /* Réduit de 13px */
    display: flex;
    align-items: center;
    gap: 8px; /* Réduit de 10px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.hero-new-badge i {
    color: var(--primary-color);
}

/* Responsive hero */
@media (max-width: 992px) {
    .hero-new {
        padding-top: 60px;
    }
    
    .hero-new-container {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 30px;
        height: calc(100vh - 60px);
    }
    
    .hero-new-content {
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    
    .hero-new h1 {
        font-size: 2.2rem; /* Réduit de 2.4rem (valeur implicite) */
        text-align: center;
    }
    
    .hero-new h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-new-text {
        text-align: center;
        max-width: 80%;
    }
    
    .hero-new-btns {
        justify-content: center;
    }
    
    .hero-new-badge {
        top: 100px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        height: 100vh;
        min-height: 100vh;
        padding-top: 50px;
    }
    
    .hero-new-container {
        padding: 30px 25px 50px;
        height: calc(100vh - 50px);
    }
    
    .hero-new h1 {
        font-size: 24px; /* Réduit de 28px */
    }
    
    .hero-new-text {
        font-size: 13px; /* Réduit de 14px */
    }
    
    .hero-new-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-new-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-new-badge {
        top: 80px;
        right: 20px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .hero-new-tag,
    .hero-new-scroll {
        display: none;
    }
}

/* CTA Section Redesign */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 8s infinite alternate ease-in-out;
}

.cta-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 2;
}

.cta-particle-1 {
    width: 5px;
    height: 5px;
    top: 20%;
    right: 15%;
    animation: float 10s infinite alternate ease-in-out;
}

.cta-particle-2 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 10%;
    background-color: var(--accent-color);
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.cta-particle-3 {
    width: 6px;
    height: 6px;
    top: 70%;
    right: 10%;
    animation: float 8s infinite alternate ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
    z-index: 1;
}

.cta-circuit-1 {
    width: 40%;
    top: 30%;
    right: 0;
    animation: circuit-move 15s linear infinite;
}

.cta-circuit-2 {
    width: 30%;
    bottom: 40%;
    left: 0;
    animation: circuit-move 12s linear infinite reverse;
}

@keyframes circuit-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.3);
    transition: all 0.5s ease;
    overflow: hidden;
}

.cta-wrapper:hover .cta-icon {
    transform: rotateY(180deg) scale(1.1);
}

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

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

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 3s infinite alternate ease-in-out;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    padding: 0 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 1;
}

.cta-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.25);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 168, 127, 0.35);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 2px var(--primary-color);
}

.cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.cta-btn::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: all 0.6s ease;
    z-index: -1;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.cta-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(39, 168, 127, 0.1);
    border-color: rgba(39, 168, 127, 0.2);
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.cta-stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-stat-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.cta-stat-item:hover .cta-stat-icon {
    opacity: 1;
    transform: scale(1);
}

.cta-tech-tag {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
}

.tech-tag-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.tech-tag-item:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-3px);
    border-color: rgba(39, 168, 127, 0.2);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cta-stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item {
        width: 100%;
    }
    
    .cta-tech-tag {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Services Page Redesign */
.services-intro {
    position: relative;
    padding: 100px 0 70px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.services-intro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
    z-index: 1;
}

.services-intro .container {
    position: relative;
    z-index: 2;
}

.services-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.service-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    width: 160px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
}

.service-category-item:hover::before {
    width: 100%;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    transition: all 0.5s ease;
}

.service-category-item:hover .category-icon {
    transform: rotateY(180deg);
}

.service-category-item span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

.service-category-item:hover span {
    color: var(--primary-color);
}

/* Service Detail Section */
.service-detail-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.service-alt {
    background-color: #f8f9fa;
}

.service-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.03) 2px, transparent 2px);
    background-size: 30px 30px, 25px 25px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 1;
}

.service-bg-alt {
    background-image: 
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(39, 168, 127, 0.03) 2px, transparent 2px);
}

.service-detail-card {
    position: relative;
    z-index: 2;
}

.service-detail-card-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
}

.service-detail-card:hover .service-detail-card-inner {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-detail-image {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

.service-detail-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-card:hover .image-overlay {
    opacity: 1;
}

.tech-tags {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-detail-card:hover .tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(39, 168, 127, 0.3);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.service-detail-card:hover .image-decoration {
    transform: rotate(60deg) scale(1.1);
    border-color: rgba(39, 168, 127, 0.5);
}

.service-detail-content {
    padding: 20px 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-detail-card:hover .service-icon {
    transform: rotateY(180deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.5;
    animation: pulse 3s infinite alternate ease-in-out;
}

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.service-detail-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 30px;
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    background: rgba(39, 168, 127, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.05);
}

.service-features-list li:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-features-list li:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.feature-text {
    flex-grow: 1;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

@media (max-width: 767px) {
    .service-features-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .service-features-list li {
        padding: 15px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-right: 10px;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    .service-cta {
        gap: 20px;
        margin-top: 20px;
    }

    .service-btn {
        padding: 12px 25px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }
}

@keyframes glitch-anim {
    0% {
        clip-path: inset(80% 0 0 0);
    }
    5% {
        clip-path: inset(10% 0 70% 0);
    }
    10% {
        clip-path: inset(50% 0 30% 0);
    }
    15% {
        clip-path: inset(20% 0 60% 0);
    }
    20% {
        clip-path: inset(30% 0 50% 0);
    }
    25% {
        clip-path: inset(80% 0 10% 0);
    }
    30% {
        clip-path: inset(10% 0 80% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(40% 0 40% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(20% 0 60% 0);
    }
    5% {
        clip-path: inset(60% 0 10% 0);
    }
    10% {
        clip-path: inset(30% 0 50% 0);
    }
    15% {
        clip-path: inset(70% 0 20% 0);
    }
    20% {
        clip-path: inset(40% 0 30% 0);
    }
    25% {
        clip-path: inset(10% 0 70% 0);
    }
    30% {
        clip-path: inset(50% 0 40% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(60% 0 30% 0);
    }
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.1), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
}

@keyframes lineDrawIn {
    to {
        width: 100%;
    }
}

/* Paragraphe avec amélioration typographique */
.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 85%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: fadeInSlideUp 1.2s 0.3s ease-out both;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
}

.hero p::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    left: 0;
    bottom: -10px;
}

/* Boutons avec effets interactifs avancés */
.hero-btns {
    animation: fadeInSlideUp 1.2s 0.6s ease-out both;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    position: relative;
}

.hero-btns::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-btns .btn {
    margin: 0;
    padding: 10px 25px;
    background-color: var(--primary-color);
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 12px;
}

.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.hero-btns .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.35);
}

.hero-btns .btn:hover::before {
    transform: translateX(0);
}

/* Effet de lueur au survol */
.hero-btns .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: inherit;
    z-index: -1;
}

.hero-btns .btn:active::after {
    transform: scale(3);
    opacity: 0;
    transition: 0s;
}

.hero-btns .btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(235, 123, 2, 0.12);
}

.hero-btns .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(235, 123, 2, 0.25);
}

/* Élément d'accroche technologique modernisé */
.hero-tech-tag {
    position: absolute;
    bottom: 40px;
    left: 30px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
    z-index: 3;
    font-weight: 300;
    position: relative;
}

.hero-tech-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-right: 15px;
}

/* Flèche de défilement animée */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 26px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 3;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
}

.scroll-down::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Initialisation des particules */
.hero-init {
    opacity: 0;
    position: absolute;
}

/* Responsive design adapté */
@media (max-width: 992px) {
    .hero-main-image {
        width: 45%;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .hero-content {
        width: 58%;
        padding: 0 30px 0 20px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .hero-tech-tag {
        bottom: 30px;
        left: 20px;
    }
    
    .hero-decoration-1, .hero-decoration-4 {
        display: none;
}

.hero-btns .btn {
        min-width: 140px;
        padding: 9px 20px;
    }
    
    .scroll-down {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }
    
    .hero-main-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        clip-path: none;
    }
    
    .hero-overlay {
        background: rgba(10, 10, 10, 0.75);
    }
    
    .hero-content {
        width: 100%;
        padding: 0 30px;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero p {
        text-align: center;
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-btns .btn {
        padding: 8px 18px;
        min-width: 130px;
    }
    
    .hero-tech-tag {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    
    .hero-decoration-2, .hero-decoration-3 {
        display: none;
    }
    
    .scroll-down {
        display: none;
    }
}

/* Services Section Redesign */
.services-section {
    position: relative;
    background-color: #f9fafb;
    overflow: hidden;
    padding: 100px 0;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 40px 40px, 30px 30px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

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

.services-section .section-title {
    margin-bottom: 70px;
}

.services-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
    z-index: 2;
}

.service-card:hover::before {
    width: 100%;
}

.service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    top: 0;
    left: 0;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    align-self: flex-start;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

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

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

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.services-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.services-btn:hover i {
    transform: translateX(5px);
}

.services-btn::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.7s ease;
}

.services-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .section-title {
        margin-bottom: 50px;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-filter {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(39, 168, 127, 0.2);
    color: #333;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.portfolio-filter .filter-text {
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-filter .filter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 50px;
}

.portfolio-filter:hover, 
.portfolio-filter.active {
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.portfolio-filter:hover .filter-text, 
.portfolio-filter.active .filter-text {
    color: white;
}

.portfolio-filter:hover .filter-glow, 
.portfolio-filter.active .filter-glow {
    opacity: 1;
}

/* Grille de portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Carte de portfolio */
.portfolio-card {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.25);
}

.portfolio-card-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(60px);
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.portfolio-card:hover .portfolio-tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    font-size: 12px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.portfolio-title {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    position: relative;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.portfolio-card:hover .portfolio-links {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #eb7b02;
    transform: translateY(-5px);
}

.portfolio-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(39, 168, 127, 0.8);
    border-right: 2px solid rgba(39, 168, 127, 0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-decoration {
    opacity: 1;
}

/* Section Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.client-item {
    padding: 20px;
}

.client-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-item-inner img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.client-item-inner:hover img {
    filter: grayscale(0);
    transform: scale(0.9);
}

.client-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    text-align: center;
    padding: 8px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.client-item-inner:hover .client-hover {
    transform: translateY(0);
}

.client-item-inner:hover {
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.2);
}

/* Section Témoignages Modernisée */
.testimonial-card {
    margin: 20px;
    position: relative;
}

.testimonial-card-inner {
    position: relative;
    padding: 40px 30px 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.testimonial-card-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27a87f, #eb7b02);
}

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

.testimonial-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #27a87f;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

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

.testimonial-author-img {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #27a87f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.testimonial-author-info p {
    color: #777;
    font-size: 14px;
}

.testimonial-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(39, 168, 127, 0.2);
    border-right: 2px solid rgba(39, 168, 127, 0.2);
}

/* CTA Section Modernisée */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IjI3YTg3ZiIgc3Ryb2tlLXdpZHRoPSIwLjUiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxMCIgeD0iMCIgeT0iMCIgb3BhY2l0eT0iMC4yIj48L3JlY3Q+PGNpcmNsZSBmaWxsPSIjMjdhODdmIiBjeD0iMTUiIGN5PSIxNSIgcj0iMSIgb3BhY2l0eT0iMC4yIj48L2NpcmNsZT48Y2lyY2xlIGZpbGw9IiNlYjdiMDAiIGN4PSIzMCIgY3k9IjMwIiByPSIyIiBvcGFjaXR5PSIwLjE1Ij48L2NpcmNsZT48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiNlYjdiMDAiIHN0cm9rZS13aWR0aD0iMC41IiB3aWR0aD0iNSIgaGVpZ2h0PSI1IiB4PSI0NSIgeT0iNDUiIG9wYWNpdHk9IjAuMSI+PC9yZWN0Pjwvc3ZnPg==');
    opacity: 0.15;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(39, 168, 127, 0.1);
    overflow: hidden;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.05), rgba(235, 123, 2, 0.05));
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    top: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    animation: float 8s infinite ease-in-out;
}

.cta-shape-2 {
    bottom: 40px;
    left: 60px;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(235, 123, 2, 0.3);
    animation: float 6s infinite ease-in-out reverse;
}

.cta-shape-3 {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 1px dotted rgba(39, 168, 127, 0.2);
    animation: pulse 10s infinite ease-in-out;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
}

.cta-particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(39, 168, 127, 0.5);
    animation: float 5s infinite ease-in-out;
}

.cta-particle-2 {
    bottom: 30%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: rgba(235, 123, 2, 0.5);
    animation: float 7s infinite ease-in-out reverse;
}

.cta-particle-3 {
    top: 70%;
    left: 40%;
    width: 15px;
    height: 15px;
    background: rgba(39, 168, 127, 0.5);
    animation: pulse 8s infinite ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
}

.cta-circuit-1 {
    top: 30%;
    left: 0;
    width: 100%;
    animation: circuit 10s infinite ease-in-out;
}

.cta-circuit-2 {
    bottom: 40%;
    left: 0;
    width: 100%;
    animation: circuit 12s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 30px;
    color: #27a87f;
}

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.3);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse 3s infinite;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333;
}

.cta-content p {
    margin-bottom: 30px;
    color: #666;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 168, 127, 0.4);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(39, 168, 127, 0.5);
    color: #333;
}

.cta-btn-outline:hover {
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    transform: translateY(-5px);
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cta-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.cta-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #27a87f;
    margin-bottom: 5px;
    line-height: 1;
}

.cta-stat-text {
    font-size: 14px;
    color: #666;
}

.cta-stat-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 14px;
    color: #eb7b02;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes circuit {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-stats {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .portfolio-filter {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item:not(:last-child):after {
        display: none;
    }
}

/* Testimonials Section Redesign */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.06) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.04) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.testimonials-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 5;
}

.testimonials-section .section-title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.testimonials-section .section-subtitle {
    color: var(--primary-color);
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    position: relative;
    height: 100%;
    cursor: default;
    perspective: 1000px;
}

.testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px 30px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.2);
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    color: var(--primary-color);
    font-size: 28px;
    opacity: 0.6;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 100px;
    position: relative;
    padding-left: 10px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-author-img {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author-img {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

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

.testimonial-author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    box-shadow: 0 3px 8px rgba(39, 168, 127, 0.3);
}

.testimonial-author-info {
    flex-grow: 1;
}

.author-name {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

.testimonial-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border: 1px dashed rgba(235, 123, 2, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-decoration {
    width: 60px;
    height: 60px;
    border-color: rgba(235, 123, 2, 0.4);
}

.testimonials-cta {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonials-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.testimonials-btn:hover i {
    transform: translateX(5px);
}

.testimonials-btn::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.7s ease;
}

.testimonials-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .testimonial-icon {
        top: 15px;
        left: 20px;
        font-size: 24px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .testimonials-cta {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white-color);
}

.form-control:focus {
    border-color: var(--dark-color);
    outline: none;
    box-shadow: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.input-group {
    display: flex;
    position: relative;
}

.input-group .form-control {
    flex: 1;
}

.input-group-append {
    position: relative;
    z-index: 5;
}

.input-group .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
    height: 100%;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer redesign - Style moderne */
footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(39, 168, 127, 0.15);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px);
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 2fr;
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-logo {
    padding-right: 30px;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(39, 168, 127, 0.3));
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.4) 0%, transparent 80%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite;
}

.footer-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.social-links a:hover::before {
    transform: translateX(100%);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.footer-title {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title-decoration {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 0.95rem;
}

.footer-nav li a i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-nav li a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.2);
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(39, 168, 127, 0.3);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    max-width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 160px;
    margin-bottom: 30px;
    padding-right: 20px;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 25px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.tech-line-1 {
    width: 50%;
    top: 50px;
    left: -10%;
    animation: tech-line-move 15s linear infinite;
}

.tech-line-2 {
    width: 30%;
    top: 150px;
    right: -5%;
    animation: tech-line-move 12s linear infinite reverse;
}

.tech-line-3 {
    width: 40%;
    bottom: 100px;
    left: 30%;
    animation: tech-line-move 18s linear infinite;
}

@keyframes tech-line-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-intro {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-right: 0;
    }
    
    .footer-contact-text {
        font-size: 0.85rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Modern Page Header */
.modern-header {
    position: relative;
    background: linear-gradient(to right, #0a0a0a, #131313);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.modern-header .container {
    position: relative;
    z-index: 5;
}

.modern-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
    align-items: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
}

.header-tech-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0.7;
    z-index: 2;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.mission-card-inner, .vision-card-inner {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mission-card:hover .mission-card-inner,
.vision-card:hover .vision-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.2);
}

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

.mission-card-inner h3, 
.vision-card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-card-inner p, 
.vision-card-inner p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(39, 168, 127, 0.2);
    border-radius: 20px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.vision-card:hover .card-decoration,
.mission-card:hover .card-decoration {
    transform: rotate(60deg) scale(1.1);
}

/* Values Section */
.values-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.value-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(39, 168, 127, 0.1);
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: scale(1.1);
}

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

.value-card-inner p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.value-card:hover .value-hover-effect {
    transform: scaleX(1);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.team-card-inner {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                transparent 50%, 
                rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 5;
}

.light-title h2 {
    color: white;
}

.light-title p {
    color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    perspective: 1000px;
}

.stat-card-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-10px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.partners-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    perspective: 1000px;
}

.partner-item-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-item:hover .partner-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

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

/* Responsive styles for the About page */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .modern-header {
        padding: 100px 0 60px;
    }
    
    .modern-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid, .values-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-header {
        padding: 80px 0 50px;
    }
    
    .modern-header h1 {
        font-size: 2rem;
    }
    
    .mission-card-inner, .vision-card-inner, .value-card-inner, .stat-card-inner {
        padding: 25px;
    }
    
    .team-grid, .values-grid, .stats-grid, .partners-carousel {
        grid-template-columns: 1fr;
    }
    
    .card-icon, .value-icon, .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-img {
        height: 250px;
    }
    
    .partner-item-inner {
        height: 100px;
    }
}

.breadcrumb-item a span,
.breadcrumb-item span {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.breadcrumb-item a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover span {
    transform: translateY(-2px);
}

.breadcrumb-item a:hover span::after {
    width: 100%;
}

.breadcrumb-item.active span {
    color: white;
    font-weight: 500;
}

/* HomePage Hero specific */
.home-page .hero-new {
    margin-top: 0; /* Suppression de la marge négative */
    padding-top: 70px; /* Espace pour le header */
    height: 100vh;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-new {
    position: relative;
    min-height: 100vh; 
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    margin: 0;
    padding: 70px 0 0 0; /* Padding-top pour compenser le header */
    z-index: 1;
    box-sizing: border-box;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(39, 168, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 168, 127, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: -1;
}

.hero-new-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    height: calc(100vh - 70px); /* Hauteur ajustée pour tenir compte du header */
    box-sizing: border-box;
}

.hero-new-content {
    z-index: 2;
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-new-image {
    position: relative;
    width: 90%; /* Réduit de 100% (implicite) */
    margin: 0 auto;
    z-index: 3;
}

.hero-new-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transform: scale(0.9); /* Ajout pour réduire la taille de l'image */
}

.hero-new-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero-new-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    filter: blur(40px);
    z-index: 1;
    animation: pulse 6s ease-in-out infinite reverse;
}

.hero-new h1 {
    font-size: 2.4rem; /* Réduit de 2.8rem */
    line-height: 1.2; /* Réduit de 1.3 */
    margin-bottom: 20px; /* Réduit de 25px */
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 12px; /* Réduit de 15px */
    color: white;
    width: 100%;
}

.hero-new h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-new h1 span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.hero-new-text {
    font-size: 0.9rem; /* Réduit de 1rem */
    line-height: 1.6; /* Réduit de 1.7 */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px; /* Réduit de 30px */
    max-width: 550px; /* Réduit de 600px */
    width: 100%;
}

.hero-new-btns {
    display: flex;
    gap: 15px; /* Réduit de 20px */
    margin-top: 12px; /* Réduit de 15px */
    width: 100%;
}

.hero-new-btn {
    display: inline-block;
    padding: 10px 24px; /* Réduit de 12px 28px */
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px; /* Réduit de 13px */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-new-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.3);
}

.hero-new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.4);
    color: white;
}

.hero-new-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px var(--accent-color);
}

.hero-new-btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(235, 123, 2, 0.3);
}

.hero-new-btn::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: all 0.6s ease;
    z-index: -1;
}

.hero-new-btn:hover::before {
    left: 100%;
}

.hero-new-tag {
    position: absolute;
    bottom: 40px;
    left: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 1px;
    z-index: 10;
}

.tag-item {
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    padding: 0 5px;
}

.tag-item:hover {
    color: var(--primary-color);
}

.tag-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.hero-new-scroll {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.hero-new-scroll .scroll-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-new-scroll .scroll-link:hover {
    color: var(--primary-color);
}

.hero-new-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin-top: 15px;
}

.hero-new-badge {
    position: absolute;
    top: 80px; /* Réduit de 90px */
    right: 35px; /* Réduit de 40px */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 7px 16px; /* Réduit de 8px 18px */
    border-radius: 30px;
    font-size: 12px; /* Réduit de 13px */
    display: flex;
    align-items: center;
    gap: 8px; /* Réduit de 10px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.hero-new-badge i {
    color: var(--primary-color);
}

/* Responsive hero */
@media (max-width: 992px) {
    .hero-new {
        padding-top: 60px;
    }
    
    .hero-new-container {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 30px;
        height: calc(100vh - 60px);
    }
    
    .hero-new-content {
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    
    .hero-new h1 {
        font-size: 2.2rem; /* Réduit de 2.4rem (valeur implicite) */
        text-align: center;
    }
    
    .hero-new h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-new-text {
        text-align: center;
        max-width: 80%;
    }
    
    .hero-new-btns {
        justify-content: center;
    }
    
    .hero-new-badge {
        top: 100px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        height: 100vh;
        min-height: 100vh;
        padding-top: 50px;
    }
    
    .hero-new-container {
        padding: 30px 25px 50px;
        height: calc(100vh - 50px);
    }
    
    .hero-new h1 {
        font-size: 24px; /* Réduit de 28px */
    }
    
    .hero-new-text {
        font-size: 13px; /* Réduit de 14px */
    }
    
    .hero-new-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-new-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-new-badge {
        top: 80px;
        right: 20px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .hero-new-tag,
    .hero-new-scroll {
        display: none;
    }
}

/* CTA Section Redesign */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 8s infinite alternate ease-in-out;
}

.cta-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 2;
}

.cta-particle-1 {
    width: 5px;
    height: 5px;
    top: 20%;
    right: 15%;
    animation: float 10s infinite alternate ease-in-out;
}

.cta-particle-2 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 10%;
    background-color: var(--accent-color);
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.cta-particle-3 {
    width: 6px;
    height: 6px;
    top: 70%;
    right: 10%;
    animation: float 8s infinite alternate ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
    z-index: 1;
}

.cta-circuit-1 {
    width: 40%;
    top: 30%;
    right: 0;
    animation: circuit-move 15s linear infinite;
}

.cta-circuit-2 {
    width: 30%;
    bottom: 40%;
    left: 0;
    animation: circuit-move 12s linear infinite reverse;
}

@keyframes circuit-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.3);
    transition: all 0.5s ease;
    overflow: hidden;
}

.cta-wrapper:hover .cta-icon {
    transform: rotateY(180deg) scale(1.1);
}

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

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

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 3s infinite alternate ease-in-out;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    padding: 0 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 1;
}

.cta-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.25);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 168, 127, 0.35);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 2px var(--primary-color);
}

.cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.cta-btn::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: all 0.6s ease;
    z-index: -1;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.cta-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(39, 168, 127, 0.1);
    border-color: rgba(39, 168, 127, 0.2);
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.cta-stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-stat-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.cta-stat-item:hover .cta-stat-icon {
    opacity: 1;
    transform: scale(1);
}

.cta-tech-tag {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
}

.tech-tag-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.tech-tag-item:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-3px);
    border-color: rgba(39, 168, 127, 0.2);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cta-stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item {
        width: 100%;
    }
    
    .cta-tech-tag {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Services Page Redesign */
.services-intro {
    position: relative;
    padding: 100px 0 70px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.services-intro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
    z-index: 1;
}

.services-intro .container {
    position: relative;
    z-index: 2;
}

.services-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.service-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    width: 160px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
}

.service-category-item:hover::before {
    width: 100%;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    transition: all 0.5s ease;
}

.service-category-item:hover .category-icon {
    transform: rotateY(180deg);
}

.service-category-item span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

.service-category-item:hover span {
    color: var(--primary-color);
}

/* Service Detail Section */
.service-detail-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.service-alt {
    background-color: #f8f9fa;
}

.service-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.03) 2px, transparent 2px);
    background-size: 30px 30px, 25px 25px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 1;
}

.service-bg-alt {
    background-image: 
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(39, 168, 127, 0.03) 2px, transparent 2px);
}

.service-detail-card {
    position: relative;
    z-index: 2;
}

.service-detail-card-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
}

.service-detail-card:hover .service-detail-card-inner {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-detail-image {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

.service-detail-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-card:hover .image-overlay {
    opacity: 1;
}

.tech-tags {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-detail-card:hover .tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(39, 168, 127, 0.3);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.service-detail-card:hover .image-decoration {
    transform: rotate(60deg) scale(1.1);
    border-color: rgba(39, 168, 127, 0.5);
}

.service-detail-content {
    padding: 20px 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-detail-card:hover .service-icon {
    transform: rotateY(180deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.5;
    animation: pulse 3s infinite alternate ease-in-out;
}

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.service-detail-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 30px;
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    background: rgba(39, 168, 127, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.05);
}

.service-features-list li:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-features-list li:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.feature-text {
    flex-grow: 1;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 168, 127, 0.3);
    color: white;
    text-decoration: none;
}

.service-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-btn::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: all 0.6s ease;
    z-index: -1;
}

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

.service-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section Redesign */
.process-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
}

.process-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 0;
}

.process-container {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.process-timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), var(--accent-color), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 1;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-card {
    perspective: 1000px;
}

.process-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-card:hover .process-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 168, 127, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    z-index: 3;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(39, 168, 127, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.process-card:hover .process-icon {
    transform: rotateY(180deg);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
}

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

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

.process-card-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 2px dashed rgba(235, 123, 2, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s ease;
}

.process-card:hover .process-card-decoration {
    width: 50px;
    height: 50px;
    border-color: rgba(235, 123, 2, 0.4);
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-detail-section {
        padding: 70px 0;
    }
    
    .service-detail-card-inner {
        padding: 30px;
    }
    
    .service-detail-content {
        padding-top: 30px;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .process-section {
        padding: 70px 0;
    }
    
    .process-timeline-line {
        display: none;
    }
    
    .services-categories {
        gap: 15px;
    }
    
    .service-category-item {
        width: 140px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 50px 0;
    }
    
    .service-detail-card-inner {
        padding: 25px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .service-btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-stat {
        align-self: center;
    }
    
    .services-categories {
        justify-content: center;
    }
    
    .service-category-item {
        width: 130px;
        padding: 15px 10px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-category-item span {
        font-size: 12px;
    }
}

/* Styles pour la page Blog modernisée */

/* Zone de recherche */
.blog-search {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 50px;
    border: 1px solid rgba(39, 168, 127, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-wrapper:hover, 
.search-wrapper:focus-within {
    border-color: rgba(39, 168, 127, 0.5);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.15);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-size: 16px;
    color: #333;
}

.search-button {
    width: 50px;
    border: none;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    opacity: 0.9;
}

.search-glow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #27a87f, #eb7b02, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.search-wrapper:focus-within .search-glow {
    transform: translateX(100%);
}

/* Catégories de blog */
.blog-categories {
    margin-bottom: 50px;
}

.blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.blog-categories li {
    margin: 5px;
}

.blog-categories a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.blog-categories a span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-categories a:hover span,
.blog-categories a.active span {
    color: white;
}

.category-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 1;
}

.blog-categories a:hover .category-indicator,
.blog-categories a.active .category-indicator {
    opacity: 1;
    transform: scale(1);
}

/* Article en vedette */
.featured-article {
    position: relative;
    overflow: hidden;
}

.featured-article-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.date-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.3);
    filter: blur(10px);
    z-index: -1;
}

.article-date .day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.article-date .month,
.article-date .year {
    font-size: 14px;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.1), rgba(235, 123, 2, 0.1));
    border: 1px solid rgba(39, 168, 127, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.article-category-badge i {
    margin-right: 8px;
    color: #27a87f;
}

.article-category-badge span {
    color: #333;
    font-weight: 500;
}

.featured-article-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.read-time {
    display: flex;
    align-items: center;
    color: #666;
}

.read-time i {
    margin-right: 8px;
    color: #eb7b02;
}

/* Grille d'articles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Carte d'article */
.blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.blog-card-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover .blog-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.15);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.date-inner {
    position: relative;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    position: relative;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-category i {
    margin-right: 8px;
    font-size: 12px;
}

.blog-category:hover {
    background: #27a87f;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: #27a87f;
    text-decoration: none;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: #27a87f;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

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

.blog-link:hover {
    color: #eb7b02;
    text-decoration: none;
}

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

.blog-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-decoration {
    opacity: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination ul {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.2);
    font-weight: 500;
}

.pagination a:hover,
.pagination a.active {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: #27a87f;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.input-focus-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27a87f, #eb7b02, #27a87f);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.newsletter-form .form-control:focus ~ .input-focus-bg {
    transform: scaleX(1);
    animation: gradientShift 3s linear infinite;
}

.form-check {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.form-check input {
    margin-right: 10px;
}

.form-check label {
    font-size: 14px;
    color: #666;
}

.form-check a {
    color: #27a87f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-check a:hover {
    color: #eb7b02;
}

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

/* Responsive */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .featured-article-details h3 {
        font-size: 24px;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .blog-categories a {
        white-space: nowrap;
    }
    
    .article-date {
        padding: 10px;
    }
    
    .article-date .day {
        font-size: 20px;
    }
    
    .article-date .month,
    .article-date .year {
        font-size: 12px;
    }
    
    .newsletter-content h2 {
        font-size: 26px;
    }
}

/* Styles pour la page Contact modernisée */

/* Cartes d'information de contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    position: relative;
}

.contact-card-inner {
    position: relative;
    padding: 30px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(39, 168, 127, 0.05);
}

.contact-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.1);
}

.contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    font-size: 24px;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
    transition: all 0.3s ease;
}

.contact-card-inner:hover .contact-icon {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
}

.contact-card-inner:hover .icon-glow {
    background: rgba(39, 168, 127, 0.4);
    transform: scale(1.2);
}

.contact-text h4 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-text a:hover {
    color: #27a87f;
}

.contact-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card-inner:hover .contact-decoration {
    opacity: 1;
}

/* Section Formulaire de Contact */
.contact-form-section {
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Carte Formulaire */
.form-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-card-inner {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    font-size: 28px;
    color: #27a87f;
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.form-header p {
    color: #666;
}

.input-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(39, 168, 127, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #27a87f;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.1);
}

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

.input-focus-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #27a87f, #eb7b02);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.form-control:focus ~ .input-focus-bg {
    transform: scaleX(1);
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-check label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.form-check a {
    color: #27a87f;
    text-decoration: none;
}

.form-check a:hover {
    color: #eb7b02;
}

.form-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.form-btn span {
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.form-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.8), rgba(235, 123, 2, 0.8));
    filter: blur(15px);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.form-btn:hover i {
    transform: translateX(5px);
}

.form-btn:hover .btn-glow {
    opacity: 0.6;
}

.form-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-top: 2px solid rgba(39, 168, 127, 0.3);
    border-right: 2px solid rgba(39, 168, 127, 0.3);
}

/* Carte Map */
.map-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-card-inner {
    position: relative;
    background: white;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 25px;
    display: flex;
    align-items: center;
}

.map-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    font-size: 24px;
    color: #27a87f;
}

.map-header h3 {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.contact-map {
    position: relative;
    flex: 1;
    min-height: 300px;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-stats {
    display: flex;
    padding: 20px 25px;
    background: rgba(39, 168, 127, 0.05);
}

.map-stat-item {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #27a87f;
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
}

.map-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
}

/* Section Réseaux Sociaux */
.social-media-section {
    position: relative;
}

.social-media-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    display: block;
    text-decoration: none;
}

.social-card-inner {
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.1);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    font-size: 30px;
    transition: all 0.3s ease;
}

.social-card.facebook .social-icon:hover {
    background: #3b5998;
    color: white;
}

.social-card.twitter .social-icon:hover {
    background: #1da1f2;
    color: white;
}

.social-card.linkedin .social-icon:hover {
    background: #0077b5;
    color: white;
}

.social-card.instagram .social-icon:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.social-card-inner:hover .social-name {
    color: #27a87f;
}

.social-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-card-inner:hover .social-decoration {
    opacity: 1;
}

/* Section FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 10px;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(39, 168, 127, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    position: relative;
}

.faq-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    color: #27a87f;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-button:hover .faq-title {
    color: #27a87f;
}

.faq-button:not(.collapsed) .faq-icon {
    background: #27a87f;
    color: white;
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-map {
        min-height: 350px;
    }
    
    .social-media-links {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-card-inner,
    .map-card-inner {
        padding: 25px 20px;
    }
    
    .form-icon,
    .map-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .form-header h3,
    .map-header h3 {
        font-size: 20px;
    }
    
    .social-media-links {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 16px;
    }
}

/* Header Futuriste Responsive */
.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    background-size: 10px 10px;
    opacity: 0.8;
    z-index: -1;
}

.header-circuit-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(39, 168, 127, 0.1) 0%, rgba(39, 168, 127, 0.4) 100%);
    height: 2px;
    z-index: 1;
}

.circuit-line-1 {
    width: 40%;
    bottom: 0;
    left: 0;
    animation: circuit-line-move 10s infinite alternate ease-in-out;
}

.circuit-line-2 {
    width: 30%;
    top: 10px;
    right: 0;
    animation: circuit-line-move 8s infinite alternate-reverse ease-in-out;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27a87f;
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.8);
    z-index: 2;
}

.circuit-dot-1 {
    bottom: 0;
    left: 20%;
    animation: pulse 3s infinite;
}

.circuit-dot-2 {
    bottom: 0;
    left: 40%;
    animation: pulse 4s infinite 1s;
}

.circuit-dot-3 {
    top: 10px;
    right: 30%;
    animation: pulse 5s infinite 2s;
}

@keyframes circuit-line-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

/* Logo Animation */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.logo a {
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo a:hover .logo-glow {
    opacity: 1;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin: 0 5px;
}

.nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #27a87f 0%, #eb7b02 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: 1;
}

.nav-links a:hover .nav-hover-effect,
.nav-links a.active .nav-hover-effect {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.1);
    z-index: -1;
    border-radius: 4px;
}

/* Get Started Button */
.get-started-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-left: 10px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.3);
}

.get-started-btn span {
    position: relative;
    z-index: 2;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eb7b02 0%, #d26a00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.5);
}

.get-started-btn:hover::before {
    opacity: 1;
}

.btn-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.8) 0%, rgba(235, 123, 2, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.get-started-btn:hover .btn-glow {
    transform: scale(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.menu-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.menu-toggle:hover .menu-glow,
.menu-toggle.active .menu-glow {
    opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-inner {
    position: relative;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.mobile-nav-decoration::before,
.mobile-nav-decoration::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(39, 168, 127, 0.1) 0%, rgba(39, 168, 127, 0) 100%);
    height: 1px;
}

.mobile-nav-decoration::before {
    top: 0;
    left: 0;
    width: 100%;
}

.mobile-nav-decoration::after {
    bottom: 0;
    right: 0;
    width: 100%;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    position: relative;
    display: block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #27a87f 0%, rgba(39, 168, 127, 0) 100%);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #27a87f;
    padding-left: 15px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
    width: 60px;
}

.mobile-cta {
    margin-top: auto;
    padding: 20px 0;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #eb7b02 0%, #d26a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.5);
}

.mobile-cta-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mobile-cta-btn:hover i {
    transform: translateX(5px);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.mobile-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: #27a87f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.5);
}

/* Responsive Header Styles */
@media (max-width: 991px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    header.header-scrolled {
        height: 70px;
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .circuit-line-1, 
    .circuit-line-2 {
        display: none;
    }
    
    .mobile-nav-links a {
        font-size: 16px;
    }
    
    .mobile-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .mobile-social-links a {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    
    .mobile-nav-inner {
        padding: 20px 15px;
    }
}

/* Script pour la navigation responsive */
document.addEventListener('DOMContentLoaded', function() {
    const menuToggle = document.querySelector('.menu-toggle');
    const mobileNav = document.querySelector('.mobile-nav');
    const body = document.querySelector('body');
    const header = document.querySelector('#header');

    // Toggle menu on click
    menuToggle.addEventListener('click', function() {
        this.classList.toggle('active');
        mobileNav.classList.toggle('active');
        body.classList.toggle('menu-open');
    });

    // Header scroll effect
    window.addEventListener('scroll', function() {
        if (window.scrollY > 50) {
            header.classList.add('header-scrolled');
        } else {
            header.classList.remove('header-scrolled');
        }
    });

    // Close menu on window resize
    window.addEventListener('resize', function() {
        if (window.innerWidth > 991 && mobileNav.classList.contains('active')) {
            menuToggle.classList.remove('active');
            mobileNav.classList.remove('active');
            body.classList.remove('menu-open');
        }
    });

    // Close menu when clicking on a mobile nav link
    const mobileNavLinks = document.querySelectorAll('.mobile-nav-links a');
    mobileNavLinks.forEach(link => {
        link.addEventListener('click', function() {
            menuToggle.classList.remove('active');
            mobileNav.classList.remove('active');
            body.classList.remove('menu-open');
        });
    });
});

// ... existing code ...

/* Styles pour la page d'accueil modernisée */

/* Section Hero Futuriste */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.7);
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.8);
    animation: float 15s infinite ease-in-out;
}

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

.particle-2 {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    width: 8px;
    height: 8px;
}

.particle-3 {
    top: 40%;
    right: 15%;
    animation-delay: 6s;
    background: rgba(235, 123, 2, 0.7);
    box-shadow: 0 0 10px rgba(235, 123, 2, 0.8);
}

.particle-4 {
    top: 80%;
    right: 25%;
    animation-delay: 9s;
    width: 4px;
    height: 4px;
}

.particle-5 {
    top: 30%;
    left: 50%;
    animation-delay: 12s;
    background: rgba(235, 123, 2, 0.7);
    box-shadow: 0 0 10px rgba(235, 123, 2, 0.8);
}

/* 
 * IMPACT Entreprises - Main Stylesheet
 * Palette de couleurs: noir (#000), bleu électrique (#0088ff), blanc (#fff)
 */

/* Reset & Base Styles */
:root {
    --primary-color: #27a87f; /* Vert-bleu de l'entreprise */
    --primary-dark: #1b8a66; /* Version plus foncée du vert-bleu */
    --primary-light: #4dc19a; /* Version plus claire du vert-bleu */
    
    --accent-color: #eb7b02; /* Orange de l'entreprise */
    --accent-dark: #c66800; /* Version plus foncée de l'orange */
    --accent-light: #ff9226; /* Version plus claire de l'orange */
    
    --dark-color: #000000; /* Noir conservé */
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --white-color: #ffffff;
    --text-color: #333333;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
    --border-radius: 8px; /* Nouvelle variable pour les coins arrondis */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f8f8;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

h2::after {
    content: '';
    display: none;
}

h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(235, 123, 2, 0.2);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.3);
}

.btn-dark {
    background-color: var(--dark-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background-color: var(--dark-gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

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

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

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

/* Header redesign - Style moderne et high-tech */
header {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(39, 168, 127, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

header.header-scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 0;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(39, 168, 127, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    transition: all 0.3s;
    height: 50px;
}

header.header-scrolled .header-content {
    padding: 3px 0;
    height: 45px;
}

header.header-scrolled .logo img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(39, 168, 127, 0.3));
}

.logo {
    margin: 0;
    padding: 0;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.5s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

header.header-scrolled .logo img {
    max-height: 40px;
}

@media (max-width: 991px) {
    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 767px) {
    .logo img {
        max-height: 40px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 13px;
    padding: 6px 0;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(39, 168, 127, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    bottom: 0;
    left: 0;
    transition: 0.4s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

.get-started-btn {
    margin-left: 20px;
    background: var(--accent-color);
    color: #fff !important;
    border-radius: var(--border-radius);
    padding: 7px 18px !important;
    white-space: nowrap;
    transition: 0.4s !important;
    font-size: 12px !important;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(235, 123, 2, 0.25);
    position: relative;
    overflow: hidden;
    border: none;
}

.get-started-btn::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: 0.5s;
}

.get-started-btn:hover {
    background: var(--accent-dark);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 123, 2, 0.35);
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Menu animations */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 5;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--primary-color);
}

/* Hero Section - Design Futuriste et Innovant */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white-color);
    overflow: hidden;
    margin-top: -50px;
    position: relative;
}

/* Fond avec effet de circuit imprimé */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.05) 0px, rgba(39, 168, 127, 0.05) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.05) 0px, rgba(39, 168, 127, 0.05) 1px, transparent 1px, transparent 20px),
        linear-gradient(90deg, rgba(235, 123, 2, 0.02), rgba(39, 168, 127, 0.02));
    opacity: 0.7;
    z-index: 1;
}

/* Éléments flottants en arrière-plan */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Animation de particules numériques */
.hero-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(1);
    animation: particleAppear 10s linear infinite;
    box-shadow: 0 0 8px rgba(39, 168, 127, 0.6);
    z-index: 2;
}

@keyframes particleAppear {
    0% {
        opacity: 0.3;
        transform: scale(0.8) translateY(0);
    }
    10% {
        opacity: 0.5;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
        transform: scale(1) translateY(-100px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-150px);
    }
}

/* Lignes de code qui défilent */
.code-line {
    position: absolute;
    height: 1px;
    width: 15%;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
    animation: codeLine 6s linear infinite;
    opacity: 0.5;
    z-index: 2;
    box-shadow: 0 0 5px rgba(39, 168, 127, 0.3);
}

@keyframes codeLine {
    0% {
        opacity: 0.5;
        width: 10%;
    }
    50% {
        opacity: 0.7;
        width: 70%;
    }
    90% {
        opacity: 0.3;
        width: 100%;
    }
    100% {
        opacity: 0;
        width: 100%;
    }
}

/* Élément pour l'image principale avec effet avancé */
.hero-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 2;
    background-image: url('../images/accueil.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    animation: slideInRight 1.2s ease-out forwards;
    box-shadow: inset -50px 0 70px rgba(13, 13, 13, 0.3);
    filter: saturate(1.1) contrast(1.05);
}

/* Effet de ligne de scan sur l'image amélioré */
.hero-main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(39, 168, 127, 0) 0%, 
        rgba(39, 168, 127, 0.2) 50%, 
        rgba(39, 168, 127, 0) 100%);
    opacity: 0.8;
    transform: translateY(-100%);
    animation: scanLine 5s ease-out infinite;
    z-index: 3;
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(300%);
    }
}

/* Overlay avec gradient optimisé */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(10, 10, 10, 0.95) 30%, 
                rgba(13, 13, 13, 0.8) 50%, 
                rgba(15, 15, 15, 0.6) 70%, 
                rgba(15, 15, 15, 0.4) 85%);
    z-index: 2;
}

/* Éléments décoratifs technologiques améliorés */
.hero-decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(39, 168, 127, 0.15);
}

.hero-decoration-1 {
    top: 12%;
    left: 8%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    border-radius: 12px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite alternate;
    backdrop-filter: blur(5px);
    background: rgba(39, 168, 127, 0.1);
}

.hero-decoration-2 {
    bottom: 18%;
    left: 6%;
    width: 90px;
    height: 90px;
    background: conic-gradient(from 0deg, rgba(235, 123, 2, 0.1), rgba(39, 168, 127, 0.1), rgba(235, 123, 2, 0.1));
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite, rotate 30s linear infinite;
    box-shadow: 0 0 20px rgba(235, 123, 2, 0.2);
}

.hero-decoration-3 {
    top: 23%;
    right: 18%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(235, 123, 2, 0.15);
    box-shadow: 0 0 20px rgba(235, 123, 2, 0.3);
    animation: float 9s ease-in-out infinite alternate-reverse, pulse 5s ease-in-out infinite;
}

.hero-decoration-4 {
    bottom: 25%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        rgba(39, 168, 127, 0.05) 0px,
        rgba(39, 168, 127, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    border: 1px solid rgba(39, 168, 127, 0.2);
    transform: rotate(30deg);
    animation: rotate 30s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(-15px) rotate(45deg);
    }
}

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

/* Titre avec effet glitch visible */
.hero h1::before, .hero h1::after {
    display: block !important;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.2), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.4);
}

.hero h1:hover::before, .hero h1:hover::after {
    display: block;
}

@keyframes glitch-anim {
    0% {
        clip-path: inset(80% 0 0 0);
    }
    5% {
        clip-path: inset(10% 0 70% 0);
    }
    10% {
        clip-path: inset(50% 0 30% 0);
    }
    15% {
        clip-path: inset(20% 0 60% 0);
    }
    20% {
        clip-path: inset(30% 0 50% 0);
    }
    25% {
        clip-path: inset(80% 0 10% 0);
    }
    30% {
        clip-path: inset(10% 0 80% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(40% 0 40% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(20% 0 60% 0);
    }
    5% {
        clip-path: inset(60% 0 10% 0);
    }
    10% {
        clip-path: inset(30% 0 50% 0);
    }
    15% {
        clip-path: inset(70% 0 20% 0);
    }
    20% {
        clip-path: inset(40% 0 30% 0);
    }
    25% {
        clip-path: inset(10% 0 70% 0);
    }
    30% {
        clip-path: inset(50% 0 40% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(60% 0 30% 0);
    }
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.1), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
}

@keyframes lineDrawIn {
    to {
        width: 100%;
    }
}

/* Paragraphe avec amélioration typographique */
.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 85%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: fadeInSlideUp 1.2s 0.3s ease-out both;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
}

.hero p::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    left: 0;
    bottom: -10px;
}

/* Boutons avec effets interactifs avancés */
.hero-btns {
    animation: fadeInSlideUp 1.2s 0.6s ease-out both;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    position: relative;
}

.hero-btns::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-btns .btn {
    margin: 0;
    padding: 10px 25px;
    background-color: var(--primary-color);
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 12px;
}

.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.hero-btns .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.35);
}

.hero-btns .btn:hover::before {
    transform: translateX(0);
}

/* Effet de lueur au survol */
.hero-btns .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: inherit;
    z-index: -1;
}

.hero-btns .btn:active::after {
    transform: scale(3);
    opacity: 0;
    transition: 0s;
}

.hero-btns .btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(235, 123, 2, 0.12);
}

.hero-btns .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(235, 123, 2, 0.25);
}

/* Élément d'accroche technologique modernisé */
.hero-tech-tag {
    position: absolute;
    bottom: 40px;
    left: 30px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
    z-index: 3;
    font-weight: 300;
    position: relative;
}

.hero-tech-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-right: 15px;
}

/* Flèche de défilement animée */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 26px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 3;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
}

.scroll-down::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Initialisation des particules */
.hero-init {
    opacity: 0;
    position: absolute;
}

/* Responsive design adapté */
@media (max-width: 992px) {
    .hero-main-image {
        width: 45%;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .hero-content {
        width: 58%;
        padding: 0 30px 0 20px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .hero-tech-tag {
        bottom: 30px;
        left: 20px;
    }
    
    .hero-decoration-1, .hero-decoration-4 {
        display: none;
}

.hero-btns .btn {
        min-width: 140px;
        padding: 9px 20px;
    }
    
    .scroll-down {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }
    
    .hero-main-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        clip-path: none;
    }
    
    .hero-overlay {
        background: rgba(10, 10, 10, 0.75);
    }
    
    .hero-content {
        width: 100%;
        padding: 0 30px;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero p {
        text-align: center;
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-btns .btn {
        padding: 8px 18px;
        min-width: 130px;
    }
    
    .hero-tech-tag {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    
    .hero-decoration-2, .hero-decoration-3 {
        display: none;
    }
    
    .scroll-down {
        display: none;
    }
}

/* Services Section Redesign */
.services-section {
    position: relative;
    background-color: #f9fafb;
    overflow: hidden;
    padding: 100px 0;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 40px 40px, 30px 30px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

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

.services-section .section-title {
    margin-bottom: 70px;
}

.services-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
    z-index: 2;
}

.service-card:hover::before {
    width: 100%;
}

.service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    top: 0;
    left: 0;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    align-self: flex-start;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

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

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

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.services-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.services-btn:hover i {
    transform: translateX(5px);
}

.services-btn::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.7s ease;
}

.services-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .section-title {
        margin-bottom: 50px;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-filter {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(39, 168, 127, 0.2);
    color: #333;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.portfolio-filter .filter-text {
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-filter .filter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 50px;
}

.portfolio-filter:hover, 
.portfolio-filter.active {
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.portfolio-filter:hover .filter-text, 
.portfolio-filter.active .filter-text {
    color: white;
}

.portfolio-filter:hover .filter-glow, 
.portfolio-filter.active .filter-glow {
    opacity: 1;
}

/* Grille de portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Carte de portfolio */
.portfolio-card {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.25);
}

.portfolio-card-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(60px);
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.portfolio-card:hover .portfolio-tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    font-size: 12px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.portfolio-title {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    position: relative;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.portfolio-card:hover .portfolio-links {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #eb7b02;
    transform: translateY(-5px);
}

.portfolio-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(39, 168, 127, 0.8);
    border-right: 2px solid rgba(39, 168, 127, 0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-decoration {
    opacity: 1;
}

/* Section Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.client-item {
    padding: 20px;
}

.client-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-item-inner img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.client-item-inner:hover img {
    filter: grayscale(0);
    transform: scale(0.9);
}

.client-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    text-align: center;
    padding: 8px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.client-item-inner:hover .client-hover {
    transform: translateY(0);
}

.client-item-inner:hover {
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.2);
}

/* Section Témoignages Modernisée */
.testimonial-card {
    margin: 20px;
    position: relative;
}

.testimonial-card-inner {
    position: relative;
    padding: 40px 30px 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.testimonial-card-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27a87f, #eb7b02);
}

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

.testimonial-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #27a87f;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

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

.testimonial-author-img {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #27a87f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.testimonial-author-info p {
    color: #777;
    font-size: 14px;
}

.testimonial-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(39, 168, 127, 0.2);
    border-right: 2px solid rgba(39, 168, 127, 0.2);
}

/* CTA Section Modernisée */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiMyN2E4N2YiIHN0cm9rZS13aWR0aD0iMC41IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHg9IjAiIHk9IjAiIG9wYWNpdHk9IjAuMiI+PC9yZWN0PjxjaXJjbGUgZmlsbD0iIzI3YTg3ZiIgY3g9IjE1IiBjeT0iMTUiIHI9IjEiIG9wYWNpdHk9IjAuMiI+PC9jaXJjbGU+PGNpcmNsZSBmaWxsPSIjZWI3YjAyIiBjeD0iMzAiIGN5PSIzMCIgcj0iMiIgb3BhY2l0eT0iMC4xNSI+PC9jaXJjbGU+PHJlY3QgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZWI3YjAyIiBzdHJva2Utd2lkdGg9IjAuNSIgd2lkdGg9IjUiIGhlaWdodD0iNSIgeD0iNDUiIHk9IjQ1IiBvcGFjaXR5PSIwLjEiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.15;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(39, 168, 127, 0.1);
    overflow: hidden;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.05), rgba(235, 123, 2, 0.05));
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    top: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    animation: float 8s infinite ease-in-out;
}

.cta-shape-2 {
    bottom: 40px;
    left: 60px;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(235, 123, 2, 0.3);
    animation: float 6s infinite ease-in-out reverse;
}

.cta-shape-3 {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 1px dotted rgba(39, 168, 127, 0.2);
    animation: pulse 10s infinite ease-in-out;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
}

.cta-particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(39, 168, 127, 0.5);
    animation: float 5s infinite ease-in-out;
}

.cta-particle-2 {
    bottom: 30%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: rgba(235, 123, 2, 0.5);
    animation: float 7s infinite ease-in-out reverse;
}

.cta-particle-3 {
    top: 70%;
    left: 40%;
    width: 15px;
    height: 15px;
    background: rgba(39, 168, 127, 0.5);
    animation: pulse 8s infinite ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
}

.cta-circuit-1 {
    top: 30%;
    left: 0;
    width: 100%;
    animation: circuit 10s infinite ease-in-out;
}

.cta-circuit-2 {
    bottom: 40%;
    left: 0;
    width: 100%;
    animation: circuit 12s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 30px;
    color: #27a87f;
}

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.3);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse 3s infinite;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333;
}

.cta-content p {
    margin-bottom: 30px;
    color: #666;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 168, 127, 0.4);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(39, 168, 127, 0.5);
    color: #333;
}

.cta-btn-outline:hover {
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    transform: translateY(-5px);
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cta-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.cta-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #27a87f;
    margin-bottom: 5px;
    line-height: 1;
}

.cta-stat-text {
    font-size: 14px;
    color: #666;
}

.cta-stat-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 14px;
    color: #eb7b02;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes circuit {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-stats {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .portfolio-filter {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item:not(:last-child):after {
        display: none;
    }
}

/* Testimonials Section Redesign */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.06) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.04) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.testimonials-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 5;
}

.testimonials-section .section-title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.testimonials-section .section-subtitle {
    color: var(--primary-color);
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    position: relative;
    height: 100%;
    cursor: default;
    perspective: 1000px;
}

.testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px 30px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.2);
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    color: var(--primary-color);
    font-size: 28px;
    opacity: 0.6;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 100px;
    position: relative;
    padding-left: 10px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-author-img {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author-img {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

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

.testimonial-author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    box-shadow: 0 3px 8px rgba(39, 168, 127, 0.3);
}

.testimonial-author-info {
    flex-grow: 1;
}

.author-name {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

.testimonial-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border: 1px dashed rgba(235, 123, 2, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-decoration {
    width: 60px;
    height: 60px;
    border-color: rgba(235, 123, 2, 0.4);
}

.testimonials-cta {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonials-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.testimonials-btn:hover i {
    transform: translateX(5px);
}

.testimonials-btn::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.7s ease;
}

.testimonials-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .testimonial-icon {
        top: 15px;
        left: 20px;
        font-size: 24px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .testimonials-cta {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white-color);
}

.form-control:focus {
    border-color: var(--dark-color);
    outline: none;
    box-shadow: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.input-group {
    display: flex;
    position: relative;
}

.input-group .form-control {
    flex: 1;
}

.input-group-append {
    position: relative;
    z-index: 5;
}

.input-group .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
    height: 100%;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer redesign - Style moderne */
footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(39, 168, 127, 0.15);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px);
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 2fr;
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-logo {
    padding-right: 30px;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(39, 168, 127, 0.3));
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.4) 0%, transparent 80%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite;
}

.footer-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.social-links a:hover::before {
    transform: translateX(100%);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.footer-title {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title-decoration {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 0.95rem;
}

.footer-nav li a i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-nav li a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.2);
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(39, 168, 127, 0.3);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    max-width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 160px;
    margin-bottom: 30px;
    padding-right: 20px;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 25px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.tech-line-1 {
    width: 50%;
    top: 50px;
    left: -10%;
    animation: tech-line-move 15s linear infinite;
}

.tech-line-2 {
    width: 30%;
    top: 150px;
    right: -5%;
    animation: tech-line-move 12s linear infinite reverse;
}

.tech-line-3 {
    width: 40%;
    bottom: 100px;
    left: 30%;
    animation: tech-line-move 18s linear infinite;
}

@keyframes tech-line-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-intro {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-right: 0;
    }
    
    .footer-contact-text {
        font-size: 0.85rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Modern Page Header */
.modern-header {
    position: relative;
    background: linear-gradient(to right, #0a0a0a, #131313);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.modern-header .container {
    position: relative;
    z-index: 5;
}

.modern-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
    align-items: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
}

.header-tech-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0.7;
    z-index: 2;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.mission-card-inner, .vision-card-inner {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mission-card:hover .mission-card-inner,
.vision-card:hover .vision-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.2);
}

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

.mission-card-inner h3, 
.vision-card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-card-inner p, 
.vision-card-inner p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(39, 168, 127, 0.2);
    border-radius: 20px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.vision-card .card-decoration {
    border-color: rgba(235, 123, 2, 0.2);
}

.mission-card:hover .card-decoration,
.vision-card:hover .card-decoration {
    transform: rotate(60deg) scale(1.1);
}

/* Values Section */
.values-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.value-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(39, 168, 127, 0.1);
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: scale(1.1);
}

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

.value-card-inner p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.value-card:hover .value-hover-effect {
    transform: scaleX(1);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.team-card-inner {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                transparent 50%, 
                rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 5;
}

.light-title h2 {
    color: white;
}

.light-title p {
    color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    perspective: 1000px;
}

.stat-card-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-10px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.partners-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    perspective: 1000px;
}

.partner-item-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-item:hover .partner-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

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

/* Responsive styles for the About page */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .modern-header {
        padding: 100px 0 60px;
    }
    
    .modern-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid, .values-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-header {
        padding: 80px 0 50px;
    }
    
    .modern-header h1 {
        font-size: 2rem;
    }
    
    .mission-card-inner, .vision-card-inner, .value-card-inner, .stat-card-inner {
        padding: 25px;
    }
    
    .team-grid, .values-grid, .stats-grid, .partners-carousel {
        grid-template-columns: 1fr;
    }
    
    .card-icon, .value-icon, .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-img {
        height: 250px;
    }
    
    .partner-item-inner {
        height: 100px;
    }
}

.breadcrumb-item a span,
.breadcrumb-item span {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.breadcrumb-item a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover span {
    transform: translateY(-2px);
}

.breadcrumb-item a:hover span::after {
    width: 100%;
}

.breadcrumb-item.active span {
    color: white;
    font-weight: 500;
}

/* HomePage Hero specific */
.home-page .hero-new {
    margin-top: 0; /* Suppression de la marge négative */
    padding-top: 70px; /* Espace pour le header */
    height: 100vh;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-new {
    position: relative;
    min-height: 100vh; 
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    margin: 0;
    padding: 70px 0 0 0; /* Padding-top pour compenser le header */
    z-index: 1;
    box-sizing: border-box;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(39, 168, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 168, 127, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: -1;
}

.hero-new-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    height: calc(100vh - 70px); /* Hauteur ajustée pour tenir compte du header */
    box-sizing: border-box;
}

.hero-new-content {
    z-index: 2;
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-new-image {
    position: relative;
    width: 90%; /* Réduit de 100% (implicite) */
    margin: 0 auto;
    z-index: 3;
}

.hero-new-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transform: scale(0.9); /* Ajout pour réduire la taille de l'image */
}

.hero-new-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero-new-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    filter: blur(40px);
    z-index: 1;
    animation: pulse 6s ease-in-out infinite reverse;
}

.hero-new h1 {
    font-size: 2.4rem; /* Réduit de 2.8rem */
    line-height: 1.2; /* Réduit de 1.3 */
    margin-bottom: 20px; /* Réduit de 25px */
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 12px; /* Réduit de 15px */
    color: white;
    width: 100%;
}

.hero-new h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-new h1 span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.hero-new-text {
    font-size: 0.9rem; /* Réduit de 1rem */
    line-height: 1.6; /* Réduit de 1.7 */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px; /* Réduit de 30px */
    max-width: 550px; /* Réduit de 600px */
    width: 100%;
}

.hero-new-btns {
    display: flex;
    gap: 15px; /* Réduit de 20px */
    margin-top: 12px; /* Réduit de 15px */
    width: 100%;
}

.hero-new-btn {
    display: inline-block;
    padding: 10px 24px; /* Réduit de 12px 28px */
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px; /* Réduit de 13px */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-new-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.3);
}

.hero-new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.4);
    color: white;
}

.hero-new-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px var(--accent-color);
}

.hero-new-btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(235, 123, 2, 0.3);
}

.hero-new-btn::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: all 0.6s ease;
    z-index: -1;
}

.hero-new-btn:hover::before {
    left: 100%;
}

.hero-new-tag {
    position: absolute;
    bottom: 40px;
    left: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 1px;
    z-index: 10;
}

.tag-item {
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    padding: 0 5px;
}

.tag-item:hover {
    color: var(--primary-color);
}

.tag-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.hero-new-scroll {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.hero-new-scroll .scroll-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-new-scroll .scroll-link:hover {
    color: var(--primary-color);
}

.hero-new-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin-top: 15px;
}

.hero-new-badge {
    position: absolute;
    top: 80px; /* Réduit de 90px */
    right: 35px; /* Réduit de 40px */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 7px 16px; /* Réduit de 8px 18px */
    border-radius: 30px;
    font-size: 12px; /* Réduit de 13px */
    display: flex;
    align-items: center;
    gap: 8px; /* Réduit de 10px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.hero-new-badge i {
    color: var(--primary-color);
}

/* Responsive hero */
@media (max-width: 992px) {
    .hero-new {
        padding-top: 60px;
    }
    
    .hero-new-container {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 30px;
        height: calc(100vh - 60px);
    }
    
    .hero-new-content {
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    
    .hero-new h1 {
        font-size: 2.2rem; /* Réduit de 2.4rem (valeur implicite) */
        text-align: center;
    }
    
    .hero-new h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-new-text {
        text-align: center;
        max-width: 80%;
    }
    
    .hero-new-btns {
        justify-content: center;
    }
    
    .hero-new-badge {
        top: 100px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        height: 100vh;
        min-height: 100vh;
        padding-top: 50px;
    }
    
    .hero-new-container {
        padding: 30px 25px 50px;
        height: calc(100vh - 50px);
    }
    
    .hero-new h1 {
        font-size: 24px; /* Réduit de 28px */
    }
    
    .hero-new-text {
        font-size: 13px; /* Réduit de 14px */
    }
    
    .hero-new-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-new-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-new-badge {
        top: 80px;
        right: 20px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .hero-new-tag,
    .hero-new-scroll {
        display: none;
    }
}

/* CTA Section Redesign */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 8s infinite alternate ease-in-out;
}

.cta-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 2;
}

.cta-particle-1 {
    width: 5px;
    height: 5px;
    top: 20%;
    right: 15%;
    animation: float 10s infinite alternate ease-in-out;
}

.cta-particle-2 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 10%;
    background-color: var(--accent-color);
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.cta-particle-3 {
    width: 6px;
    height: 6px;
    top: 70%;
    right: 10%;
    animation: float 8s infinite alternate ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
    z-index: 1;
}

.cta-circuit-1 {
    width: 40%;
    top: 30%;
    right: 0;
    animation: circuit-move 15s linear infinite;
}

.cta-circuit-2 {
    width: 30%;
    bottom: 40%;
    left: 0;
    animation: circuit-move 12s linear infinite reverse;
}

@keyframes circuit-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.3);
    transition: all 0.5s ease;
    overflow: hidden;
}

.cta-wrapper:hover .cta-icon {
    transform: rotateY(180deg) scale(1.1);
}

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

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

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 3s infinite alternate ease-in-out;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    padding: 0 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 1;
}

.cta-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.25);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 168, 127, 0.35);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 2px var(--primary-color);
}

.cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.cta-btn::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: all 0.6s ease;
    z-index: -1;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.cta-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(39, 168, 127, 0.1);
    border-color: rgba(39, 168, 127, 0.2);
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.cta-stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-stat-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.cta-stat-item:hover .cta-stat-icon {
    opacity: 1;
    transform: scale(1);
}

.cta-tech-tag {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
}

.tech-tag-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.tech-tag-item:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-3px);
    border-color: rgba(39, 168, 127, 0.2);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cta-stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item {
        width: 100%;
    }
    
    .cta-tech-tag {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Services Page Redesign */
.services-intro {
    position: relative;
    padding: 100px 0 70px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.services-intro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
    z-index: 1;
}

.services-intro .container {
    position: relative;
    z-index: 2;
}

.services-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.service-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    width: 160px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
}

.service-category-item:hover::before {
    width: 100%;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    transition: all 0.5s ease;
}

.service-category-item:hover .category-icon {
    transform: rotateY(180deg);
}

.service-category-item span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

.service-category-item:hover span {
    color: var(--primary-color);
}

/* Service Detail Section */
.service-detail-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.service-alt {
    background-color: #f8f9fa;
}

.service-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.03) 2px, transparent 2px);
    background-size: 30px 30px, 25px 25px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 1;
}

.service-bg-alt {
    background-image: 
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(39, 168, 127, 0.03) 2px, transparent 2px);
}

.service-detail-card {
    position: relative;
    z-index: 2;
}

.service-detail-card-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
}

.service-detail-card:hover .service-detail-card-inner {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-detail-image {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

.service-detail-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-card:hover .image-overlay {
    opacity: 1;
}

.tech-tags {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-detail-card:hover .tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(39, 168, 127, 0.3);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.service-detail-card:hover .image-decoration {
    transform: rotate(60deg) scale(1.1);
    border-color: rgba(39, 168, 127, 0.5);
}

.service-detail-content {
    padding: 20px 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-detail-card:hover .service-icon {
    transform: rotateY(180deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.5;
    animation: pulse 3s infinite alternate ease-in-out;
}

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.service-detail-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 30px;
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    background: rgba(39, 168, 127, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.05);
}

.service-features-list li:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-features-list li:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.feature-text {
    flex-grow: 1;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-btn:hover {
/* 
 * IMPACT Entreprises - Main Stylesheet
 * Palette de couleurs: noir (#000), bleu électrique (#0088ff), blanc (#fff)
 */

/* Reset & Base Styles */
:root {
    --primary-color: #27a87f; /* Vert-bleu de l'entreprise */
    --primary-dark: #1b8a66; /* Version plus foncée du vert-bleu */
    --primary-light: #4dc19a; /* Version plus claire du vert-bleu */
    
    --accent-color: #eb7b02; /* Orange de l'entreprise */
    --accent-dark: #c66800; /* Version plus foncée de l'orange */
    --accent-light: #ff9226; /* Version plus claire de l'orange */
    
    --dark-color: #000000; /* Noir conservé */
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --white-color: #ffffff;
    --text-color: #333333;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
    --border-radius: 8px; /* Nouvelle variable pour les coins arrondis */
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f8f8;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

h2::after {
    content: '';
    display: none;
}

h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.btn-accent {
    background-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(235, 123, 2, 0.2);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.3);
}

.btn-dark {
    background-color: var(--dark-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
    background-color: var(--dark-gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

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

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

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

/* Header redesign - Style moderne et high-tech */
header {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(39, 168, 127, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

header.header-scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 0;
    background-color: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(39, 168, 127, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    transition: all 0.3s;
    height: 50px;
}

header.header-scrolled .header-content {
    padding: 3px 0;
    height: 45px;
}

header.header-scrolled .logo img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(39, 168, 127, 0.3));
}

.logo {
    margin: 0;
    padding: 0;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transition: width 0.5s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

header.header-scrolled .logo img {
    max-height: 40px;
}

@media (max-width: 991px) {
    .logo img {
        max-height: 45px;
    }
}

@media (max-width: 767px) {
    .logo img {
        max-height: 40px;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 13px;
    padding: 6px 0;
    display: inline-block;
    position: relative;
    transition: 0.4s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(39, 168, 127, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    bottom: 0;
    left: 0;
    transition: 0.4s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 70%;
}

.get-started-btn {
    margin-left: 20px;
    background: var(--accent-color);
    color: #fff !important;
    border-radius: var(--border-radius);
    padding: 7px 18px !important;
    white-space: nowrap;
    transition: 0.4s !important;
    font-size: 12px !important;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(235, 123, 2, 0.25);
    position: relative;
    overflow: hidden;
    border: none;
}

.get-started-btn::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: 0.5s;
}

.get-started-btn:hover {
    background: var(--accent-dark);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(235, 123, 2, 0.35);
}

.get-started-btn:hover::before {
    left: 100%;
}

/* Menu animations */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 5;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
    background-color: var(--primary-color);
}

/* Hero Section - Design Futuriste et Innovant */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--white-color);
    overflow: hidden;
    margin-top: -50px;
    position: relative;
}

/* Fond avec effet de circuit imprimé */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.05) 0px, rgba(39, 168, 127, 0.05) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.05) 0px, rgba(39, 168, 127, 0.05) 1px, transparent 1px, transparent 20px),
        linear-gradient(90deg, rgba(235, 123, 2, 0.02), rgba(39, 168, 127, 0.02));
    opacity: 0.7;
    z-index: 1;
}

/* Éléments flottants en arrière-plan */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Animation de particules numériques */
.hero-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    transform: scale(1);
    animation: particleAppear 10s linear infinite;
    box-shadow: 0 0 8px rgba(39, 168, 127, 0.6);
    z-index: 2;
}

@keyframes particleAppear {
    0% {
        opacity: 0.3;
        transform: scale(0.8) translateY(0);
    }
    10% {
        opacity: 0.5;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
        transform: scale(1) translateY(-100px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-150px);
    }
}

/* Lignes de code qui défilent */
.code-line {
    position: absolute;
    height: 1px;
    width: 15%;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
    animation: codeLine 6s linear infinite;
    opacity: 0.5;
    z-index: 2;
    box-shadow: 0 0 5px rgba(39, 168, 127, 0.3);
}

@keyframes codeLine {
    0% {
        opacity: 0.5;
        width: 10%;
    }
    50% {
        opacity: 0.7;
        width: 70%;
    }
    90% {
        opacity: 0.3;
        width: 100%;
    }
    100% {
        opacity: 0;
        width: 100%;
    }
}

/* Élément pour l'image principale avec effet avancé */
.hero-main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 2;
    background-image: url('../images/accueil.png');
    background-size: cover;
    background-position: center;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    animation: slideInRight 1.2s ease-out forwards;
    box-shadow: inset -50px 0 70px rgba(13, 13, 13, 0.3);
    filter: saturate(1.1) contrast(1.05);
}

/* Effet de ligne de scan sur l'image amélioré */
.hero-main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(39, 168, 127, 0) 0%, 
        rgba(39, 168, 127, 0.2) 50%, 
        rgba(39, 168, 127, 0) 100%);
    opacity: 0.8;
    transform: translateY(-100%);
    animation: scanLine 5s ease-out infinite;
    z-index: 3;
}

@keyframes scanLine {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(300%);
    }
}

/* Overlay avec gradient optimisé */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(10, 10, 10, 0.95) 30%, 
                rgba(13, 13, 13, 0.8) 50%, 
                rgba(15, 15, 15, 0.6) 70%, 
                rgba(15, 15, 15, 0.4) 85%);
    z-index: 2;
}

/* Éléments décoratifs technologiques améliorés */
.hero-decoration {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(39, 168, 127, 0.15);
}

.hero-decoration-1 {
    top: 12%;
    left: 8%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    border-radius: 12px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite alternate;
    backdrop-filter: blur(5px);
    background: rgba(39, 168, 127, 0.1);
}

.hero-decoration-2 {
    bottom: 18%;
    left: 6%;
    width: 90px;
    height: 90px;
    background: conic-gradient(from 0deg, rgba(235, 123, 2, 0.1), rgba(39, 168, 127, 0.1), rgba(235, 123, 2, 0.1));
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite, rotate 30s linear infinite;
    box-shadow: 0 0 20px rgba(235, 123, 2, 0.2);
}

.hero-decoration-3 {
    top: 23%;
    right: 18%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(235, 123, 2, 0.15);
    box-shadow: 0 0 20px rgba(235, 123, 2, 0.3);
    animation: float 9s ease-in-out infinite alternate-reverse, pulse 5s ease-in-out infinite;
}

.hero-decoration-4 {
    bottom: 25%;
    right: 12%;
    width: 80px;
    height: 80px;
    background: repeating-linear-gradient(
        45deg,
        rgba(39, 168, 127, 0.05) 0px,
        rgba(39, 168, 127, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    border: 1px solid rgba(39, 168, 127, 0.2);
    transform: rotate(30deg);
    animation: rotate 30s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(-15px) rotate(45deg);
    }
}

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

/* Titre avec effet glitch visible */
.hero h1::before, .hero h1::after {
    display: block !important;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.2), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.4);
}

.hero h1:hover::before, .hero h1:hover::after {
    display: block;
}

@keyframes glitch-anim {
    0% {
        clip-path: inset(80% 0 0 0);
    }
    5% {
        clip-path: inset(10% 0 70% 0);
    }
    10% {
        clip-path: inset(50% 0 30% 0);
    }
    15% {
        clip-path: inset(20% 0 60% 0);
    }
    20% {
        clip-path: inset(30% 0 50% 0);
    }
    25% {
        clip-path: inset(80% 0 10% 0);
    }
    30% {
        clip-path: inset(10% 0 80% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(40% 0 40% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(20% 0 60% 0);
    }
    5% {
        clip-path: inset(60% 0 10% 0);
    }
    10% {
        clip-path: inset(30% 0 50% 0);
    }
    15% {
        clip-path: inset(70% 0 20% 0);
    }
    20% {
        clip-path: inset(40% 0 30% 0);
    }
    25% {
        clip-path: inset(10% 0 70% 0);
    }
    30% {
        clip-path: inset(50% 0 40% 0);
    }
    /* ... and so on */
    100% {
        clip-path: inset(60% 0 30% 0);
    }
}

.hero h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero h1 span::before {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(39, 168, 127, 0.1), transparent);
    z-index: -1;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    bottom: 0;
    left: 0;
    transform-origin: left;
    animation: lineDrawIn 1.5s 1s forwards cubic-bezier(0.1, 0.9, 0.2, 1);
}

@keyframes lineDrawIn {
    to {
        width: 100%;
    }
}

/* Paragraphe avec amélioration typographique */
.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 85%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    animation: fadeInSlideUp 1.2s 0.3s ease-out both;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
}

.hero p::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    left: 0;
    bottom: -10px;
}

/* Boutons avec effets interactifs avancés */
.hero-btns {
    animation: fadeInSlideUp 1.2s 0.6s ease-out both;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    position: relative;
}

.hero-btns::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    pointer-events: none;
}

.hero-btns .btn {
    margin: 0;
    padding: 10px 25px;
    background-color: var(--primary-color);
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 12px;
}

.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.08) 100%);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.hero-btns .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.35);
}

.hero-btns .btn:hover::before {
    transform: translateX(0);
}

/* Effet de lueur au survol */
.hero-btns .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s ease;
    border-radius: inherit;
    z-index: -1;
}

.hero-btns .btn:active::after {
    transform: scale(3);
    opacity: 0;
    transition: 0s;
}

.hero-btns .btn-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(235, 123, 2, 0.12);
}

.hero-btns .btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 10px 25px rgba(235, 123, 2, 0.25);
}

/* Élément d'accroche technologique modernisé */
.hero-tech-tag {
    position: absolute;
    bottom: 40px;
    left: 30px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
    z-index: 3;
    font-weight: 300;
    position: relative;
}

.hero-tech-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin-right: 15px;
}

/* Flèche de défilement animée */
.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 30px;
    width: 26px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 3;
    animation: fadeIn 2s 1.5s forwards;
    opacity: 0;
}

.scroll-down::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Initialisation des particules */
.hero-init {
    opacity: 0;
    position: absolute;
}

/* Responsive design adapté */
@media (max-width: 992px) {
    .hero-main-image {
        width: 45%;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .hero-content {
        width: 58%;
        padding: 0 30px 0 20px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .hero-tech-tag {
        bottom: 30px;
        left: 20px;
    }
    
    .hero-decoration-1, .hero-decoration-4 {
        display: none;
}

.hero-btns .btn {
        min-width: 140px;
        padding: 9px 20px;
    }
    
    .scroll-down {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }
    
    .hero-main-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        clip-path: none;
    }
    
    .hero-overlay {
        background: rgba(10, 10, 10, 0.75);
    }
    
    .hero-content {
        width: 100%;
        padding: 0 30px;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero p {
        text-align: center;
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-btns .btn {
        padding: 8px 18px;
        min-width: 130px;
    }
    
    .hero-tech-tag {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    
    .hero-decoration-2, .hero-decoration-3 {
        display: none;
    }
    
    .scroll-down {
        display: none;
    }
}

/* Services Section Redesign */
.services-section {
    position: relative;
    background-color: #f9fafb;
    overflow: hidden;
    padding: 100px 0;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 40px 40px, 30px 30px;
    background-position: 0 0, 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

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

.services-section .section-title {
    margin-bottom: 70px;
}

.services-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
    z-index: 2;
}

.service-card:hover::before {
    width: 100%;
}

.service-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    top: 0;
    left: 0;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    align-self: flex-start;
    margin-top: auto;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

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

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

.services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.services-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.services-btn:hover i {
    transform: translateX(5px);
}

.services-btn::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.7s ease;
}

.services-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .section-title {
        margin-bottom: 50px;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Portfolio Section */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-filter {
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(39, 168, 127, 0.2);
    color: #333;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.portfolio-filter .filter-text {
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-filter .filter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 50px;
}

.portfolio-filter:hover, 
.portfolio-filter.active {
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.portfolio-filter:hover .filter-text, 
.portfolio-filter.active .filter-text {
    color: white;
}

.portfolio-filter:hover .filter-glow, 
.portfolio-filter.active .filter-glow {
    opacity: 1;
}

/* Grille de portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Carte de portfolio */
.portfolio-card {
    position: relative;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.25);
}

.portfolio-card-inner {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(60px);
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.portfolio-card:hover .portfolio-tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    font-size: 12px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.portfolio-title {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    position: relative;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.portfolio-card:hover .portfolio-links {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #eb7b02;
    transform: translateY(-5px);
}

.portfolio-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(39, 168, 127, 0.8);
    border-right: 2px solid rgba(39, 168, 127, 0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-decoration {
    opacity: 1;
}

/* Section Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.client-item {
    padding: 20px;
}

.client-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.client-item-inner img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.client-item-inner:hover img {
    filter: grayscale(0);
    transform: scale(0.9);
}

.client-hover {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    text-align: center;
    padding: 8px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.client-item-inner:hover .client-hover {
    transform: translateY(0);
}

.client-item-inner:hover {
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.2);
}

/* Section Témoignages Modernisée */
.testimonial-card {
    margin: 20px;
    position: relative;
}

.testimonial-card-inner {
    position: relative;
    padding: 40px 30px 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.testimonial-card-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27a87f, #eb7b02);
}

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

.testimonial-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #27a87f;
    font-size: 22px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

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

.testimonial-author-img {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #27a87f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.testimonial-author-info p {
    color: #777;
    font-size: 14px;
}

.testimonial-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid rgba(39, 168, 127, 0.2);
    border-right: 2px solid rgba(39, 168, 127, 0.2);
}

/* CTA Section Modernisée */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48cmVjdCBmaWxsPSJub25lIiBzdHJva2U9IiMyN2E4N2YiIHN0cm9rZS13aWR0aD0iMC41IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHg9IjAiIHk9IjAiIG9wYWNpdHk9IjAuMiI+PC9yZWN0PjxjaXJjbGUgZmlsbD0iIzI3YTg3ZiIgY3g9IjE1IiBjeT0iMTUiIHI9IjEiIG9wYWNpdHk9IjAuMiI+PC9jaXJjbGU+PGNpcmNsZSBmaWxsPSIjZWI3YjAyIiBjeD0iMzAiIGN5PSIzMCIgcj0iMiIgb3BhY2l0eT0iMC4xNSI+PC9jaXJjbGU+PHJlY3QgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZWI3YjAyIiBzdHJva2Utd2lkdGg9IjAuNSIgd2lkdGg9IjUiIGhlaWdodD0iNSIgeD0iNDUiIHk9IjQ1IiBvcGFjaXR5PSIwLjEiPjwvcmVjdD48L3N2Zz4=');
    opacity: 0.15;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(39, 168, 127, 0.1);
    overflow: hidden;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.05), rgba(235, 123, 2, 0.05));
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
}

.cta-shape-1 {
    top: 60px;
    right: 60px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    animation: float 8s infinite ease-in-out;
}

.cta-shape-2 {
    bottom: 40px;
    left: 60px;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(235, 123, 2, 0.3);
    animation: float 6s infinite ease-in-out reverse;
}

.cta-shape-3 {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 1px dotted rgba(39, 168, 127, 0.2);
    animation: pulse 10s infinite ease-in-out;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
}

.cta-particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
    background: rgba(39, 168, 127, 0.5);
    animation: float 5s infinite ease-in-out;
}

.cta-particle-2 {
    bottom: 30%;
    right: 15%;
    width: 12px;
    height: 12px;
    background: rgba(235, 123, 2, 0.5);
    animation: float 7s infinite ease-in-out reverse;
}

.cta-particle-3 {
    top: 70%;
    left: 40%;
    width: 15px;
    height: 15px;
    background: rgba(39, 168, 127, 0.5);
    animation: pulse 8s infinite ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39, 168, 127, 0.5), transparent);
}

.cta-circuit-1 {
    top: 30%;
    left: 0;
    width: 100%;
    animation: circuit 10s infinite ease-in-out;
}

.cta-circuit-2 {
    bottom: 40%;
    left: 0;
    width: 100%;
    animation: circuit 12s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 30px;
    color: #27a87f;
}

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.3);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse 3s infinite;
}

.cta-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #333;
}

.cta-content p {
    margin-bottom: 30px;
    color: #666;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(39, 168, 127, 0.4);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    border: 1px solid rgba(39, 168, 127, 0.5);
    color: #333;
}

.cta-btn-outline:hover {
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    transform: translateY(-5px);
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.cta-stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.cta-stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.cta-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #27a87f;
    margin-bottom: 5px;
    line-height: 1;
}

.cta-stat-text {
    font-size: 14px;
    color: #666;
}

.cta-stat-icon {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 14px;
    color: #eb7b02;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes circuit {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-stats {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .portfolio-filter {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item:not(:last-child):after {
        display: none;
    }
}

/* Testimonials Section Redesign */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.06) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.04) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.testimonials-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 5;
}

.testimonials-section .section-title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.testimonials-section .section-subtitle {
    color: var(--primary-color);
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    position: relative;
    height: 100%;
    cursor: default;
    perspective: 1000px;
}

.testimonial-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px 30px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform-style: preserve-3d;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.2);
}

.testimonial-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    color: var(--primary-color);
    font-size: 28px;
    opacity: 0.6;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 100px;
    position: relative;
    padding-left: 10px;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-author-img {
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author-img {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

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

.testimonial-author-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    box-shadow: 0 3px 8px rgba(39, 168, 127, 0.3);
}

.testimonial-author-info {
    flex-grow: 1;
}

.author-name {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

.testimonial-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border: 1px dashed rgba(235, 123, 2, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-decoration {
    width: 60px;
    height: 60px;
    border-color: rgba(235, 123, 2, 0.4);
}

.testimonials-cta {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonials-btn i {
    margin-left: 10px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.3);
    color: white;
}

.testimonials-btn:hover i {
    transform: translateX(5px);
}

.testimonials-btn::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.7s ease;
}

.testimonials-btn:hover::before {
    left: 100%;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px 20px;
    }
    
    .testimonial-icon {
        top: 15px;
        left: 20px;
        font-size: 24px;
    }
    
    .testimonial-content {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .testimonials-cta {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white-color);
}

.form-control:focus {
    border-color: var(--dark-color);
    outline: none;
    box-shadow: none;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.input-group {
    display: flex;
    position: relative;
}

.input-group .form-control {
    flex: 1;
}

.input-group-append {
    position: relative;
    z-index: 5;
}

.input-group .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 20px;
    height: 100%;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer redesign - Style moderne */
footer {
    background-color: #0a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(39, 168, 127, 0.15);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px),
        repeating-linear-gradient(90deg, rgba(39, 168, 127, 0.03) 0px, rgba(39, 168, 127, 0.03) 1px, transparent 1px, transparent 25px);
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) 2fr;
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-logo {
    padding-right: 30px;
}

.footer-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 10px rgba(39, 168, 127, 0.3));
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(39, 168, 127, 0.4) 0%, transparent 80%);
    filter: blur(20px);
    z-index: 1;
    pointer-events: none;
    animation: pulse 5s ease-in-out infinite;
}

.footer-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.social-links a:hover::before {
    transform: translateX(100%);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.footer-title {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title-decoration {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-size: 0.95rem;
}

.footer-nav li a i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-nav li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-nav li a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.2);
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(39, 168, 127, 0.3);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    max-width: 100%;
}

.footer-section {
    flex: 1;
    min-width: 160px;
    margin-bottom: 30px;
    padding-right: 20px;
    width: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 25px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-tech-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.tech-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.tech-line-1 {
    width: 50%;
    top: 50px;
    left: -10%;
    animation: tech-line-move 15s linear infinite;
}

.tech-line-2 {
    width: 30%;
    top: 150px;
    right: -5%;
    animation: tech-line-move 12s linear infinite reverse;
}

.tech-line-3 {
    width: 40%;
    bottom: 100px;
    left: 30%;
    animation: tech-line-move 18s linear infinite;
}

@keyframes tech-line-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-intro {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-section {
        padding-right: 0;
    }
    
    .footer-contact-text {
        font-size: 0.85rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Modern Page Header */
.modern-header {
    position: relative;
    background: linear-gradient(to right, #0a0a0a, #131313);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.modern-header .container {
    position: relative;
    z-index: 5;
}

.modern-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 0;
    align-items: center;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    position: relative;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
}

.header-tech-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0.7;
    z-index: 2;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.mission-card-inner, .vision-card-inner {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.mission-card:hover .mission-card-inner,
.vision-card:hover .vision-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: rotate(5deg);
    transition: all 0.5s ease;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 0 10px 20px rgba(235, 123, 2, 0.2);
}

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

.mission-card-inner h3, 
.vision-card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-card-inner p, 
.vision-card-inner p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(39, 168, 127, 0.2);
    border-radius: 20px;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.vision-card .card-decoration {
    border-color: rgba(235, 123, 2, 0.2);
}

.mission-card:hover .card-decoration,
.vision-card:hover .card-decoration {
    transform: rotate(60deg) scale(1.1);
}

/* Values Section */
.values-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.value-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(39, 168, 127, 0.1);
    transition: all 0.5s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    transform: scale(1.1);
}

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

.value-card-inner p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.5s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.value-card:hover .value-hover-effect {
    transform: scaleX(1);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.team-card-inner {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.team-card:hover .team-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-content p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color));
    color: white;
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.2) 0%, 
                transparent 50%, 
                rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 5;
}

.light-title h2 {
    color: white;
}

.light-title p {
    color: rgba(255, 255, 255, 0.85);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    perspective: 1000px;
}

.stat-card-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover .stat-card-inner {
    transform: translateY(-10px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.stat-card:hover .stat-icon {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.stat-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.partners-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-item {
    perspective: 1000px;
}

.partner-item-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-item:hover .partner-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

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

/* Responsive styles for the About page */
@media (max-width: 992px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .modern-header {
        padding: 100px 0 60px;
    }
    
    .modern-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid, .values-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-header {
        padding: 80px 0 50px;
    }
    
    .modern-header h1 {
        font-size: 2rem;
    }
    
    .mission-card-inner, .vision-card-inner, .value-card-inner, .stat-card-inner {
        padding: 25px;
    }
    
    .team-grid, .values-grid, .stats-grid, .partners-carousel {
        grid-template-columns: 1fr;
    }
    
    .card-icon, .value-icon, .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-img {
        height: 250px;
    }
    
    .partner-item-inner {
        height: 100px;
    }
}

.breadcrumb-item a span,
.breadcrumb-item span {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.breadcrumb-item a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover span {
    transform: translateY(-2px);
}

.breadcrumb-item a:hover span::after {
    width: 100%;
}

.breadcrumb-item.active span {
    color: white;
    font-weight: 500;
}

/* HomePage Hero specific */
.home-page .hero-new {
    margin-top: 0; /* Suppression de la marge négative */
    padding-top: 70px; /* Espace pour le header */
    height: 100vh;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-new {
    position: relative;
    min-height: 100vh; 
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    margin: 0;
    padding: 70px 0 0 0; /* Padding-top pour compenser le header */
    z-index: 1;
    box-sizing: border-box;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(39, 168, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 168, 127, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: -1;
}

.hero-new-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    height: calc(100vh - 70px); /* Hauteur ajustée pour tenir compte du header */
    box-sizing: border-box;
}

.hero-new-content {
    z-index: 2;
    padding-right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-new-image {
    position: relative;
    width: 90%; /* Réduit de 100% (implicite) */
    margin: 0 auto;
    z-index: 3;
}

.hero-new-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transform: scale(0.9); /* Ajout pour réduire la taille de l'image */
}

.hero-new-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    filter: blur(60px);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

.hero-new-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    filter: blur(40px);
    z-index: 1;
    animation: pulse 6s ease-in-out infinite reverse;
}

.hero-new h1 {
    font-size: 2.4rem; /* Réduit de 2.8rem */
    line-height: 1.2; /* Réduit de 1.3 */
    margin-bottom: 20px; /* Réduit de 25px */
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 12px; /* Réduit de 15px */
    color: white;
    width: 100%;
}

.hero-new h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hero-new h1 span {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.hero-new-text {
    font-size: 0.9rem; /* Réduit de 1rem */
    line-height: 1.6; /* Réduit de 1.7 */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px; /* Réduit de 30px */
    max-width: 550px; /* Réduit de 600px */
    width: 100%;
}

.hero-new-btns {
    display: flex;
    gap: 15px; /* Réduit de 20px */
    margin-top: 12px; /* Réduit de 15px */
    width: 100%;
}

.hero-new-btn {
    display: inline-block;
    padding: 10px 24px; /* Réduit de 12px 28px */
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px; /* Réduit de 13px */
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-new-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.3);
}

.hero-new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(39, 168, 127, 0.4);
    color: white;
}

.hero-new-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px var(--accent-color);
}

.hero-new-btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(235, 123, 2, 0.3);
}

.hero-new-btn::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: all 0.6s ease;
    z-index: -1;
}

.hero-new-btn:hover::before {
    left: 100%;
}

.hero-new-tag {
    position: absolute;
    bottom: 40px;
    left: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    letter-spacing: 1px;
    z-index: 10;
}

.tag-item {
    transition: color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    padding: 0 5px;
}

.tag-item:hover {
    color: var(--primary-color);
}

.tag-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.8;
}

.hero-new-scroll {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
}

.hero-new-scroll .scroll-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-new-scroll .scroll-link:hover {
    color: var(--primary-color);
}

.hero-new-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin-top: 15px;
}

.hero-new-badge {
    position: absolute;
    top: 80px; /* Réduit de 90px */
    right: 35px; /* Réduit de 40px */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 7px 16px; /* Réduit de 8px 18px */
    border-radius: 30px;
    font-size: 12px; /* Réduit de 13px */
    display: flex;
    align-items: center;
    gap: 8px; /* Réduit de 10px */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.hero-new-badge i {
    color: var(--primary-color);
}

/* Responsive hero */
@media (max-width: 992px) {
    .hero-new {
        padding-top: 60px;
    }
    
    .hero-new-container {
        grid-template-columns: 1fr;
        padding: 50px 40px;
        gap: 30px;
        height: calc(100vh - 60px);
    }
    
    .hero-new-content {
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    
    .hero-new h1 {
        font-size: 2.2rem; /* Réduit de 2.4rem (valeur implicite) */
        text-align: center;
    }
    
    .hero-new h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-new-text {
        text-align: center;
        max-width: 80%;
    }
    
    .hero-new-btns {
        justify-content: center;
    }
    
    .hero-new-badge {
        top: 100px;
    }
}

@media (max-width: 768px) {
    .hero-new {
        height: 100vh;
        min-height: 100vh;
        padding-top: 50px;
    }
    
    .hero-new-container {
        padding: 30px 25px 50px;
        height: calc(100vh - 50px);
    }
    
    .hero-new h1 {
        font-size: 24px; /* Réduit de 28px */
    }
    
    .hero-new-text {
        font-size: 13px; /* Réduit de 14px */
    }
    
    .hero-new-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-new-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-new-badge {
        top: 80px;
        right: 20px;
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .hero-new-tag,
    .hero-new-scroll {
        display: none;
    }
}

/* CTA Section Redesign */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #131313 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.cta-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(39, 168, 127, 0.08) 0%, 
                transparent 50%, 
                rgba(235, 123, 2, 0.08) 100%);
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 10;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(39, 168, 127, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.08) 0%, transparent 70%);
    filter: blur(30px);
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse 8s infinite alternate ease-in-out;
}

.cta-particle {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 2;
}

.cta-particle-1 {
    width: 5px;
    height: 5px;
    top: 20%;
    right: 15%;
    animation: float 10s infinite alternate ease-in-out;
}

.cta-particle-2 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 10%;
    background-color: var(--accent-color);
    animation: float 12s infinite alternate-reverse ease-in-out;
}

.cta-particle-3 {
    width: 6px;
    height: 6px;
    top: 70%;
    right: 10%;
    animation: float 8s infinite alternate ease-in-out;
}

.cta-circuit-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.2;
    z-index: 1;
}

.cta-circuit-1 {
    width: 40%;
    top: 30%;
    right: 0;
    animation: circuit-move 15s linear infinite;
}

.cta-circuit-2 {
    width: 30%;
    bottom: 40%;
    left: 0;
    animation: circuit-move 12s linear infinite reverse;
}

@keyframes circuit-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(39, 168, 127, 0.3);
    transition: all 0.5s ease;
    overflow: hidden;
}

.cta-wrapper:hover .cta-icon {
    transform: rotateY(180deg) scale(1.1);
}

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

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

.cta-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 3s infinite alternate ease-in-out;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    padding: 0 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 1;
}

.cta-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.25);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 168, 127, 0.35);
    color: white;
}

.cta-btn-outline {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 2px var(--primary-color);
}

.cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.cta-btn::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: all 0.6s ease;
    z-index: -1;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.cta-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(39, 168, 127, 0.1);
    border-color: rgba(39, 168, 127, 0.2);
}

.cta-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.cta-stat-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-stat-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.cta-stat-item:hover .cta-stat-icon {
    opacity: 1;
    transform: scale(1);
}

.cta-tech-tag {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 8px;
}

.tech-tag-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.tech-tag-item:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-3px);
    border-color: rgba(39, 168, 127, 0.2);
}

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

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

/* Responsive styles */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-wrapper {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2.3rem;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cta-stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-stat-item {
        width: 100%;
    }
    
    .cta-tech-tag {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Services Page Redesign */
.services-intro {
    position: relative;
    padding: 100px 0 70px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.services-intro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(39, 168, 127, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(39, 168, 127, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
    z-index: 1;
}

.services-intro .container {
    position: relative;
    z-index: 2;
}

.services-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.service-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    width: 160px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
}

.service-category-item:hover::before {
    width: 100%;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
    transition: all 0.5s ease;
}

.service-category-item:hover .category-icon {
    transform: rotateY(180deg);
}

.service-category-item span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}

.service-category-item:hover span {
    color: var(--primary-color);
}

/* Service Detail Section */
.service-detail-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.service-alt {
    background-color: #f8f9fa;
}

.service-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.03) 2px, transparent 2px);
    background-size: 30px 30px, 25px 25px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 1;
}

.service-bg-alt {
    background-image: 
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(39, 168, 127, 0.03) 2px, transparent 2px);
}

.service-detail-card {
    position: relative;
    z-index: 2;
}

.service-detail-card-inner {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
}

.service-detail-card:hover .service-detail-card-inner {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    border-color: rgba(39, 168, 127, 0.1);
}

.service-detail-image {
    position: relative;
    margin-bottom: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
}

.service-detail-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-detail-card:hover .image-overlay {
    opacity: 1;
}

.tech-tags {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-detail-card:hover .tech-tags {
    opacity: 1;
    transform: translateY(0);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.2);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(39, 168, 127, 0.3);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.5s ease;
}

.service-detail-card:hover .image-decoration {
    transform: rotate(60deg) scale(1.1);
    border-color: rgba(39, 168, 127, 0.5);
}

.service-detail-content {
    padding: 20px 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-detail-card:hover .service-icon {
    transform: rotateY(180deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.8) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0.5;
    animation: pulse 3s infinite alternate ease-in-out;
}

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.service-detail-content p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    margin-top: 30px;
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    background: rgba(39, 168, 127, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.05);
}

.service-features-list li:hover {
    background: rgba(39, 168, 127, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.1);
}

.feature-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-features-list li:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.feature-text {
    flex-grow: 1;
}

.feature-text h4 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

.service-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-btn {
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(39, 168, 127, 0.3);
    color: white;
    text-decoration: none;
}

.service-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-btn::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: all 0.6s ease;
    z-index: -1;
}

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

.service-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section Redesign */
.process-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
}

.process-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(39, 168, 127, 0.07) 2px, transparent 2px),
        radial-gradient(rgba(235, 123, 2, 0.05) 2px, transparent 2px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    opacity: 0.5;
    z-index: 0;
}

.process-container {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.process-timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), var(--accent-color), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 1;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-card {
    perspective: 1000px;
}

.process-card-inner {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-card:hover .process-card-inner {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(39, 168, 127, 0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.2);
    z-index: 3;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(39, 168, 127, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 10px;
    transition: all 0.5s ease;
}

.process-card:hover .process-icon {
    transform: rotateY(180deg);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.15);
}

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

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

.process-card-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 2px dashed rgba(235, 123, 2, 0.2);
    border-radius: 10px;
    transform: rotate(45deg);
    pointer-events: none;
    transition: all 0.4s ease;
}

.process-card:hover .process-card-decoration {
    width: 50px;
    height: 50px;
    border-color: rgba(235, 123, 2, 0.4);
}

/* Responsive styles */
@media (max-width: 992px) {
    .service-detail-section {
        padding: 70px 0;
    }
    
    .service-detail-card-inner {
        padding: 30px;
    }
    
    .service-detail-content {
        padding-top: 30px;
    }
    
    .service-detail-content h2 {
        font-size: 2rem;
    }
    
    .service-features-list {
        grid-template-columns: 1fr;
    }
    
    .process-section {
        padding: 70px 0;
    }
    
    .process-timeline-line {
        display: none;
    }
    
    .services-categories {
        gap: 15px;
    }
    
    .service-category-item {
        width: 140px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 50px 0;
    }
    
    .service-detail-card-inner {
        padding: 25px;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .service-btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-stat {
        align-self: center;
    }
    
    .services-categories {
        justify-content: center;
    }
    
    .service-category-item {
        width: 130px;
        padding: 15px 10px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-category-item span {
        font-size: 12px;
    }
}

/* Styles pour la page Blog modernisée */

/* Zone de recherche */
.blog-search {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 50px;
    border: 1px solid rgba(39, 168, 127, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-wrapper:hover, 
.search-wrapper:focus-within {
    border-color: rgba(39, 168, 127, 0.5);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.15);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-size: 16px;
    color: #333;
}

.search-button {
    width: 50px;
    border: none;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    opacity: 0.9;
}

.search-glow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #27a87f, #eb7b02, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.search-wrapper:focus-within .search-glow {
    transform: translateX(100%);
}

/* Catégories de blog */
.blog-categories {
    margin-bottom: 50px;
}

.blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.blog-categories li {
    margin: 5px;
}

.blog-categories a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.blog-categories a span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-categories a:hover span,
.blog-categories a.active span {
    color: white;
}

.category-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 1;
}

.blog-categories a:hover .category-indicator,
.blog-categories a.active .category-indicator {
    opacity: 1;
    transform: scale(1);
}

/* Article en vedette */
.featured-article {
    position: relative;
    overflow: hidden;
}

.featured-article-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    overflow: hidden;
}

.date-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.3);
    filter: blur(10px);
    z-index: -1;
}

.article-date .day {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.article-date .month,
.article-date .year {
    font-size: 14px;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.1), rgba(235, 123, 2, 0.1));
    border: 1px solid rgba(39, 168, 127, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.article-category-badge i {
    margin-right: 8px;
    color: #27a87f;
}

.article-category-badge span {
    color: #333;
    font-weight: 500;
}

.featured-article-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.article-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.read-time {
    display: flex;
    align-items: center;
    color: #666;
}

.read-time i {
    margin-right: 8px;
    color: #eb7b02;
}

/* Grille d'articles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Carte d'article */
.blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.blog-card-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover .blog-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.15);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.blog-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(39, 168, 127, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.date-inner {
    position: relative;
    z-index: 2;
}

.blog-content {
    padding: 25px;
    position: relative;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-category i {
    margin-right: 8px;
    font-size: 12px;
}

.blog-category:hover {
    background: #27a87f;
    color: white;
    transform: translateY(-3px);
    text-decoration: none;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: #27a87f;
    text-decoration: none;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: #27a87f;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

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

.blog-link:hover {
    color: #eb7b02;
    text-decoration: none;
}

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

.blog-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-decoration {
    opacity: 1;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination ul {
    display: flex;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(39, 168, 127, 0.2);
    font-weight: 500;
}

.pagination a:hover,
.pagination a.active {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    flex: 1;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(39, 168, 127, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: #27a87f;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.input-focus-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #27a87f, #eb7b02, #27a87f);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.newsletter-form .form-control:focus ~ .input-focus-bg {
    transform: scaleX(1);
    animation: gradientShift 3s linear infinite;
}

.form-check {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.form-check input {
    margin-right: 10px;
}

.form-check label {
    font-size: 14px;
    color: #666;
}

.form-check a {
    color: #27a87f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.form-check a:hover {
    color: #eb7b02;
}

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

/* Responsive */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .featured-article-details h3 {
        font-size: 24px;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .blog-categories a {
        white-space: nowrap;
    }
    
    .article-date {
        padding: 10px;
    }
    
    .article-date .day {
        font-size: 20px;
    }
    
    .article-date .month,
    .article-date .year {
        font-size: 12px;
    }
    
    .newsletter-content h2 {
        font-size: 26px;
    }
}

/* Styles pour la page Contact modernisée */

/* Cartes d'information de contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    position: relative;
}

.contact-card-inner {
    position: relative;
    padding: 30px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    border: 1px solid rgba(39, 168, 127, 0.05);
}

.contact-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.1);
}

.contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    font-size: 24px;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
    transition: all 0.3s ease;
}

.contact-card-inner:hover .contact-icon {
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
}

.contact-card-inner:hover .icon-glow {
    background: rgba(39, 168, 127, 0.4);
    transform: scale(1.2);
}

.contact-text h4 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.contact-text a {
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-text a:hover {
    color: #27a87f;
}

.contact-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-card-inner:hover .contact-decoration {
    opacity: 1;
}

/* Section Formulaire de Contact */
.contact-form-section {
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Carte Formulaire */
.form-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-card-inner {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    font-size: 28px;
    color: #27a87f;
}

.form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.form-header p {
    color: #666;
}

.input-wrapper {
    position: relative;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(39, 168, 127, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #27a87f;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.1);
}

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

.input-focus-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #27a87f, #eb7b02);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.form-control:focus ~ .input-focus-bg {
    transform: scaleX(1);
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check input {
    margin-top: 5px;
    margin-right: 10px;
}

.form-check label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.form-check a {
    color: #27a87f;
    text-decoration: none;
}

.form-check a:hover {
    color: #eb7b02;
}

.form-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: linear-gradient(45deg, #27a87f, #eb7b02);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.form-btn span {
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.form-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(39, 168, 127, 0.8), rgba(235, 123, 2, 0.8));
    filter: blur(15px);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(39, 168, 127, 0.3);
}

.form-btn:hover i {
    transform: translateX(5px);
}

.form-btn:hover .btn-glow {
    opacity: 0.6;
}

.form-decoration {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-top: 2px solid rgba(39, 168, 127, 0.3);
    border-right: 2px solid rgba(39, 168, 127, 0.3);
}

/* Carte Map */
.map-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-card-inner {
    position: relative;
    background: white;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 25px;
    display: flex;
    align-items: center;
}

.map-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    font-size: 24px;
    color: #27a87f;
}

.map-header h3 {
    font-size: 22px;
    color: #333;
    margin: 0;
}

.contact-map {
    position: relative;
    flex: 1;
    min-height: 300px;
}

.contact-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-stats {
    display: flex;
    padding: 20px 25px;
    background: rgba(39, 168, 127, 0.05);
}

.map-stat-item {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #27a87f;
    display: block;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
}

.map-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
}

/* Section Réseaux Sociaux */
.social-media-section {
    position: relative;
}

.social-media-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    display: block;
    text-decoration: none;
}

.social-card-inner {
    position: relative;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 168, 127, 0.1);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.1);
    color: #27a87f;
    font-size: 30px;
    transition: all 0.3s ease;
}

.social-card.facebook .social-icon:hover {
    background: #3b5998;
    color: white;
}

.social-card.twitter .social-icon:hover {
    background: #1da1f2;
    color: white;
}

.social-card.linkedin .social-icon:hover {
    background: #0077b5;
    color: white;
}

.social-card.instagram .social-icon:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
}

.social-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.social-card-inner:hover .social-name {
    color: #27a87f;
}

.social-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-right: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-card-inner:hover .social-decoration {
    opacity: 1;
}

/* Section FAQ */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    padding: 10px;
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(39, 168, 127, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-header {
    position: relative;
}

.faq-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    color: #27a87f;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-button:hover .faq-title {
    color: #27a87f;
}

.faq-button:not(.collapsed) .faq-icon {
    background: #27a87f;
    color: white;
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .contact-map-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-map {
        min-height: 350px;
    }
    
    .social-media-links {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 767px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-card-inner,
    .map-card-inner {
        padding: 25px 20px;
    }
    
    .form-icon,
    .map-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .form-header h3,
    .map-header h3 {
        font-size: 20px;
    }
    
    .social-media-links {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 16px;
    }
}

/* Header Futuriste Responsive */
.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    background-size: 10px 10px;
    opacity: 0.8;
    z-index: -1;
}

.header-circuit-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(39, 168, 127, 0.1) 0%, rgba(39, 168, 127, 0.4) 100%);
    height: 2px;
    z-index: 1;
}

.circuit-line-1 {
    width: 40%;
    bottom: 0;
    left: 0;
    animation: circuit-line-move 10s infinite alternate ease-in-out;
}

.circuit-line-2 {
    width: 30%;
    top: 10px;
    right: 0;
    animation: circuit-line-move 8s infinite alternate-reverse ease-in-out;
}

.circuit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27a87f;
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.8);
    z-index: 2;
}

.circuit-dot-1 {
    bottom: 0;
    left: 20%;
    animation: pulse 3s infinite;
}

.circuit-dot-2 {
    bottom: 0;
    left: 40%;
    animation: pulse 4s infinite 1s;
}

.circuit-dot-3 {
    top: 10px;
    right: 30%;
    animation: pulse 5s infinite 2s;
}

@keyframes circuit-line-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(20px);
    }
}

/* Logo Animation */
.logo {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.logo a {
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo a:hover .logo-glow {
    opacity: 1;
}

/* Navigation Links */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    position: relative;
    margin: 0 5px;
}

.nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #27a87f 0%, #eb7b02 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: 1;
}

.nav-links a:hover .nav-hover-effect,
.nav-links a.active .nav-hover-effect {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 168, 127, 0.1);
    z-index: -1;
    border-radius: 4px;
}

/* Get Started Button */
.get-started-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-left: 10px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.3);
}

.get-started-btn span {
    position: relative;
    z-index: 2;
}

.get-started-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eb7b02 0%, #d26a00 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.5);
}

.get-started-btn:hover::before {
    opacity: 1;
}

.btn-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.8) 0%, rgba(235, 123, 2, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.get-started-btn:hover .btn-glow {
    transform: scale(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
}

.menu-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 50%;
}

.menu-toggle:hover .menu-glow,
.menu-toggle.active .menu-glow {
    opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-inner {
    position: relative;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.mobile-nav-decoration::before,
.mobile-nav-decoration::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(39, 168, 127, 0.1) 0%, rgba(39, 168, 127, 0) 100%);
    height: 1px;
}

.mobile-nav-decoration::before {
    top: 0;
    left: 0;
    width: 100%;
}

.mobile-nav-decoration::after {
    bottom: 0;
    right: 0;
    width: 100%;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links a {
    position: relative;
    display: block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #27a87f 0%, rgba(39, 168, 127, 0) 100%);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #27a87f;
    padding-left: 15px;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
    width: 60px;
}

.mobile-cta {
    margin-top: auto;
    padding: 20px 0;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.3);
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #eb7b02 0%, #d26a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 168, 127, 0.5);
}

.mobile-cta-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mobile-cta-btn:hover i {
    transform: translateX(5px);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.mobile-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin: 0 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    background: #27a87f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.5);
}

/* Responsive Header Styles */
@media (max-width: 991px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    header.header-scrolled {
        height: 70px;
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .circuit-line-1, 
    .circuit-line-2 {
        display: none;
    }
    
    .mobile-nav-links a {
        font-size: 16px;
    }
    
    .mobile-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .mobile-social-links a {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    
    .mobile-nav-inner {
        padding: 20px 15px;
    }
}

/* Script pour la navigation responsive */
document.addEventListener('DOMContentLoaded', function() {
    const menuToggle = document.querySelector('.menu-toggle');
    const mobileNav = document.querySelector('.mobile-nav');
    const body = document.querySelector('body');
    const header = document.querySelector('#header');

    // Toggle menu on click
    menuToggle.addEventListener('click', function() {
        this.classList.toggle('active');
        mobileNav.classList.toggle('active');
        body.classList.toggle('menu-open');
    });

    // Header scroll effect
    window.addEventListener('scroll', function() {
        if (window.scrollY > 50) {
            header.classList.add('header-scrolled');
        } else {
            header.classList.remove('header-scrolled');
        }
    });

    // Close menu on window resize
    window.addEventListener('resize', function() {
        if (window.innerWidth > 991 && mobileNav.classList.contains('active')) {
            menuToggle.classList.remove('active');
            mobileNav.classList.remove('active');
            body.classList.remove('menu-open');
        }
    });

    // Close menu when clicking on a mobile nav link
    const mobileNavLinks = document.querySelectorAll('.mobile-nav-links a');
    mobileNavLinks.forEach(link => {
        link.addEventListener('click', function() {
            menuToggle.classList.remove('active');
            mobileNav.classList.remove('active');
            body.classList.remove('menu-open');
        });
    });
});

// ... existing code ...

/* Styles pour la page d'accueil modernisée */

/* Section Hero Futuriste */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.7);
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.8);
    animation: float 15s infinite ease-in-out;
}

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

.particle-2 {
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    width: 8px;
    height: 8px;
}

.particle-3 {
    top: 40%;
    right: 15%;
    animation-delay: 6s;
    background: rgba(235, 123, 2, 0.7);
    box-shadow: 0 0 10px rgba(235, 123, 2, 0.8);
}

.particle-4 {
    top: 80%;
    right: 25%;
    animation-delay: 9s;
    width: 4px;
    height: 4px;
}

.particle-5 {
    top: 30%;
    left: 50%;
    animation-delay: 12s;
    background: rgba(235, 123, 2, 0.7);
    box-shadow: 0 0 10px rgba(235, 123, 2, 0.8);
}

.hero-circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    opacity: 0.5;
}

.circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(39, 168, 127, 0) 0%, rgba(39, 168, 127, 0.8) 50%, rgba(39, 168, 127, 0) 100%);
}

.circuit-line-1 {
    width: 30%;
    bottom: 20%;
    left: 0;
    animation: circuit-line-move 8s infinite alternate ease-in-out;
}

.circuit-line-2 {
    width: 20%;
    top: 30%;
    right: 0;
    animation: circuit-line-move 6s infinite alternate-reverse ease-in-out;
}

.circuit-line-3 {
    width: 40%;
    top: 60%;
    left: 30%;
    animation: circuit-line-move 10s infinite alternate ease-in-out;
}

@keyframes circuit-line-move {
    0% {
        transform: translateX(0) scaleX(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translateX(30px) scaleX(1.2);
        opacity: 0.8;
    }
}

.hero-new-content h1 .text-gradient,
h2 .text-gradient,
.text-gradient {
    background: linear-gradient(90deg, #27a87f 0%, #eb7b02 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #27a87f 0%, #eb7b02 100%);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hero-new-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
    margin: 0 10px 10px 0;
}

.hero-new-btn span {
    position: relative;
    z-index: 3;
}

.hero-new-btn i {
    margin-left: 10px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.hero-new-btn:hover i {
    transform: translateX(5px);
}

.hero-new-btn-primary {
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(39, 168, 127, 0.3);
}

.hero-new-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 168, 127, 0.5);
    color: #fff;
}

.hero-new-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-new-btn-outline:hover {
    background: rgba(235, 123, 2, 0.9);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 123, 2, 0.3);
    border-color: transparent;
}

.btn-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(235, 123, 2, 0.8) 0%, rgba(235, 123, 2, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.hero-new-btn:hover .btn-glow {
    transform: scale(1);
}

.hero-tech-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
}

.tech-tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(39, 168, 127, 0.1);
    border: 1px solid rgba(39, 168, 127, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.tech-tag-item i {
    margin-right: 8px;
    color: #27a87f;
}

.tech-tag-item:hover {
    background: rgba(39, 168, 127, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.2);
}

.hero-new-image {
    position: relative;
}

.image-backdrop {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.2) 0%, rgba(39, 168, 127, 0) 70%);
    z-index: -1;
}

.hero-new-image img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(39, 168, 127, 0.1) 0%, rgba(235, 123, 2, 0.1) 100%);
    z-index: 3;
    pointer-events: none;
    border-radius: 10px;
}

.image-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(39, 168, 127, 0.8) 50%, transparent 100%);
    animation: scanLine 4s infinite ease-in-out;
    z-index: 4;
    pointer-events: none;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.image-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #27a87f;
    z-index: 4;
}

.image-corner-1 {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.image-corner-2 {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
}

.image-corner-3 {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
}

.image-corner-4 {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.hero-new-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(39, 168, 127, 0.3);
}

.hero-new-badge i {
    margin-right: 10px;
    color: #27a87f;
    font-size: 16px;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(39, 168, 127, 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}

.hero-new-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-new-scroll .scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-new-scroll .scroll-arrow {
    margin-top: 10px;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.hero-new-scroll .scroll-link:hover {
    color: #27a87f;
}

/* Services Section Modernisée */
.services-section-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(39, 168, 127, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.service-card-inner {
    position: relative;
    padding: 30px;
    background: rgba(25, 25, 25, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border: 1px solid rgba(39, 168, 127, 0.1);
}

.service-card-inner:hover {
    transform: translateY(-10px);
    background: rgba(30, 30, 30, 0.9);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(39, 168, 127, 0.3);
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: #27a87f;
    transition: all 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-inner:hover .service-icon {
    background: rgba(39, 168, 127, 0.2);
}

.service-card-inner:hover .icon-glow {
    opacity: 1;
}

.service-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-left: 2px solid rgba(39, 168, 127, 0.3);
    border-bottom: 2px solid rgba(39, 168, 127, 0.3);
    border-radius: 0 0 0 10px;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.3s ease;
}

.service-card-inner:hover .service-decoration {
    opacity: 1;
    transform: translate(0, 0);
}

.services-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.services-btn span {
    position: relative;
    z-index: 3;
}

.services-btn i {
    margin-left: 10px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease;
}

.services-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.5);
    color: #fff;
}

.services-btn:hover i {
    transform: translateX(5px);
}

/* About Section Modernisée */
.about-img-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.about-img-badge span {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.about-img-badge small {
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.sub-heading {
    position: relative;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
}

.sub-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #27a87f 0%, rgba(39, 168, 127, 0) 100%);
    border-radius: 5px;
}

.counter-icon {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.counter-icon i {
    font-size: 20px;
    color: #27a87f;
}

.counter-icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-counter:hover .counter-icon-glow {
    opacity: 1;
}

.feature-icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon-glow {
    opacity: 1;
}

.about-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
    z-index: 1;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.5);
    color: #fff;
}

/* Portfolio Section Modernisée */
.filter-text {
    position: relative;
    z-index: 2;
}

.filter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-filter:hover .filter-glow,
.portfolio-filter.active .filter-glow {
    opacity: 1;
}

.portfolio-card-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.portfolio-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card-inner:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(39, 168, 127, 0.5);
    border-right: 2px solid rgba(39, 168, 127, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.portfolio-card-inner:hover .portfolio-decoration {
    opacity: 1;
    transform: translate(5px, -5px);
}

.portfolio-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    z-index: 1;
}

.portfolio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.5);
    color: #fff;
}

/* Testimonials Section Modernisée */
.testimonials-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
    z-index: 1;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.5);
    color: #fff;
}

/* CTA Section Modernisée */
.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(39, 168, 127, 0.7);
    box-shadow: 0 0 10px rgba(39, 168, 127, 0.8);
    animation: float 15s infinite ease-in-out;
}

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

.cta-particle-2 {
    bottom: 30%;
    right: 20%;
    animation-delay: 5s;
    background: rgba(235, 123, 2, 0.7);
    box-shadow: 0 0 10px rgba(235, 123, 2, 0.8);
}

.cta-particle-3 {
    top: 60%;
    left: 40%;
    animation-delay: 10s;
    width: 8px;
    height: 8px;
}

.cta-circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(39, 168, 127, 0) 0%, rgba(39, 168, 127, 0.8) 50%, rgba(39, 168, 127, 0) 100%);
    animation: circuit-move 6s infinite alternate ease-in-out;
}

.cta-circuit-1 {
    width: 20%;
    bottom: 30%;
    left: 10%;
}

.cta-circuit-2 {
    width: 15%;
    top: 20%;
    right: 5%;
    animation-delay: 3s;
}

.cta-icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-wrapper:hover .cta-icon-glow {
    opacity: 1;
}

.cta-stat-icon {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(39, 168, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-stat-icon i {
    font-size: 16px;
    color: #27a87f;
}

.cta-stat-item:hover .cta-stat-icon {
    transform: translateY(-50%) scale(1.2);
    background: rgba(39, 168, 127, 0.2);
}

.cta-tech-tag {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.cta-tech-tag .tech-tag-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(39, 168, 127, 0.3);
    transition: all 0.3s ease;
    padding: 0;
}

.cta-tech-tag .tech-tag-item i {
    margin: 0;
    font-size: 18px;
}

.cta-tech-tag .tech-tag-item:hover {
    background: rgba(39, 168, 127, 0.2);
    transform: translateY(-5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27a87f 0%, #1d8a67 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(39, 168, 127, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 168, 127, 0.5);
    color: #fff;
}

.back-to-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 168, 127, 0.3) 0%, rgba(39, 168, 127, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover .back-to-top-glow {
    opacity: 1;
}

/* Animation Helper Classes */
.floating {
    animation: float 4s ease-in-out infinite alternate;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-new-container {
        flex-direction: column;
        padding: 120px 0 60px;
    }
    
    .hero-new-content {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .hero-new-btns {
        justify-content: center;
    }
    
    .hero-tech-tags {
        justify-content: center;
    }
    
    .hero-new-badge {
        bottom: 20px;
        right: 20px;
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .service-card-inner {
        padding: 20px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img,
    .about-text {
        width: 100%;
    }
    
    .about-img {
        margin-bottom: 40px;
    }
    
    .portfolio-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .portfolio-filter {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .hero-circuit-lines {
        display: none;
    }
    
    .hero-new-content h1 {
        font-size: 28px;
    }
    
    .hero-new-text {
        font-size: 14px;
    }
    
    .hero-new-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .about-img-badge {
        width: 70px;
        height: 70px;
        top: -15px;
        right: 15px;
    }
    
    .about-img-badge span {
        font-size: 20px;
    }
    
    .counter-icon {
        width: 40px;
        height: 40px;
    }
    
    .counter-icon i {
        font-size: 18px;
    }
    
    .testimonial-card-inner {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-stat-item {
        margin-bottom: 15px;
        padding-right: 30px;
    }
}

@media (max-width: 575px) {
    .hero-particles {
        display: none;
    }
    
    .hero-new-badge {
        display: none;
    }
    
    .services-btn,
    .portfolio-btn,
    .testimonials-btn,
    .about-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .service-card-inner {
        margin-bottom: 15px;
    }
    
    .about-counter-grid {
        flex-direction: column;
    }
    
    .about-counter {
        margin-bottom: 20px;
    }
    
    .portfolio-card-inner {
        margin-bottom: 15px;
    }
    
    .cta-tech-tag {
        display: none;
    }
}

@media (max-width: 767px) {
    // ... existing code ...
    
    .hero-new-image {
        width: 85%; /* Réduit davantage en version mobile */
    }
    
    .hero-new-image img {
        transform: scale(0.85); /* Réduit davantage en version mobile */
    }
}