/* Améliorations globales */
:root {
    --primary-color: #4DA1FF;
    --secondary-color: #1A2B4C;
    --light-gray: #F5F7FA;
    --dark-gray: #333333;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    position: relative;
    overflow: hidden;
}

/* Éléments décoratifs globaux */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.divider-waves {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Améliorations des services */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-radius: 22px;
    border: 1px solid rgba(77, 161, 255, 0.1);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    text-align: center;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.7) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid rgba(77, 161, 255, 0.2);
    border-right: 2px solid rgba(77, 161, 255, 0.2);
    border-radius: 0 0 22px 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease;
    z-index: -2;
    opacity: 0.9;
    filter: saturate(1.3) brightness(1.1) contrast(1.1);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.service-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-bg::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.service-fret-aerien {
    background-image: url('assets/images/slider/savioncargo.jpg');
}

.service-fret-maritime {
    background-image: url('assets/images/slider/port.jpg');
}

.service-dedouanement {
    background-image: url('assets/images/slider/port1.jpeg');
}

.service-conditionnement {
    background-image: url('assets/images/slider/zcolis2.jpg');
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(77, 161, 255, 0.2);
    border-color: rgba(77, 161, 255, 0.3);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover .service-card-bg {
    transform: scale(1.1) translateY(-5px);
    opacity: 1;
    filter: saturate(1.5) brightness(1.2) contrast(1.2);
    height: 55%;
}

.service-icon-wrapper {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 0 20px rgba(77, 161, 255, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 2;
    border: 3px solid rgba(77, 161, 255, 0.3);
    margin-top: 4.5rem;
    transform-style: preserve-3d;
    perspective: 500px;
}

.service-card:hover .service-icon-wrapper {
    transform: translateY(-8px) scale(1.1) rotateY(15deg);
    box-shadow: 0 20px 40px rgba(77, 161, 255, 0.3);
    background: white;
    border-color: rgba(77, 161, 255, 0.5);
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent, rgba(77, 161, 255, 0.2), transparent, transparent);
    animation: rotate 4s linear infinite;
    transition: all 0.5s ease;
    opacity: 0;
}

.service-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, rgba(77, 161, 255, 0.08), transparent);
    z-index: -1;
    animation: rotate-reverse 15s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-card:hover .service-icon-wrapper::after {
    opacity: 1;
}

.service-icon-wrapper i {
    font-size: 2.4rem;
    color: #4DA1FF;
    filter: drop-shadow(0 0 5px rgba(77, 161, 255, 0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    transform-style: preserve-3d;
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.2) translateZ(10px);
    color: #6eb8ff;
    filter: drop-shadow(0 0 15px rgba(77, 161, 255, 0.7));
}

.service-card-content {
    padding: 0 2rem 2.5rem;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 22px 22px;
    width: 100%;
}

.service-card:hover .service-card-content {
    transform: translateY(-5px);
}

.service-card-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(77, 161, 255, 0.5), transparent);
    border-radius: 3px;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-card-content::before {
    opacity: 1;
    width: 120px;
}

.service-title {
    position: relative;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1A2B4C;
    transition: all 0.3s ease;
    z-index: 1;
    display: inline-block;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-title {
    color: #4DA1FF;
    transform: translateY(-3px);
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover .service-title::after {
    width: 100%;
    opacity: 1;
}

.service-description {
    text-align: center;
    color: #444;
    margin-bottom: 0.5rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    position: relative;
    padding: 0 0.5rem;
    font-weight: 500;
}

.service-description::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: rgba(77, 161, 255, 0.2);
    transition: all 0.5s ease;
}

.service-card:hover .service-description {
    color: #333;
}

.service-card:hover .service-description::after {
    width: 70px;
    background: rgba(77, 161, 255, 0.4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0.6rem 1.8rem;
    background: rgba(77, 161, 255, 0.1);
    border-radius: 50px;
    color: #1A2B4C;
    font-weight: 600;
    border: 1px solid rgba(77, 161, 255, 0.2);
    margin-top: 1rem;
    box-shadow: 0 3px 10px rgba(77, 161, 255, 0.1);
    font-size: 1.05rem;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(77, 161, 255, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-link {
    background: rgba(77, 161, 255, 0.15);
    border-color: rgba(77, 161, 255, 0.3);
    box-shadow: 0 5px 15px rgba(77, 161, 255, 0.15);
    transform: translateY(-5px);
    color: #1A2B4C;
}

.service-card:hover .service-link::before {
    left: 100%;
}

.service-card:hover .service-link::after {
    height: 100%;
}

.service-link i {
    transition: all 0.4s ease;
    margin-left: 0.5rem;
    position: relative;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
    color: #4DA1FF;
}

.services-section .text-gray-600 {
    color: #555;
}

.value-icon-bg i {
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.8));
    font-size: 2.2rem;
    color: #6eb8ff;
}

.values-section .section-title h2 {
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.3));
    font-size: 3rem;
}

.values-section .text-gray-300 {
    color: rgba(255, 255, 255, 0.9);
}

.swiper-slide-content {
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.15), rgba(77, 161, 255, 0.1));
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(77, 161, 255, 0.2);
}

.hero-bg {
    background: linear-gradient(135deg, #1c2e4f, #1e3159);
}

.swiper-slide-button {
    background: rgba(77, 161, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.swiper-slide-button:hover {
    background: rgba(77, 161, 255, 0.6);
    box-shadow: 0 15px 30px rgba(77, 161, 255, 0.3);
}

.values-floating-element:nth-child(1) {
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.4), rgba(77, 161, 255, 0.1));
}

.values-floating-element:nth-child(2) {
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.3), rgba(77, 161, 255, 0.05));
}

.services-section .section-title h2 {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, #1A2B4C, #4DA1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 1px rgba(77, 161, 255, 0.5));
}

.services-section .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    border-radius: 3px;
}

/* CTA Section améliorée */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(77, 161, 255, 0.1), rgba(77, 161, 255, 0.2));
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234da1ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, #4DA1FF, #3d89e4);
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(77, 161, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
    transition: 0.7s;
}

/* Pied de page amélioré */
footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234da1ff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4DA1FF, transparent);
    border-radius: 3px;
}

.footer-link {
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    transform: translateX(5px);
    color: #4DA1FF;
}

.social-icon {
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
}

.social-icon:hover {
    background: #4DA1FF;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(77, 161, 255, 0.4);
}

/* Modifions les sections spécifiques */
.hero-bg {
    position: relative;
    overflow: hidden;
    background: #1A2B4C;
    height: 75vh;
    min-height: 580px;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 43, 76, 0.2) 0%, rgba(26, 43, 76, 0) 70%);
    z-index: 1;
}
.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #1A2B4C, transparent);
    z-index: 1;
}
.swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.swiper-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 1.8s ease, filter 0.8s ease;
    filter: brightness(1.1) saturate(1.3);
}
.swiper-slide-active .swiper-slide-bg {
    transform: scale(1);
    filter: brightness(1.2) saturate(1.5);
}
.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.65) 0%, rgba(26, 43, 76, 0.4) 100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(77, 161, 255, 0.2) 0%, transparent 60%), 
                radial-gradient(circle at 70% 50%, rgba(26, 43, 76, 0.15) 0%, transparent 60%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.swiper-slide:hover::before {
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.5) 0%, rgba(26, 43, 76, 0.3) 100%);
}
.swiper-slide:hover::after {
    background: radial-gradient(circle at 30% 50%, rgba(77, 161, 255, 0.5) 0%, transparent 70%), 
                radial-gradient(circle at 70% 50%, rgba(26, 43, 76, 0.2) 0%, transparent 70%);
}
.swiper-pagination {
    bottom: 30px !important;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 6px !important;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #4DA1FF;
    width: 40px;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(77, 161, 255, 0.7);
}
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: scale(0.8);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(77, 161, 255, 0.4);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(77, 161, 255, 0.3);
}
.hero-bg:hover .swiper-button-next,
.hero-bg:hover .swiper-button-prev {
    opacity: 1;
    transform: scale(1);
}
.swiper-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    color: white;
    transform: translateY(-50%) translateX(-20px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    text-align: left;
    z-index: 5;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(77, 161, 255, 0.3);
    border-left: 4px solid #4DA1FF;
    background: rgba(26, 43, 76, 0.15);
    backdrop-filter: blur(8px);
    opacity: 0;
}
.swiper-slide-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-top: 4px solid rgba(77, 161, 255, 0.6);
    border-left: 4px solid rgba(77, 161, 255, 0.6);
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease 0.2s;
}
.swiper-slide-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-bottom: 4px solid rgba(77, 161, 255, 0.6);
    border-right: 4px solid rgba(77, 161, 255, 0.6);
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease 0.3s;
}
.swiper-slide-active .swiper-slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.swiper-slide-active .swiper-slide-content::before,
.swiper-slide-active .swiper-slide-content::after {
    opacity: 1;
    transform: scale(1);
}
.swiper-slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    background: linear-gradient(120deg, #ffffff, #6eb8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.swiper-slide-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4DA1FF, transparent);
    border-radius: 3px;
    transition: width 0.5s ease 0.8s;
}
.swiper-slide-active .swiper-slide-title {
    transform: translateY(0);
    opacity: 1;
}
.swiper-slide-active .swiper-slide-title::after {
    width: 100px;
}
.swiper-slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 0;
    margin-bottom: 2rem;
    max-width: 520px;
    font-weight: 300;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    letter-spacing: 0.3px;
}
.swiper-slide-active .swiper-slide-description {
    opacity: 1;
    transform: translateY(0);
}
.swiper-slide-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(77, 161, 255, 0.25);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s, 
                background 0.4s ease, 
                transform 0.4s ease, 
                box-shadow 0.4s ease;
    letter-spacing: 0.5px;
}
.swiper-slide-active .swiper-slide-button {
    opacity: 1;
    transform: translateY(0);
}
.swiper-slide-button:hover {
    background: rgba(77, 161, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(255, 255, 255, 0.6);
}
.swiper-slide-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}
.swiper-slide-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(77, 161, 255, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}
.swiper-slide-button:hover::before {
    left: 100%;
}
.swiper-slide-button:hover::after {
    height: 100%;
}
.swiper-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background: rgba(255,255,255,0.2);
    width: 100%;
    z-index: 10;
    overflow: hidden;
}
.swiper-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4DA1FF, #1A2B4C);
    width: 0;
    transition: width 0.1s linear;
    position: relative;
    overflow: hidden;
}
.swiper-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progress-shine 2s linear infinite;
}
@keyframes progress-shine {
    0% { transform: translateX(-150px) }
    100% { transform: translateX(300px) }
}
@media (max-width: 768px) {
    .hero-bg {
        height: 70vh;
        min-height: 450px;
    }
    .swiper-slide-content {
        top: 50%;
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 25px;
    }
    .swiper-slide-title {
        font-size: 2.2rem;
    }
    .swiper-slide-description {
        font-size: 1rem;
        max-width: 100%;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
        display: flex;
        opacity: 0.8;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }
    .swiper-pagination {
        bottom: 15px !important;
    }
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .swiper-pagination-bullet-active {
        width: 30px;
    }
    .floating-element {
        opacity: 0.15;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    background: linear-gradient(120deg, #ffffff, #6eb8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero-subtitle {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.hero-cta {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.hero-cta:hover::before {
    left: 100%;
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.hero-stats {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.stat-item {
    position: relative;
    overflow: hidden;
}
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4DA1FF;
    transition: width 0.3s ease;
}
.stat-item:hover::after {
    width: 100%;
}
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}
.floating-element {
    position: absolute;
    background: rgba(77, 161, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(77, 161, 255, 0.2);
    backdrop-filter: blur(5px);
    animation: float 15s ease-in-out infinite;
    opacity: 0.6;
}
.floating-element:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 5%;
    animation-duration: 18s;
    background: radial-gradient(circle at center, rgba(77, 161, 255, 0.2), transparent);
}
.floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    animation-duration: 12s;
    animation-delay: 2s;
    background: radial-gradient(circle at center, rgba(77, 161, 255, 0.15), transparent);
}
.floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-duration: 15s;
    animation-delay: 1s;
    background: radial-gradient(circle at center, rgba(77, 161, 255, 0.25), transparent);
}
.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 25%;
    right: 10%;
    animation-duration: 20s;
    animation-delay: 3s;
    background: radial-gradient(circle at center, rgba(77, 161, 255, 0.1), transparent);
}
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(5deg); }
    50% { transform: translate(5px, 15px) rotate(-5deg); }
    75% { transform: translate(-15px, 5px) rotate(3deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(77, 161, 255, 0.1));
    transition: all 0.4s ease;
}
.service-card:hover::before {
    transform: scale(1.1);
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.value-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 161, 255, 0.15), transparent);
    z-index: -1;
    transition: all 0.5s ease;
}
.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    transform: scaleX(0.3);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(77, 161, 255, 0.1);
    border-color: rgba(77, 161, 255, 0.2);
}
.value-card:hover::after {
    transform: scaleX(0.8);
    opacity: 1;
}
.value-card:hover .value-icon-ring {
    transform: rotate(180deg) scale(1.15);
    box-shadow: 0 0 30px rgba(77, 161, 255, 0.5);
}
.value-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(77, 161, 255, 0.1);
    line-height: 1;
    transition: all 0.5s ease;
}
.value-card:hover .value-card-number {
    color: rgba(77, 161, 255, 0.2);
    transform: scale(1.2) rotate(10deg);
}
.value-icon-ring {
    background: conic-gradient(from 0deg, #4DA1FF, #6eb6ff, #4DA1FF);
    border-radius: 50%;
    padding: 3px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2.5rem;
    position: relative;
    width: 6rem;
    height: 6rem;
    box-shadow: 0 0 20px rgba(77, 161, 255, 0.4);
}
.value-icon-bg {
    background: rgba(26, 43, 76, 0.6);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.value-icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #4DA1FF);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.value-card:hover .value-icon-bg::before {
    opacity: 0.1;
}
.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.5s ease;
    background: linear-gradient(90deg, #FFFFFF, #E8F5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
}
.value-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    transition: all 0.5s ease;
}
.value-card:hover .value-description {
    color: rgba(255, 255, 255, 1);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}
.nav-logo {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.8rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(26, 43, 76, 0.3);
    border: 1px solid rgba(77, 161, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(77, 161, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 0;
}
.nav-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    z-index: 0;
}
.nav-logo:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(77, 161, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 15px rgba(77, 161, 255, 0.2);
}
.nav-logo:hover::before {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}
.nav-logo:hover::after {
    left: 100%;
}
.nav-logo i {
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.8));
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    margin-right: 0.8rem;
    transition: all 0.4s ease;
    transform-origin: center;
}
.nav-logo:hover i {
    transform: rotate(-5deg) scale(1.2);
    filter: drop-shadow(0 0 15px rgba(77, 161, 255, 1));
}
.nav-logo span {
    position: relative;
    z-index: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff, #4DA1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.4s ease;
}
.nav-logo:hover span {
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(77, 161, 255, 0.5);
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
}
.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 76, 0.6);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: scaleX(0.9);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(77, 161, 255, 0.1);
}
.nav-menu:hover::before {
    opacity: 1;
    transform: scaleX(1);
    border-color: rgba(77, 161, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(77, 161, 255, 0.1);
}
.nav-link {
    position: relative;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    border-radius: 50px;
    z-index: 1;
    letter-spacing: 0.3px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 161, 255, 0.15);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}
.nav-link:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
}
.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}
.nav-link:hover::after {
    width: 70%;
}
.nav-link.active {
    color: #FFFFFF;
}
.nav-link.active::before {
    opacity: 1;
    background: rgba(77, 161, 255, 0.25);
    box-shadow: 0 5px 15px rgba(77, 161, 255, 0.2);
}
.nav-link.active::after {
    width: 70%;
    background: #4DA1FF;
    box-shadow: 0 0 10px rgba(77, 161, 255, 0.5);
}
.nav-link i {
    font-size: 0.85rem;
    margin-right: 0.5rem;
    opacity: 0.8;
    transition: all 0.4s ease;
}
.nav-link:hover i {
    opacity: 1;
    transform: translateY(-2px);
}
.nav-link.active i {
    opacity: 1;
    color: #4DA1FF;
}
.mobile-menu-btn {
    display: none;
    background: rgba(26, 43, 76, 0.6);
    border: 1px solid rgba(77, 161, 255, 0.15);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(77, 161, 255, 0.2), transparent 70%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease;
}
.mobile-menu-btn:hover {
    color: #4DA1FF;
    transform: scale(1.05);
    border-color: rgba(77, 161, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(77, 161, 255, 0.2);
}
.mobile-menu-btn:hover::before {
    transform: scale(1);
}
.mobile-menu-btn.active {
    color: #4DA1FF;
    border-color: rgba(77, 161, 255, 0.4);
}
.mobile-menu-btn.active::before {
    transform: scale(1);
    background: radial-gradient(circle at center, rgba(77, 161, 255, 0.3), transparent 70%);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.95) 0%, rgba(26, 43, 76, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}
.mobile-menu.active {
    right: 0;
    opacity: 1;
}
.mobile-menu .nav-link {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    text-align: center;
    width: 90%;
    max-width: 250px;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}
.mobile-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-active-delay-1 {
    transition-delay: 0.1s;
}
.mobile-menu-active-delay-2 {
    transition-delay: 0.2s;
}
.mobile-menu-active-delay-3 {
    transition-delay: 0.3s;
}
.mobile-menu-active-delay-4 {
    transition-delay: 0.4s;
}
.mobile-menu .nav-link:hover, 
.mobile-menu .nav-link.active {
    background: rgba(77, 161, 255, 0.15);
    border-color: rgba(77, 161, 255, 0.3);
    transform: translateY(-2px);
}
.mobile-menu .nav-link i {
    font-size: 0.9rem;
    margin-right: 0.6rem;
}
.mobile-menu-logo {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.mobile-menu-logo i {
    font-size: 2rem;
    color: #4DA1FF;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(77, 161, 255, 0.7));
}
.mobile-menu-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #ffffff, #4DA1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mobile-menu-footer {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 1rem;
}
.mobile-menu-footer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: rgba(77, 161, 255, 0.5);
    border-radius: 2px;
}
.mobile-menu-btn {
    display: none;
    background: rgba(26, 43, 76, 0.6);
    border: 1px solid rgba(77, 161, 255, 0.15);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    position: relative;
    backdrop-filter: blur(5px);
}
.mobile-menu-btn:hover {
    color: #4DA1FF;
    border-color: rgba(77, 161, 255, 0.3);
}
.mobile-menu-btn.active {
    color: #4DA1FF;
    border-color: rgba(77, 161, 255, 0.4);
}

/* Ajout d'un effet de backdrop-filter pour tout le header */
header {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(77, 161, 255, 0.1);
}
header.scrolled {
    padding: 0.3rem 0;
    background-color: rgba(26, 43, 76, 0.98);
    border-bottom: 1px solid rgba(77, 161, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0.8;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.5));
}
.scroll-indicator:hover {
    opacity: 1;
}
.scroll-indicator i {
    color: white;
    font-size: 28px;
    text-shadow: 0 0 10px rgba(77, 161, 255, 0.7);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    header {
        padding: 0.5rem 0;
    }
}

/* Services Section améliorée pour suivre les valeurs */
.services-section {
    background: linear-gradient(to bottom, #F5F7FA, #EDF2F7);
    position: relative;
    margin-top: -2px;
    padding: 7rem 0;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top left, rgba(77, 161, 255, 0.1), transparent 70%),
        radial-gradient(circle at bottom right, rgba(77, 161, 255, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #EDF2F7, transparent);
    z-index: 0;
    pointer-events: none;
}

.services-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.services-floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(77, 161, 255, 0.1);
    filter: blur(20px);
    opacity: 0.6;
}

.services-floating-element:nth-child(1) {
    width: 250px;
    height: 250px;
    top: 10%;
    right: -50px;
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.15), rgba(77, 161, 255, 0.04));
    animation: float-rotate 30s infinite alternate ease-in-out;
}

.services-floating-element:nth-child(2) {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: -30px;
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.12), rgba(77, 161, 255, 0.03));
    animation: float-rotate 25s infinite alternate-reverse ease-in-out;
}

.services-section .section-title {
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.services-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    border-radius: 3px;
}

.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(77, 161, 255, 0.1);
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    transition: all 0.5s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid rgba(77, 161, 255, 0.3);
    border-right: 2px solid rgba(77, 161, 255, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(77, 161, 255, 0.1);
    border-color: rgba(77, 161, 255, 0.25);
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    background: rgba(77, 161, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    margin: 0 auto 1.8rem;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(77, 161, 255, 0.15);
    box-shadow: 0 0 30px rgba(77, 161, 255, 0.3);
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent, rgba(77, 161, 255, 0.2), transparent, transparent);
    animation: rotate 4s linear infinite;
    transition: all 0.5s ease;
    opacity: 0;
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-icon-wrapper i {
    font-size: 2.2rem;
    color: #4DA1FF;
    filter: drop-shadow(0 0 5px rgba(77, 161, 255, 0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.2);
    color: #6eb8ff;
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.7));
}

.service-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A2B4C;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: #4DA1FF;
}

.service-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    color: #333;
}

.service-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4DA1FF;
    transition: all 0.4s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.service-link i {
    transition: all 0.4s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.services-section .text-gray-600 {
    color: #555;
}

.value-icon-bg i {
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.8));
    font-size: 2.2rem;
    color: #6eb8ff;
}

.values-section .section-title h2 {
    filter: drop-shadow(0 0 10px rgba(77, 161, 255, 0.3));
    font-size: 3rem;
}

.values-section .text-gray-300 {
    color: rgba(255, 255, 255, 0.9);
}

.swiper-slide-content {
    background: linear-gradient(135deg, rgba(26, 43, 76, 0.15), rgba(77, 161, 255, 0.1));
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(77, 161, 255, 0.2);
}

.hero-bg {
    background: linear-gradient(135deg, #1c2e4f, #1e3159);
}

.swiper-slide-button {
    background: rgba(77, 161, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.swiper-slide-button:hover {
    background: rgba(77, 161, 255, 0.6);
    box-shadow: 0 15px 30px rgba(77, 161, 255, 0.3);
}

.values-floating-element:nth-child(1) {
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.4), rgba(77, 161, 255, 0.1));
}

.values-floating-element:nth-child(2) {
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.3), rgba(77, 161, 255, 0.05));
}

.services-section .section-title h2 {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, #1A2B4C, #4DA1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 1px rgba(77, 161, 255, 0.5));
}

.services-section .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    border-radius: 3px;
}

/* Améliorations des valeurs */
.values-section {
    position: relative;
    margin-top: -2px;
    background: linear-gradient(135deg, #1e3159, #1c2c4f, #1e3662);
    padding: 7rem 0 8rem;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(77, 161, 255, 0.25), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(77, 161, 255, 0.2), transparent 55%);
    z-index: 0;
}

.values-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #1e3159, transparent);
    z-index: 0;
    pointer-events: none;
}

.values-section .section-title {
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 1;
}

.values-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    border-radius: 3px;
}

.values-wrapper {
    position: relative;
    z-index: 2;
}

.values-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.values-floating-element {
    position: absolute;
    opacity: 0.15;
    border-radius: 50%;
    background: rgba(77, 161, 255, 0.4);
    filter: blur(20px);
}

.values-floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
    animation: float-rotate 25s infinite alternate ease-in-out;
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.4), rgba(77, 161, 255, 0.1));
}

.values-floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -100px;
    animation: float-rotate 20s infinite alternate-reverse ease-in-out;
    background: radial-gradient(circle at center, rgba(109, 183, 255, 0.3), rgba(77, 161, 255, 0.05));
}

@keyframes float-rotate {
    0% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(50px, 30px); }
    100% { transform: rotate(360deg) translate(0, 0); }
}

.value-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 161, 255, 0.15), transparent);
    z-index: -1;
    transition: all 0.5s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #4DA1FF, transparent);
    transform: scaleX(0.3);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(77, 161, 255, 0.1);
    border-color: rgba(77, 161, 255, 0.2);
}

.value-card:hover::after {
    transform: scaleX(0.8);
    opacity: 1;
}

.value-card:hover .value-icon-ring {
    transform: rotate(180deg) scale(1.15);
    box-shadow: 0 0 30px rgba(77, 161, 255, 0.5);
}

.value-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(77, 161, 255, 0.1);
    line-height: 1;
    transition: all 0.5s ease;
}

.value-card:hover .value-card-number {
    color: rgba(77, 161, 255, 0.2);
    transform: scale(1.2) rotate(10deg);
}

.value-icon-ring {
    background: conic-gradient(from 0deg, #4DA1FF, #6eb6ff, #4DA1FF);
    border-radius: 50%;
    padding: 3px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2.5rem;
    position: relative;
    width: 6rem;
    height: 6rem;
    box-shadow: 0 0 20px rgba(77, 161, 255, 0.4);
}

.value-icon-bg {
    background: rgba(26, 43, 76, 0.6);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.value-icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #4DA1FF);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover .value-icon-bg::before {
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.5s ease;
    background: linear-gradient(90deg, #FFFFFF, #E8F5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
}

.value-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.value-card:hover .value-description {
    color: rgba(255, 255, 255, 1);
}

/* Ajouter un effet de brillance sur l'image au survol */
.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    opacity: 0;
}

.service-card:hover .service-card-bg::after {
    left: 150%;
    opacity: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
    text-align: left;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.service-card:hover .service-features {
    transform: translateY(-5px);
}

.service-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    margin-bottom: 0.4rem;
    border-left: 3px solid rgba(77, 161, 255, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.service-card:hover .service-feature {
    color: #222;
    background: rgba(255, 255, 255, 0.95);
    border-left: 3px solid rgba(77, 161, 255, 0.7);
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
}

.service-feature i {
    color: #4DA1FF;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-right: 0.7rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-feature i {
    transform: scale(1.2);
    color: #4DA1FF;
}

.service-card .service-description {
    margin-bottom: 0.5rem;
}

.service-card .service-description::after {
    bottom: -10px;
}

/* Section Partenaires */
.partners-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-button-prev-partners,
.swiper-button-next-partners {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.swiper-button-prev-partners:hover,
.swiper-button-next-partners:hover {
    background: rgba(77, 161, 255, 0.8);
}

.swiper-button-prev-partners {
    left: 10px;
}

.swiper-button-next-partners {
    right: 10px;
}

.swiper-pagination-partners {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

.swiper-pagination-bullet-partners {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 4px;
}

.swiper-pagination-bullet-partners.swiper-pagination-bullet-active {
    background: #4DA1FF;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}
.animate-pulse-slow {
    animation: pulse-slow 4s infinite;
}
.delay-100 { animation-delay: 1s; }
.delay-300 { animation-delay: 2s; }
.delay-500 { animation-delay: 3s; }
.delay-700 { animation-delay: 4s; }
.shadow-glow {
    box-shadow: 0 0 15px 5px rgba(77, 161, 255, 0.3);
}

/* Style pour l'animation bounce plus lente */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Animation de l'effet de pulsation */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

/* Styles pour le bouton WhatsApp */
.whatsapp-assistance {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-btn:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover:before {
    opacity: 1;
}

.whatsapp-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon-container {
    transform: rotate(10deg);
}

.whatsapp-assistance .fab {
    font-size: 30px;
    color: white;
}

.online-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Animation de pulsation autour du bouton */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Tooltip WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    bottom: 10px;
    right: 75px;
    background: white;
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-assistance:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.tooltip-title {
    font-weight: bold;
    font-size: 16px;
    margin: 0 0 5px;
    color: #333;
}

.tooltip-subtitle {
    font-size: 12px;
    margin: 0;
    color: #666;
}

.tooltip-arrow {
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
}