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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
            background: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        /* RÈGLE : Centrage des titres de section */
        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #184447;
            margin-bottom: 50px;
            font-weight: 700;
        }

        /* Header Navigation */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(24, 68, 71, 0.85); 
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px); 
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* MODIFIÉ : CSS POUR LE LOGO (font-size supprimé, padding ajouté) */
        .logo-icon {
            width: 55px;
            height: 55px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* font-size: 2em; (Supprimé car l'icône est une image) */
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            padding: 5px; /* Ajouté pour un meilleur espacement */
        }

        /* NOUVELLE RÈGLE : S'assure que le GIF s'adapte au conteneur */
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


        .logo-text {
            color: white;
        }

        .logo-text h1 {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .logo-text p {
            font-size: 0.8em;
            opacity: 0.9;
        }

        /* MODIFIÉ : Le bouton utilise Flexbox */
        .cta-header {
            /* AJOUTÉ : pour aligner l'icône et le texte */
            display: flex;
            align-items: center;
            gap: 10px;

            background: white;
            color: #184447;
            /* AJUSTÉ : padding horizontal un peu réduit pour l'icône */
            padding: 12px 25px; 
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1em;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* NOUVELLES RÈGLES : Pour l'icône animée du bouton */
        .cta-icon-container {
            position: relative; /* Conteneur pour l'animation */
            width: 24px;  /* Taille de l'icône */
            height: 24px;
            flex-shrink: 0; /* Empêche l'icône de s'écraser */
        }

        .cta-icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .cta-icon-phone {
            /* Animation de 6s, commence visible */
            animation: alternateIcon 6s infinite ease-in-out;
        }

        .cta-icon-message {
            /* Même animation, mais décalée de 3s */
            animation: alternateIcon 6s infinite ease-in-out;
            animation-delay: 3s;
        }

        /* L'animation qui alterne l'opacité (fondu enchaîné) */
        @keyframes alternateIcon {
            0%, 45% {
                opacity: 1; /* Visible pendant ~2.7s */
            }
            50%, 95% {
                opacity: 0; /* Invisible pendant ~2.7s */
            }
            100% {
                opacity: 1; /* Retour au début */
            }
        }


        /* Hero Carousel Section */
        .hero-carousel {
            background: #fff;
            padding: 0;
            overflow: hidden;
            position: relative;
            height: 500px;
        }

        .carousel-container {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ddd; /* MODIFIÉ : Fond d'origine */
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* MODIFIÉ : 'contain' redevient 'cover' */
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 40px;
        }

        .carousel-overlay h2 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .carousel-overlay p {
            font-size: 1.5em;
            margin-bottom: 30px;
            max-width: 800px;
        }

        .carousel-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        .carousel-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            transform: translateY(-50%);
            z-index: 10;
        }

        .carousel-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.3);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5em;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .carousel-arrow:hover {
            background: rgba(255, 255, 255, 0.8);
            color: #184447;
        }

        /* Features Banner */
        .features-section {
            background: white;
            padding: 30px 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .features-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            color: #666;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .check-icon {
            color: #184447;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Price Cards Section */
        .price-section {
            padding: 60px 20px;
            background: #f5f5f5;
        }

        .cards-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .price-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(50px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .price-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
        }

        .card-image {
            width: 180px;
            height: 180px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 5px 15px rgba(45, 80, 22, 0.2));
        }

        .card-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .card-title {
            font-size: 1.4em;
            color: #184447;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .card-description {
            color: #666;
            line-height: 1.7;
            font-size: 0.95em;
        }

        /* Large Cards */
        .large-cards {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .large-card {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            display: flex;
            gap: 30px;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateX(-50px);
        }

        .large-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .large-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
        }

        .large-card:nth-child(2) {
            transform: translateX(50px);
        }

        .large-card:nth-child(2).visible {
            transform: translateX(0);
        }

        .large-card-image {
            width: 200px;
            height: 200px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 8px 20px rgba(45, 80, 22, 0.25));
        }

        .large-card-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .large-card-content {
            flex: 1;
        }

        /* Software Section - Design spécial */
        .software-section {
            max-width: 1400px;
            margin: 60px auto 0;
            padding: 50px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .software-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(24, 68, 71, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .software-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(24, 68, 71, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .software-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .software-subtitle {
            font-size: 1.2em;
            color: #666;
            font-weight: 500;
        }

        .software-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .software-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            opacity: 0;
            transform: translateY(30px);
        }

        .software-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .software-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(24, 68, 71, 0.2);
            border-color: #184447;
        }

        .software-icon {
            font-size: 4em;
            margin-bottom: 20px;
            filter: drop-shadow(0 5px 10px rgba(24, 68, 71, 0.2));
        }

        .software-title {
            font-size: 1.4em;
            color: #184447;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .software-description {
            color: #666;
            line-height: 1.7;
            font-size: 0.95em;
        }

        /* Software Icon Carousel */
        .software-icon-carousel {
            position: relative;
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            overflow: hidden;
        }

        .software-carousel-images {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .software-carousel-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            filter: drop-shadow(0 5px 10px rgba(24, 68, 71, 0.2));
        }

        .software-carousel-img.active {
            opacity: 1;
            position: relative;
        }

        .software-carousel-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 5px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .software-icon-carousel:hover .software-carousel-controls {
            opacity: 1;
        }

        .software-carousel-nav {
            background: rgba(24, 68, 71, 0.8);
            border: none;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1em;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .software-carousel-nav:hover {
            background: rgba(24, 68, 71, 1);
            transform: scale(1.1);
        }

        .software-carousel-nav:active {
            transform: scale(0.95);
        }

        .software-carousel-indicators {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }

        .software-carousel-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(24, 68, 71, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .software-carousel-indicator.active {
            background: #184447;
            width: 18px;
            border-radius: 3px;
        }

        .software-carousel-indicator:hover {
            background: rgba(24, 68, 71, 0.6);
        }

        /* Carousel Images in Cards */
        .carousel-card {
            position: relative;
            overflow: hidden;
        }

        .carousel-images {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-img {
            z-index: 1;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
        }

        .carousel-img.active {
            opacity: 1;
            z-index: 2;
        }

        /* Auto-scroll carousel avec slide translateX (comme hero carousel) */
        .auto-scroll-carousel .carousel-images {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .auto-scroll-carousel .carousel-img {
            position: relative;
            min-width: 100%;
            opacity: 1;
            flex-shrink: 0;
        }

        /* Masquer les contrôles pour les carousels auto-scroll */
        .auto-scroll-carousel .carousel-controls,
        .auto-scroll-carousel .carousel-indicators {
            display: none;
        }

        /* Carousel Controls */
        .carousel-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 10;
        }

        .carousel-card:hover .carousel-controls {
            opacity: 1;
        }

        .carousel-nav {
            background: rgba(24, 68, 71, 0.8);
            border: none;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .carousel-nav:hover {
            background: rgba(24, 68, 71, 1);
            transform: scale(1.1);
        }

        .carousel-nav:active {
            transform: scale(0.95);
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid rgba(24, 68, 71, 0.3);
        }

        .carousel-indicator.active {
            background: #184447;
            width: 24px;
            border-radius: 4px;
            border-color: #184447;
        }

        .carousel-indicator:hover {
            background: rgba(24, 68, 71, 0.7);
        }

        /* Location Map Section */
        .location-section {
            background: white;
            padding: 80px 20px;
        }

        .location-section .section-title {
            opacity: 0;
            transform: translateY(-30px);
            transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            display: inline-block; /* Changé pour que text-align:center fonctionne */
            width: 100%;
        }

        .location-section .section-title.visible {
            opacity: 1;
            transform: translateY(0);
            animation: titlePulse 2s ease-in-out 0.5s;
        }

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

        .location-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #184447, #2a6a6f);
            border-radius: 2px;
            transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
        }

        .location-section .section-title.visible::after {
            transform: translateX(-50%) scaleX(1);
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .map-container.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        #map {
            height: 500px;
            width: 100%;
        }

        .coverage-info {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .coverage-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(30px);
        }

        .coverage-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .coverage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* CSS MODIFIÉ POUR LES ICÔNES DE ZONE */
        .coverage-icon {
            width: 40px;
            height: 40px;
            font-size: 2em; /* Conservé pour l'émoji 📍 */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* NOUVELLE RÈGLE : Adapte les GIFs */
        .coverage-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


        .coverage-text {
            font-size: 1.1em;
            color: #333;
            font-weight: 500;
        }

        /* Why Section */
        /* Business Card & Reviews Section */
        /* Nouvelle Section Carte & Avis - Design Ultra Moderne */
        .card-reviews-section {
            background: linear-gradient(180deg, #f0f8f9 0%, #ffffff 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .card-reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: radial-gradient(ellipse at top, rgba(24, 68, 71, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .card-reviews-container {
            max-width: 1400px;
            margin: 60px auto 0;
            display: flex;
            flex-direction: column;
            gap: 80px;
        }

        /* Contact Info Cards - Design Moderne */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .info-card {
            background: white;
            border-radius: 25px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: cardFloat 6s ease-in-out infinite;
        }

        .info-card:nth-child(1) { animation-delay: 0s; }
        .info-card:nth-child(2) { animation-delay: 0.5s; }
        .info-card:nth-child(3) { animation-delay: 1s; }
        .info-card:nth-child(4) { animation-delay: 1.5s; }

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

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(24, 68, 71, 0.05) 0%, rgba(42, 107, 112, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .info-card:hover::before {
            opacity: 1;
        }

        .info-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 60px rgba(24, 68, 71, 0.2);
        }

        .info-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, #184447 0%, #2a6b70 100%);
            box-shadow: 0 10px 30px rgba(24, 68, 71, 0.3);
            position: relative;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(24, 68, 71, 0.3); }
            50% { transform: scale(1.1); box-shadow: 0 15px 40px rgba(24, 68, 71, 0.5); }
        }

        .info-icon img {
            width: 50px;
            height: 50px;
            animation: iconRotate 4s linear infinite;
        }

        @keyframes iconRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .info-icon-text {
            font-size: 2.5em;
        }

        .info-card h3 {
            font-size: 1.4em;
            color: #184447;
            margin-bottom: 12px;
            font-weight: 700;
            text-align: center;
        }

        .info-card p {
            color: #666;
            line-height: 1.6;
            text-align: center;
            font-size: 1.05em;
        }

        .info-badge {
            display: inline-block;
            background: linear-gradient(135deg, #184447 0%, #2a6b70 100%);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            margin-top: 12px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(24, 68, 71, 0.3);
        }

        /* Section Avis Clients - Carousel Moderne */
        .reviews-section-title {
            text-align: center;
            font-size: 2.5em;
            color: #184447;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .reviews-carousel-wrapper {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 60px;
        }

        .reviews-carousel {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding: 20px 0;
        }

        .reviews-carousel::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            min-width: 350px;
            background: white;
            border-radius: 25px;
            padding: 35px;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .review-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 25px;
            padding: 2px;
            background: linear-gradient(135deg, #184447, #2a6b70, #ffa500);
            background-size: 200% 200%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: borderFlow 3s linear infinite;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .review-card:hover::before {
            opacity: 1;
        }

        .review-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 60px rgba(24, 68, 71, 0.25);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #184447, #2a6b70);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            color: white;
            font-weight: 700;
            box-shadow: 0 5px 20px rgba(24, 68, 71, 0.3);
            animation: avatarBounce 2s ease-in-out infinite;
        }

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

        .review-info h4 {
            color: #184447;
            font-size: 1.2em;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .review-stars {
            font-size: 1.2em;
            color: #ffa500;
            display: flex;
            gap: 3px;
            animation: starsGlow 2s ease-in-out infinite;
        }

        @keyframes starsGlow {
            0%, 100% { filter: drop-shadow(0 0 2px rgba(255, 165, 0, 0.5)); }
            50% { filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.8)); }
        }

        .review-text {
            color: #555;
            font-size: 1.05em;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .review-text::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3em;
            color: #184447;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            color: #184447;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: #184447;
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(24, 68, 71, 0.4);
        }

        .carousel-nav.prev {
            left: 0;
        }

        .carousel-nav.next {
            right: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .reviews-carousel-wrapper {
                padding: 20px 20px;
            }
            
            .carousel-nav {
                display: none;
            }
            
            .review-card {
                min-width: 280px;
            }
        }

        /* About Section */
        .about-section {
            background: white;
            padding: 80px 20px;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

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

        .about-profile {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: linear-gradient(135deg, #184447, #184447);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6em;
            margin: 0 auto 20px;
            box-shadow: 0 10px 40px rgba(45, 80, 22, 0.3);
            opacity: 0;
            transform: scale(0.8);
        }

        .about-profile.visible {
            opacity: 1;
            transform: scale(1);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-content {
            opacity: 0;
            transform: translateX(50px);
        }

        .about-content.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-content h2 {
            font-size: 2.5em;
            color: #184447;
            margin-bottom: 30px;
        }

        .about-content p {
            font-size: 1.1em;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }

        .about-highlight {
            background: #f5f5f5;
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #184447;
            margin-top: 30px;
        }

        .about-highlight h3 {
            color: #184447;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .about-highlight ul {
            list-style: none;
            padding: 0;
        }

        .about-highlight li {
            padding: 8px 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-highlight li::before {
            content: "✓";
            color: #184447;
            font-weight: bold;
            font-size: 1.2em;
        }

        /* Timeline CV */
        .timeline-section {
            background: #f5f5f5;
            padding: 80px 20px;
        }

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

        .timeline-item {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 50px;
            width: 2px;
            height: calc(100% + 50px);
            background: #184447;
        }

        .timeline-item:last-child::before {
            display: none;
        }

        .timeline-dot {
            width: 50px;
            height: 50px;
            background: #184447;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
        }

        .timeline-content {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 15px;
            border-left: 3px solid #184447;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .timeline-content h3 {
            color: #184447;
            margin-bottom: 10px;
            font-size: 1.4em;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.7;
        }

        /* Contact Section */
        .contact-section {
            background: white;
            padding: 80px 20px;
        }

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

        .contact-form {
            background: #f5f5f5;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(40px);
        }

        .contact-form.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #184447;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1em;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #184447;
            box-shadow: 0 0 20px rgba(45, 80, 22, 0.2);
        }

        .submit-button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #184447, #184447);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
        }

        /* === NOUVELLE SECTION CONTACT MODERNE === */
        .contact-section-modern {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-section-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(24, 68, 71, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(24, 68, 71, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-modern-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* === COLONNE FORMULAIRE === */
        .form-column {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s ease-out 0.2s forwards;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .form-glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.1),
                0 0 1px rgba(24, 68, 71, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .form-header-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #184447 0%, #2a6b70 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            box-shadow: 0 10px 30px rgba(24, 68, 71, 0.3);
            animation: float 3s ease-in-out infinite;
        }

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

        .form-title {
            text-align: center;
            font-size: 2em;
            color: #184447;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .form-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            font-size: 1.05em;
            line-height: 1.6;
        }

        .modern-contact-form {
            position: relative;
        }

        .form-group-modern {
            margin-bottom: 30px;
            position: relative;
        }

        .form-group-modern label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #184447;
            font-size: 0.95em;
            transition: all 0.3s;
        }

        .form-group-modern input,
        .form-group-modern select,
        .form-group-modern textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 1em;
            background: white;
            transition: all 0.3s;
            font-family: inherit;
        }

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

        .form-group-modern input:focus,
        .form-group-modern select:focus,
        .form-group-modern textarea:focus {
            outline: none;
            border-color: #184447;
            background: #f8fcfc;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(24, 68, 71, 0.15);
        }

        .form-group-modern input:focus ~ .input-border,
        .form-group-modern select:focus ~ .input-border,
        .form-group-modern textarea:focus ~ .input-border {
            transform: scaleX(1);
        }

        .input-border {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #184447, #2a6b70);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            border-radius: 0 0 12px 12px;
        }

        .modern-submit-btn {
            width: 100%;
            padding: 18px 30px;
            background: linear-gradient(135deg, #184447 0%, #2a6b70 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 40px;
            box-shadow: 0 10px 30px rgba(24, 68, 71, 0.3);
            position: relative;
            overflow: hidden;
        }

        .modern-submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .modern-submit-btn:hover::before {
            width: 300%;
            height: 300%;
        }

        .modern-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(24, 68, 71, 0.4);
        }

        .modern-submit-btn:active {
            transform: translateY(-1px);
        }

        .btn-text {
            position: relative;
            z-index: 1;
        }

        .btn-arrow {
            position: relative;
            z-index: 1;
            transition: transform 0.3s;
        }

        .modern-submit-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        /* === COLONNE INFORMATIONS === */
        .info-column {
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 0.8s ease-out 0.4s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #184447, #2a6b70);
            transform: scaleY(0);
            transition: transform 0.4s;
        }

        .info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .info-card:hover::before {
            transform: scaleY(1);
        }

        .info-icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s;
        }

        .info-card-email .info-icon-wrapper {
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            color: white;
        }

        .info-card-phone .info-icon-wrapper {
            background: linear-gradient(135deg, #50C878, #3AA65D);
            color: white;
        }

        .info-card-hours .info-icon-wrapper {
            background: linear-gradient(135deg, #FFB74D, #F57C00);
            color: white;
        }

        .info-card-location .info-icon-wrapper {
            background: linear-gradient(135deg, #E57373, #D32F2F);
            color: white;
        }

        .info-card:hover .info-icon-wrapper {
            transform: rotate(360deg) scale(1.1);
        }

        .info-content {
            flex: 1;
        }

        .info-content h4 {
            font-size: 1.1em;
            color: #184447;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .info-content a {
            color: #333;
            text-decoration: none;
            font-size: 1.05em;
            font-weight: 500;
            transition: color 0.3s;
        }

        .info-content a:hover {
            color: #184447;
        }

        .info-content p {
            color: #666;
            margin: 5px 0;
            font-size: 0.95em;
        }

        .info-detail {
            font-size: 0.85em;
            color: #999;
            font-style: italic;
        }

        .info-decoration {
            position: absolute;
            right: -20px;
            top: -20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(24, 68, 71, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* === BLOC RÉPONSE RAPIDE === */
        .quick-response-block {
            background: linear-gradient(135deg, #184447 0%, #2a6b70 100%);
            border-radius: 20px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(24, 68, 71, 0.3);
            position: relative;
            overflow: hidden;
        }

        .quick-response-block::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%);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .pulse-indicator {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            position: relative;
            flex-shrink: 0;
            z-index: 1;
        }

        .pulse-indicator::before,
        .pulse-indicator::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            animation: pulse 2s ease-out infinite;
        }

        .pulse-indicator::after {
            animation-delay: 1s;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        .response-content {
            color: white;
            flex: 1;
            z-index: 1;
        }

        .response-content h4 {
            font-size: 1.3em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .response-content p {
            font-size: 1em;
            opacity: 0.95;
        }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .contact-modern-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-glass-card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-section-modern {
                padding: 60px 20px;
            }

            .form-glass-card {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .form-title {
                font-size: 1.6em;
            }

            .info-card {
                padding: 20px;
            }

            .info-icon-wrapper {
                width: 60px;
                height: 60px;
            }
        }
        .mail-service-section {
            background: linear-gradient(135deg, #184447 0%, #2a6b70 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .mail-service-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .mail-service-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        /* Animated Mail Icon */
        .mail-icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mail-icon-circle {
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 3s ease-in-out infinite;
            box-shadow: 0 0 60px rgba(255, 255, 255, 0.2);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(255, 255, 255, 0.2); }
            50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(255, 255, 255, 0.3); }
        }

        .mail-box {
            font-size: 8em;
            animation: bounce 2s ease-in-out infinite;
        }

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

        .float-icons {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .float-icon {
            position: absolute;
            font-size: 2.5em;
            animation: float 4s ease-in-out infinite;
            opacity: 0.8;
        }

        .float-icon:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: var(--delay);
        }

        .float-icon:nth-child(2) {
            top: 10%;
            right: 10%;
            animation-delay: var(--delay);
        }

        .float-icon:nth-child(3) {
            bottom: 10%;
            left: 10%;
            animation-delay: var(--delay);
        }

        .float-icon:nth-child(4) {
            bottom: 10%;
            right: 10%;
            animation-delay: var(--delay);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(5deg); }
            50% { transform: translateY(0) rotate(0deg); }
            75% { transform: translateY(15px) rotate(-5deg); }
        }
        .mail-text-content {
            color: white;
        }

        .mail-title {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .title-word {
            display: inline-block;
            animation: slideInUp 0.8s ease-out forwards;
            animation-delay: var(--word-delay);
            opacity: 0;
        }

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

        .mail-subtitle {
            font-size: 1.4em;
            margin-bottom: 40px;
            opacity: 0.95;
            animation: fadeIn 1s ease-out 0.5s forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            to { opacity: 0.95; }
        }

        /* Steps Section */
        .mail-steps {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            flex: 1;
            min-width: 200px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: scaleIn 0.6s ease-out forwards;
            animation-delay: var(--step-delay);
            opacity: 0;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

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

        .step-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .step-number {
            width: 45px;
            height: 45px;
            background: white;
            color: #184447;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.4em;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .step-content h3 {
            font-size: 1.2em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .step-content p {
            font-size: 0.95em;
            opacity: 0.9;
            line-height: 1.4;
        }

        .step-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2.5em;
            opacity: 0.3;
        }

        .step-arrow {
            font-size: 2em;
            color: white;
            opacity: 0.6;
            animation: arrowSlide 1.5s ease-in-out infinite;
        }

        @keyframes arrowSlide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        /* CTA Section */
        .mail-cta-container {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 25px;
            animation: fadeInUp 0.8s ease-out 1s forwards;
            opacity: 0;
        }

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

        .mail-cta-button {
            background: white;
            color: #184447;
            padding: 20px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

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

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

        .mail-cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .button-arrow {
            transition: transform 0.3s;
            font-size: 1.3em;
        }

        .mail-cta-button:hover .button-arrow {
            transform: translateX(10px);
        }

        .trust-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 0.95em;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }

        .trust-badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Animated Background */
        .animated-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: bgFloat 20s ease-in-out infinite;
            animation-delay: var(--circle-delay);
        }

        .bg-circle:nth-child(1) {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -100px;
        }

        .bg-circle:nth-child(2) {
            width: 300px;
            height: 300px;
            bottom: -50px;
            right: 10%;
        }

        .bg-circle:nth-child(3) {
            width: 250px;
            height: 250px;
            top: 50%;
            right: -50px;
        }

        @keyframes bgFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Responsive for Mail Service */
        @media (max-width: 1024px) {
            .mail-service-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .mail-title {
                justify-content: center;
                font-size: 2.5em;
            }

            .mail-steps {
                flex-direction: column;
            }

            .step-arrow {
                transform: rotate(90deg);
            }

            .mail-cta-container {
                align-items: center;
            }

            .mail-icon-circle {
                width: 220px;
                height: 220px;
            }

            .mail-box {
                font-size: 6em;
            }
        }

        @media (max-width: 768px) {
            .mail-service-section {
                padding: 60px 15px;
            }

            .mail-title {
                font-size: 2em;
            }

            .mail-subtitle {
                font-size: 1.2em;
            }

            .step-card {
                min-width: 100%;
            }

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

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #184447;
        }

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

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #184447;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #999;
        }

        /* Mobile */
        @media (max-width: 1024px) {
            .large-cards {
                grid-template-columns: 1fr;
            }

            .large-card:nth-child(3) {
                grid-column: 1;
                max-width: 100%;
            }

            .large-card {
                flex-direction: column;
                text-align: center;
            }

            .about-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .timeline-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .timeline-item::before {
                display: none;
            }

            .card-reviews-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .business-card {
                width: 100%;
                max-width: 400px;
            }

            .reviews-container {
                grid-template-columns: 1fr;
            }

            .software-cards {
                grid-template-columns: 1fr;
            }

            .software-section {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2em;
            }
            
            .logo-text h1 {
                font-size: 1.3em;
            }

            .logo-text p {
                font-size: 0.7em;
            }

            .cta-header {
                font-size: 0.9em;
            }

            .hero-carousel {
                height: 400px;
            }

            .carousel-overlay h2 {
                font-size: 2em;
            }

            .carousel-overlay p {
                font-size: 1.2em;
            }

            .contact-form {
                padding: 30px;
            }

            .large-card {
                padding: 30px;
            }
        }

        .company-logo-carousel {
            opacity: 0 !important;
            transition: opacity 0.8s ease-in-out;
        }

        .company-logo-carousel.active {
            opacity: 1 !important;
        }

        .logo-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s;
        }

        .logo-indicator.active {
            background: #2c5456;
            width: 18px;
            border-radius: 6px;
        }

        .logo-indicator:hover {
            background: #184447;
        }