/* ============================================
   DESIGN NOIR ET BLANC UNIQUE AVEC ANIMATIONS
   ============================================ */

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-gray: #1a1a1a;
    --accent-light: #2a2a2a;
    --text-gray: #cccccc;
    --gradient-start: #ffffff;
    --gradient-end: #888888;
    --glow-color: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Optimisation tactile mobile */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a, input, textarea {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary-black);
    color: var(--primary-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: none;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: none;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Canvas Particules */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    will-change: contents;
}

@media (max-width: 768px) {
    #particles-canvas {
        opacity: 0.5;
    }
    
    /* Empêcher le scroll horizontal sur toute la page */
    body, html {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
        max-width: 100vw;
        touch-action: pan-y pinch-zoom;
        overscroll-behavior-x: none;
        -webkit-overflow-scrolling: touch;
    }
    
    * {
        max-width: 100%;
    }
    
    section, .container {
        overflow-x: hidden;
        touch-action: pan-y;
    }
    
    /* Autoriser le swipe horizontal uniquement dans le carousel */
    .reviews-carousel-wrapper,
    .reviews-carousel {
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Bloquer le swipe horizontal partout ailleurs */
    .hero, .about, .services, .contact, .footer,
    .navbar, .nav-menu, .hero-content, .hero-text,
    .about-content, .services-grid, .contact-wrapper,
    .container, .section-header, .stats-grid,
    .service-card, .info-card, .contact-form {
        touch-action: pan-y !important;
        overscroll-behavior-x: none !important;
    }
    
    /* Empêcher le scroll horizontal sur tous les éléments */
    * {
        overscroll-behavior-x: none;
    }
    
    /* Exception pour le carousel */
    .reviews-carousel-wrapper *,
    .reviews-carousel * {
        overscroll-behavior-x: contain;
    }
}

@media (max-width: 480px) {
    #particles-canvas {
        opacity: 0.3;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.8s ease-out;
    will-change: transform, background;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
    }
    to {
        text-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color), 0 0 40px var(--glow-color);
    }
}

.logo-accent {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-white);
}

.nav-link:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border: 1px solid transparent;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--primary-white);
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
}

.lang-separator {
    color: var(--text-gray);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: transform 0.3s;
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.title-main {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 2px solid var(--primary-white);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    border-radius: 0;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 30%;
    border-radius: 0;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 10%;
    border-radius: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Sections */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sur mobile : container optimisé pour reviews */
@media (max-width: 768px) {
    #reviews .container {
        padding: 0;
        max-width: 100%;
        overflow: visible;
        width: 100%;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
    margin: 1rem auto;
    animation: expand 1s ease-out;
}

@keyframes expand {
    from { width: 0; }
    to { width: 100px; }
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--accent-gray);
}

.about-content {
    width: 100%;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease-out;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    padding: 3rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-card:hover .service-icon {
    animation: rotate 2s linear infinite;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Reviews Section */
.reviews {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

/* Sur mobile : empêcher le scroll dans la section reviews */
@media (max-width: 768px) {
    .reviews {
        overflow: hidden !important;
        padding: 4rem 0;
        touch-action: pan-y !important;
        overscroll-behavior: none !important;
    }
    
    .reviews::before {
        display: none;
    }
    
    /* Empêcher le scroll dans le container des reviews */
    #reviews .container {
        overflow: hidden !important;
        touch-action: pan-y !important;
    }
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trustpilot-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    max-width: 300px;
    animation: pulse 3s ease-in-out infinite;
}

.trustpilot-stars {
    display: flex;
    gap: 0.3rem;
    font-size: 2rem;
}

.trustpilot-stars .star {
    color: #00b67a;
    text-shadow: 0 0 10px rgba(0, 182, 122, 0.5);
    animation: starGlow 2s ease-in-out infinite;
}

.trustpilot-stars .star:nth-child(1) { animation-delay: 0s; }
.trustpilot-stars .star:nth-child(2) { animation-delay: 0.2s; }
.trustpilot-stars .star:nth-child(3) { animation-delay: 0.4s; }
.trustpilot-stars .star:nth-child(4) { animation-delay: 0.6s; }
.trustpilot-stars .star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 182, 122, 0.5);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(0, 182, 122, 0.8);
    }
}

.trustpilot-rating {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-white);
}

.trustpilot-count {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carrousel d'avis - Optimisé */
.reviews-carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    width: 100%;
}

/* Desktop : Affichage en grille normale */
@media (min-width: 769px) {
    .reviews-carousel-wrapper {
        padding: 0;
    }
    
    .reviews-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transform: none !important;
        transition: none;
        overflow: visible;
    }
    
    .reviews-carousel .review-card {
        min-width: auto;
        width: 100%;
        flex-shrink: 0;
    }
    
    /* Masquer les boutons sur desktop */
    .carousel-btn {
        display: none !important;
    }
}

/* Tablette : 2 colonnes */
@media (min-width: 769px) and (max-width: 968px) {
    .reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Boutons de navigation - Style de base (uniquement mobile) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid var(--primary-white);
    color: var(--primary-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: 1;
    visibility: visible;
}

.carousel-btn:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:focus {
    outline: 3px solid var(--primary-white);
    outline-offset: 2px;
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
    pointer-events: none;
}

.carousel-next {
    right: 1rem;
}

.carousel-prev {
    left: 1rem;
}

@media (max-width: 968px) {
    .reviews-carousel .review-card {
        min-width: calc(50% - 1rem);
    }
}

/* Mobile : Système d'avis optimisé sans scroll (horizontal et vertical) */
@media (max-width: 768px) {
    .reviews-carousel-wrapper {
        position: relative;
        width: 100%;
        margin-top: 2rem;
        padding: 0 1rem;
        overflow: hidden !important;
        min-height: auto;
        background: transparent;
        touch-action: none !important;
        overscroll-behavior-x: none !important;
        overscroll-behavior-y: none !important;
    }
    
    .reviews-carousel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        overflow-x: hidden !important;
        overflow-y: hidden !important;
        scroll-snap-type: none !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
        transform: none !important;
        transition: none;
        align-items: flex-start;
        background: transparent;
        touch-action: none !important;
        overscroll-behavior-x: none !important;
        overscroll-behavior-y: none !important;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }
    
    .reviews-carousel::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    
    .reviews-carousel .review-card {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        flex-shrink: 1;
        box-sizing: border-box;
        padding: 2rem 1.5rem;
        margin: 0 auto;
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
        display: flex;
        flex-direction: column;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        position: relative;
        z-index: 1;
    }
    
    /* Assurer que tout le contenu est visible sur mobile */
    .review-card .review-text {
        display: block;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-height: none;
        height: auto;
    }
    
    .review-card .review-title {
        display: block;
        overflow: visible;
        white-space: normal;
        word-wrap: break-word;
        max-height: none;
    }
    
    .review-card .review-verified {
        display: block;
        margin-top: auto;
    }
    
    /* Masquer les boutons sur mobile (scroll désactivé) */
    .carousel-btn {
        display: none !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        pointer-events: auto;
    }
    
    .carousel-btn:active {
        transform: translateY(-50%) scale(0.9);
        background: rgba(255, 255, 255, 0.2);
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-next {
        right: 0.2rem;
    }
    
    .carousel-prev {
        left: 0.2rem;
    }
    
    /* Très petits écrans */
    @media (max-width: 480px) {
        .reviews-carousel-wrapper {
            padding: 0 1.5rem;
        }
        
        .reviews-carousel .review-card {
            min-width: calc(100vw - 4rem);
            width: calc(100vw - 4rem);
            max-width: calc(100vw - 4rem);
            padding: 1.8rem 1.3rem;
        }
        
        .carousel-btn {
            width: 40px;
            height: 40px;
        }
        
        .carousel-btn svg {
            width: 16px;
            height: 16px;
        }
        
        .carousel-next {
            right: 0.1rem;
        }
        
        .carousel-prev {
            left: 0.1rem;
        }
    }
}

.review-card {
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }
.review-card:nth-child(5) { animation-delay: 0.5s; }
.review-card:nth-child(6) { animation-delay: 0.6s; }

.review-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
    border: 2px solid var(--primary-white);
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.review-stars {
    display: flex;
    gap: 0.2rem;
    font-size: 1.2rem;
}

.review-stars .star {
    color: #00b67a;
    text-shadow: 0 0 5px rgba(0, 182, 122, 0.5);
}

.review-stars .star.filled {
    color: #00b67a;
}

.review-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    position: relative;
    z-index: 1;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: block;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    max-height: none;
    height: auto;
}

.review-verified {
    font-size: 0.85rem;
    color: #00b67a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--accent-gray);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    animation: fadeInLeft 0.8s ease-out;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.info-card p {
    color: var(--text-gray);
}

/* Contact Form */
.contact-form {
    animation: fadeInRight 0.8s ease-out;
    width: 100%;
    max-width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-white);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-gray);
    pointer-events: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -1rem;
    left: 0;
    font-size: 0.75rem;
    color: var(--primary-white);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.3s;
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.btn-submit {
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-white);
    padding: 1rem 3rem;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    background: transparent;
    color: var(--primary-white);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    display: block;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 3rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-white);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.footer-info-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-white);
    flex-shrink: 0;
}

.footer-info-icon svg {
    width: 100%;
    height: 100%;
}

.footer-info-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-white);
    font-family: 'Orbitron', sans-serif;
}

.footer-info-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ============================================
   OPTIMISATION MOBILE COMPLÈTE
   ============================================ */

/* Tablette */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-main {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        max-width: 100%;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    section {
        padding: 5rem 2rem;
    }
    
    .container {
        padding: 0;
    }
}

/* Mobile - Refonte complète */
@media (max-width: 768px) {
    /* Navigation mobile optimisée */
    .navbar {
        padding: 0.8rem 0;
        backdrop-filter: blur(15px);
    }
    
    .nav-container {
        padding: 0 1.2rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .lang-switcher {
        margin-left: auto;
        margin-right: 1rem;
        gap: 0.4rem;
        order: 2;
    }
    
    .lang-btn {
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
        min-width: 40px;
        text-align: center;
    }
    
    .hamburger {
        order: 3;
        width: 28px;
        height: 28px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary-white);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* Hero Section mobile - SIMPLIFIÉ */
    .hero {
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        gap: 3rem;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }
    
    .title-line {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        letter-spacing: 2px;
        opacity: 0.8;
    }
    
    .title-main {
        font-size: 3.2rem;
        display: block;
        margin: 0.8rem 0;
    }
    
    .title-subtitle {
        font-size: 0.9rem;
        margin-top: 0.8rem;
        letter-spacing: 1.5px;
        opacity: 0.7;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
        color: var(--text-gray);
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
        width: 100%;
        padding: 0;
        margin-top: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-height: 54px;
        border-width: 2px;
    }
    
    .hero-visual {
        height: 200px;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .floating-shapes {
        opacity: 0.5;
    }
    
    .shape {
        border-width: 1px;
    }
    
    .shape-1 {
        width: 60px;
        height: 60px;
    }
    
    .shape-2 {
        width: 80px;
        height: 80px;
    }
    
    .shape-3 {
        width: 50px;
        height: 50px;
    }
    
    .shape-4 {
        width: 70px;
        height: 70px;
    }
    
    @media (max-width: 480px) {
        .hero-visual {
            height: 150px;
        }
        
        .shape-1 {
            width: 50px;
            height: 50px;
        }
        
        .shape-2 {
            width: 65px;
            height: 65px;
        }
        
        .shape-3 {
            width: 40px;
            height: 40px;
        }
        
        .shape-4 {
            width: 55px;
            height: 55px;
        }
        
        .scroll-indicator {
            bottom: 0.8rem;
        }
        
        .mouse {
            width: 20px;
            height: 30px;
        }
    }
    
    /* Sections générales */
    section {
        padding: 4rem 1.2rem;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1.2rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .title-underline {
        width: 60px;
        height: 2px;
        margin: 1rem auto;
    }
    
    /* About Section */
    .about-content {
        padding: 0;
    }
    
    .about-intro {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 0.8rem;
        border-width: 1px;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        border-width: 1px;
        border-radius: 15px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Reviews Section - Carrousel mobile */
    .trustpilot-badge {
        padding: 1.8rem 1.2rem;
        max-width: 280px;
        margin: 2.5rem auto;
        border-width: 1px;
    }
    
    .trustpilot-stars {
        font-size: 1.6rem;
        gap: 0.2rem;
        margin-bottom: 0.6rem;
    }
    
    .trustpilot-rating {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .trustpilot-count {
        font-size: 0.8rem;
    }
    
    .reviews-carousel-wrapper {
        margin-top: 2rem;
        padding-bottom: 1rem;
    }
    
    .reviews-carousel {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
        border-width: 2px;
        border-radius: 18px;
        min-height: auto;
    }
    
    .review-header {
        margin-bottom: 1.2rem;
        gap: 0.8rem;
    }
    
    .review-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .review-info {
        flex: 1;
        min-width: 0;
    }
    
    .review-name {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
    }
    
    .review-date {
        font-size: 0.75rem;
        opacity: 0.7;
    }
    
    .review-stars {
        font-size: 1rem;
        gap: 0.15rem;
        flex-shrink: 0;
    }
    
    .review-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        display: block;
        overflow: visible;
        white-space: normal;
        word-wrap: break-word;
        max-height: none;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        display: block;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-height: none;
        height: auto;
    }
    
    .review-verified {
        font-size: 0.75rem;
        opacity: 0.8;
    }
    
    /* Contact Section */
    .contact-wrapper {
        max-width: 100%;
        margin-top: 2rem;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    
    .footer-info-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-info-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-info-text h4 {
        font-size: 0.85rem;
    }
    
    .footer-info-text p {
        font-size: 0.8rem;
    }
    
    /* Formulaire - SIMPLIFIÉ */
    .form-group {
        margin-bottom: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem 0.9rem;
        font-size: 0.95rem;
        border-bottom-width: 1px;
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .form-group label {
        top: 1rem;
        left: 0.9rem;
        font-size: 0.85rem;
    }
    
    .form-group input:focus + label,
    .form-group input:valid + label,
    .form-group textarea:focus + label,
    .form-group textarea:valid + label {
        top: -0.4rem;
        left: 0;
        font-size: 0.7rem;
    }
    
    .btn-submit {
        padding: 1.1rem 2rem;
        font-size: 0.95rem;
        min-height: 52px;
        width: 100%;
        margin-top: 1rem;
    }
    
    .form-message {
        padding: 1rem;
        font-size: 0.9rem;
        margin-top: 1.2rem;
    }
    
    /* Footer - SIMPLIFIÉ */
    .footer {
        padding: 3rem 1.2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1.2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.75rem;
        padding: 0.3rem 0;
        letter-spacing: 0.5px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1.2rem;
        padding-top: 1.5rem;
    }
    
    .footer-info-card {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .footer-info-icon {
        width: 32px;
        height: 32px;
    }
    
    .footer-info-text h4 {
        font-size: 0.8rem;
    }
    
    .footer-info-text p {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.7rem;
        line-height: 1.5;
        margin-top: 0.8rem;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        bottom: 1rem;
    }
    
    .mouse {
        width: 22px;
        height: 34px;
        border-width: 1.5px;
    }
    
    .wheel {
        width: 3px;
        height: 8px;
    }
}

/* Très petits écrans (iPhone SE, etc.) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        min-width: 36px;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-line {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    
    .title-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    section {
        padding: 3.5rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .about-intro {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        gap: 0.8rem;
    }
    
    .stat-card {
        padding: 1.3rem 0.6rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 44px;
        height: 44px;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .trustpilot-badge {
        padding: 1.3rem 0.8rem;
        max-width: 240px;
        margin: 2rem auto;
    }
    
    .trustpilot-stars {
        font-size: 1.3rem;
        gap: 0.15rem;
    }
    
    .trustpilot-rating {
        font-size: 1.3rem;
    }
    
    .trustpilot-count {
        font-size: 0.7rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .footer {
        padding: 2.5rem 1rem 1.2rem;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
    }
    
    .footer-brand p {
        font-size: 0.8rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.7rem;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.95rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 1rem 1.8rem;
    }
    
    .footer {
        padding: 3rem 1.2rem 1.5rem;
    }
}


/* Optimisations performances mobile */
@media (max-width: 768px) {
    .shape {
        animation-duration: 8s;
    }
    
    .service-icon {
        animation: none;
    }
    
    .service-card:hover .service-icon {
        animation: rotate 3s linear infinite;
    }
    
    .pulse-btn {
        animation-duration: 3s;
    }
    
    .logo-text {
        animation-duration: 3s;
    }
    
    /* Améliorer les performances */
    .stat-card:hover,
    .service-card:hover,
    .review-card:hover {
        transform: translateY(-5px);
    }
}

