   :root {
       --primary-blue: #004aad;
       --primary-yellow: #ffbe01;
       --dark-blue: #00327a;
       --light-blue: #e8f1ff;
       --gray-light: #f8f9fa;
       --gray-dark: #343a40;
       --transition: all 0.3s ease;
   }

   * {
       font-family: 'Segoe UI', system-ui, sans-serif;
   }

   /* ============ TOPBAR ============ */
.topbar {
    background: linear-gradient(90deg, #004aad 0%, #00327a 100%);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1030;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #ffbe01;
    font-size: 0.9rem;
}

.contact-item a, .contact-item span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffbe01;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: #ffbe01;
    color: #004aad;
    transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
.navbar {
    background: linear-gradient(90deg, #ffd700 0%, #004aad 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Logo */
.logo-img {
    height: 50px;
    transition: transform 0.3s ease;
           filter: brightness(0) invert(1);

}

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

/* Menu Burger Personnalisé */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation du menu burger */
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Menu principal */
.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffbe01;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffbe01 !important;
}

/* Bouton CTA */
.btn-cta {
    background: linear-gradient(135deg, #ffbe01, #ffd700);
    color: #004aad;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 190, 1, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ffd700, #ffbe01);
    color: #00327a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 190, 1, 0.4);
}

/* Menu mobile (dropdown) */
@media (max-width: 991.98px) {
    .topbar-content {
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, #004aad, #00327a);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 1rem !important;
        border-radius: 10px;
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: #ffbe01;
        transform: translateX(5px);
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* Animation du menu mobile */
    .navbar-collapse.collapsing {
        transition: height 0.35s ease;
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Menu desktop */
@media (min-width: 992px) {
    .nav-link i {
        display: none;
    }
}

/* Animation au scroll */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.show {
    animation: fadeIn 0.3s ease forwards;
}

/* Responsive pour petits écrans */
@media (max-width: 576px) {
    .topbar {
        font-size: 0.75rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
        width: 100%;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* Scrollbar personnalisée pour le menu mobile */
.navbar-collapse::-webkit-scrollbar {
    width: 6px;
}

.navbar-collapse::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.navbar-collapse::-webkit-scrollbar-thumb {
    background: #ffbe01;
    border-radius: 10px;
}

.navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/*END NAV*/

   /* HERO */
  .hero-section {
    position: relative;
    height: 80vh; /* Ajuste la hauteur selon tes besoins */
    display: flex;
    align-items: center;
    overflow: hidden; /* Important pour cacher le débordement du zoom */
    color: white;
}

/* L'image d'arrière-plan avec animation */
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=2015&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomEffect 20s infinite alternate;
}

/* Animation de zoom doux */
@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

/* Contenu du texte */
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

/* Animation d'apparition du texte */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Petit effet de pulse sur le bouton */
.btn-warning {
    transition: transform 0.3s ease;
}
.btn-warning:hover {
    transform: scale(1.05);
}

/* END HERO */

   .section-title {
       font-weight: 700;
       color: var(--primary-blue);
       margin-bottom: 25px;
       text-transform: uppercase;
   }

   /* SERVICES */
   .services-section {
       padding: 100px 0;
       background: var(--gray-light);
   }

   .service-card {
       background: white;
       border-radius: 12px;
       border: none;
       box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
       padding: 2rem;
       height: 100%;
       transition: var(--transition);
       border-top: 5px solid transparent;
       position: relative;
       overflow: hidden;
   }

   .service-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 5px;
       background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue));
       transition: var(--transition);
   }

   .service-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 35px rgba(0, 74, 173, 0.15);
   }

   .service-card:hover::before {
       height: 100%;
       opacity: 0.05;
   }

   .service-icon {
       width: 70px;
       height: 70px;
       background: linear-gradient(135deg, var(--primary-yellow), #ffd700);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.5rem;
       color: var(--dark-blue);
       font-size: 1.8rem;
   }

   .service-card h4 {
       color: var(--dark-blue);
       font-weight: 700;
       margin-bottom: 1rem;
       font-size: 1.25rem;
   }

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

   /* ABOUT */
   .about-section {
       padding: 100px 0;
       position: relative;
   }

   .about-section img {
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
       transform: perspective(1000px) rotateY(-5deg);
       transition: var(--transition);
   }

   .about-section img:hover {
       transform: perspective(1000px) rotateY(0deg);
   }

   .about-section h3 {
       color: var(--dark-blue);
       font-weight: 800;
       margin-bottom: 1.5rem;
       font-size: 2.2rem;
   }

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

   .about-section ul li {
       padding: 0.75rem 0;
       padding-left: 2.5rem;
       position: relative;
       color: #555;
       font-size: 1.05rem;
   }

   .about-section ul li::before {
       content: '✓';
       position: absolute;
       left: 0;
       color: var(--primary-yellow);
       font-weight: bold;
       font-size: 1.2rem;
   }

   /* CTA */
   .cta-section {
       background: var(--primary-blue);
       color: #fff;
       padding: 70px 0;
       text-align: center;
   }


   .cta-parallax {
       background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
           url('/images/OR68WQ0.jpg') center/cover no-repeat fixed;
       padding: 120px 0;
       background-attachment: fixed;
       /* Parallax effect */
   }

   @media (max-width: 768px) {
       .cta-parallax {
           background-attachment: scroll;
       }
   }

   .swiper {
       padding-bottom: 50px;
   }

   .swiper-slide {
       width: 330px;
   }

   .card {
       transition: transform .3s ease, box-shadow .3s ease;
   }

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

   .swiper-button-prev,
   .swiper-button-next {
       color: #004aad;
   }

   .swiper-pagination-bullet-active {
       background: #004aad;
   }

   .project-card {
       border: 0;
       border-radius: 0.75rem;
       overflow: hidden;
       transition: transform .25s ease, box-shadow .25s ease;
       background: #ffffff;
   }

   .project-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 12px 30px rgba(16, 24, 40, 0.12);
   }

   .project-card .card-img-top {
       height: 220px;
       object-fit: cover;
       width: 100%;
       display: block;
   }

   .project-card .card-body {
       padding: 1.25rem;
   }

   .project-card .project-title {
       font-size: 1.05rem;
       margin-bottom: 0.5rem;
   }

   .project-card .project-desc {
       color: #6c757d;
       font-size: 0.95rem;
       margin-bottom: 0.75rem;
   }

   .project-card .project-actions {
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 0.5rem;
   }

   .project-card .btn-sm {
       padding: 0.35rem 0.6rem;
       font-size: 0.85rem;
   }


   /* contact */

   /* SECTION CONTACT */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue));
}

/* Carte de contact */
.contact-map {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.15) !important;
}

.map-container {
    position: relative;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 95%, rgba(0, 74, 173, 0.1) 100%);
}

.map-header {
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
}

/* Formulaire de contact */
.contact-form-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.15) !important;
}

/* Champs de formulaire */
.form-control-lg {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.15);
    transform: translateY(-2px);
}

.form-label {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

/* Bouton d'envoi */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
}

/* Icônes dans le formulaire */
.icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 74, 173, 0.1);
    transition: all 0.3s ease;
}

.icon-wrapper:hover {
    background: rgba(0, 74, 173, 0.2);
    transform: rotate(5deg);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-card {
        margin-top: 2rem;
    }
    
    .form-control-lg {
        padding: 0.875rem 1rem;
    }
}

/* Animation pour les champs */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group:focus-within label {
    color: var(--primary-blue);
}

/* Alertes stylisées */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* État de chargement pour le bouton */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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


/* page service */

/* Hero Section Services */
.services-hero {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9), rgba(0, 50, 122, 0.95)),
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 190, 1, 0.2) 0%, transparent 50%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.highlight {
    color: #ffbe01;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.services-hero .stat-item {
    text-align: center;
}

.services-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffbe01;
    line-height: 1;
}

.services-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    color:  #fff;
}

/* Intro Section */
.intro-section {
    background: white;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    font-weight: 500;
}

.trust-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #004aad, #00327a);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Process Section */
.process-section .process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-section .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-section .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, #004aad, transparent);
}

.process-section .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #004aad, #00327a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.process-section .step-content h4 {
    color: #004aad;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-section .step-content p {
    color: #666;
    margin: 0;
}

/* Service Cards Detailed */
.service-card-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.service-icon-wrapper {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-icon-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.service-icon-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.service-icon-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.service-icon-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

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

.service-title {
    color: #004aad;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.service-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.service-cta .btn {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #004aad 0%, #00327a 100%);
}

.reason-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.reason-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reason-card p {
    opacity: 0.85;
    margin: 0;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.quote-icon {
    font-size: 2rem;
    color: #004aad;
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #004aad;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.author-info span {
    font-size: 0.85rem;
    color: #777;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #004aad 0%, #00327a 100%);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 50%;
        top: 100px;
        bottom: -30px;
        transform: translateX(-50%);
    }
}

/* Portfolio */

/* Hero Section Portfolio */
.portfolio-hero {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.9), rgba(0, 50, 122, 0.95)),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 190, 1, 0.2) 0%, transparent 50%);
}

.portfolio-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.portfolio-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.portfolio-hero .stat-item {
    text-align: center;
}

.portfolio-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffbe01;
    line-height: 1;
}

.portfolio-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Filtres */
.filter-buttons {
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #004aad, #00327a);
    color: white;
    border-color: #004aad;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.2);
}

/* Portfolio Grid */
.portfolio-grid {
    background: #f8fafc;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.project-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #adb5bd;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 74, 173, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

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

.project-category .badge {
    background: rgba(255, 190, 1, 0.9);
    color: #00327a;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

.project-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.project-actions a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.project-actions a:hover {
    background: #004aad;
    color: white;
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00327a;
    margin-bottom: 0.75rem;
}

.project-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #777;
    font-size: 0.85rem;
}

.meta-item i {
    color: #004aad;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: #e8f1ff;
    color: #004aad;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Case Studies */
.case-study-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-image {
    height: 100%;
    min-height: 250px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 2rem;
}

.case-study-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00327a;
    margin-bottom: 1.5rem;
}

.case-study-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.case-study-stats .stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #004aad;
    line-height: 1;
}

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

.case-study-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-case-study {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #004aad;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-case-study:hover {
    color: #00327a;
    gap: 1rem;
}

/* Client Testimonials */
.client-testimonial {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.testimonial-rating {
    color: #ffbe01;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #004aad;
}

.client-details h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.client-details span {
    font-size: 0.9rem;
    color: #777;
}

/* Empty Portfolio */
.empty-portfolio {
    background: white;
    border-radius: 15px;
    padding: 4rem 2rem;
    border: 2px dashed #dee2e6;
}

.empty-icon {
    font-size: 4rem;
    color: #adb5bd;
}

/* CTA Section */
.portfolio-cta {
    background: linear-gradient(135deg, #004aad 0%, #00327a 100%);
    position: relative;
    overflow: hidden;
    
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .portfolio-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-hero .hero-stats {
        gap: 2rem;
    }
    
    .portfolio-hero .stat-number {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .case-study-card .row {
        flex-direction: column;
    }
    
    .case-study-image {
        min-height: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Animation pour les filtres */
.portfolio-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

/* Projet Show */

/* Hero Section du projet */
.project-hero {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.95), rgba(0, 50, 122, 0.98));
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffbe01;
    transform: translateX(-5px);
}

.project-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.project-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 800px;
}

.project-meta-header {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.meta-item i {
    color: #ffbe01;
}

.status-badge {
    background: rgba(255, 190, 1, 0.2);
    color: #ffbe01;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Section Showcase */
.project-showcase {
    padding: 3rem 0;
    background: #f8fafc;
}

.project-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.project-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.project-image-wrapper:hover .project-main-image {
    transform: scale(1.02);
}

.project-live-preview {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

.btn-live-preview {
    background: rgba(255, 255, 255, 0.95);
    color: #004aad;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-live-preview:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Section Détails */
.project-description-card,
.project-info-card,
.project-tech-card,
.project-results-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.card-header {
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    padding: 1.5rem;
    border-bottom: 2px solid #e9ecef;
}

.card-title {
    color: #004aad;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.card-body {
    padding: 1.5rem;
}

.description-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.section-subtitle {
    color: #004aad;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Objectifs */
.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.objective-item i {
    color: #28a745;
    margin-top: 0.25rem;
}

.objective-item span {
    color: #444;
}

/* Challenges */
.challenges-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #004aad;
}

/* Informations techniques */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-weight: 500;
}

.info-label i {
    color: #004aad;
}

.info-value {
    font-weight: 600;
    color: #333;
}

/* Badges de statut */
.status-indicator {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-complete {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.status-in-progress {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-planned {
    background: rgba(108, 117, 125, 0.15);
    color: #6c757d;
}

/* Technologies */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: linear-gradient(135deg, #e8f1ff, #d4e2ff);
    color: #004aad;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: linear-gradient(135deg, #d4e2ff, #b8d0ff);
    transform: translateY(-2px);
}

/* Résultats */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.result-item i {
    color: #004aad;
    margin-top: 0.25rem;
}

.result-item span {
    color: #444;
}

/* CTA Card */
.project-cta-card {
    background: linear-gradient(135deg, #004aad, #00327a);
    border-radius: 15px;
    overflow: hidden;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
}

.project-cta-card .card-body {
    padding: 2rem;
}

.project-cta-card i {
    color: #ffbe01;
}

.project-cta-card h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.project-cta-card .btn {
    background: white;
    color: #004aad;
    border: none;
    font-weight: 600;
    padding: 0.75rem;
}

.project-cta-card .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Témoignage client */
.project-testimonial {
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
}

.testimonial-wrapper {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.client-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #004aad;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial-content {
    position: relative;
    padding: 0 2rem;
}

.quote-icon-start,
.quote-icon-end {
    position: absolute;
    font-size: 3rem;
    color: #004aad;
    opacity: 0.2;
}

.quote-icon-start {
    top: -1rem;
    left: 0;
}

.quote-icon-end {
    bottom: -1rem;
    right: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Projets similaires */
.related-project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.related-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 74, 173, 0.15);
}

.project-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-project-card:hover .project-thumbnail img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 74, 173, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-project-card:hover .project-overlay {
    opacity: 1;
}

.btn-view-project {
    background: white;
    color: #004aad;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-project:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    background: #e8f1ff;
    color: #004aad;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00327a;
    margin-bottom: 0.5rem;
}

.project-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #777;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* CTA final */
.project-cta-final {
    background: linear-gradient(135deg, #004aad 0%, #00327a 100%);
    position: relative;
    overflow: hidden;
}

.project-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

/* Responsive */
@media (max-width: 768px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-meta-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-live-preview {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .testimonial-wrapper {
        padding: 2rem;
    }
    
    .testimonial-content {
        padding: 0;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Animation pour l'image */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-image-wrapper {
    animation: fadeIn 0.6s ease forwards;
}


/* Contact */

/* Hero Section Contact */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.95), rgba(0, 50, 122, 0.98)),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 190, 1, 0.2) 0%, transparent 50%);
}

.contact-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.contact-hero .highlight {
    color: #ffbe01;
    font-weight: 600;
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-info-item i {
    font-size: 2rem;
    color: #ffbe01;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info-item .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.contact-info-item .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .value:hover {
    color: #ffbe01;
}

/* Carte Google Maps */
.contact-map-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.contact-map-card .card-header {
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.contact-map-card .card-title {
    color: #004aad;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
}

.map-container {
    position: relative;
    height: 400px;
}

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

.map-footer {
    background: white;
    border-top: 1px solid #f0f0f0;
}

/* Informations de contact */
.contact-info-card {
    margin-top: 2rem;
}

.info-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 74, 173, 0.1);
    border-color: #004aad;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f1ff, #d4e2ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #004aad;
    font-size: 1.5rem;
}

.info-content h5 {
    color: #004aad;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.info-link {
    color: #004aad;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #00327a;
    gap: 0.5rem;
}

.info-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.info-link:hover::after {
    transform: translateX(3px);
}

/* Formulaire de contact */
.contact-form-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.contact-form-card .card-header {
    background: linear-gradient(135deg, #004aad, #00327a);
    color: white;
    padding: 2rem;
    border-bottom: none;
}

.contact-form-card .card-title {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-card .card-subtitle {
    opacity: 0.9;
    margin: 0;
    font-size: 1rem;
}

.contact-form-card .card-body {
    padding: 2rem;
}

/* Champs de formulaire */
.form-floating {
    margin-bottom: 1rem;
}

.form-floating label {
    color: #666;
    font-weight: 500;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #004aad;
    box-shadow: 0 0 0 0.25rem rgba(0, 74, 173, 0.15);
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus, .form-select.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Type de demande */
.request-type {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.form-check-inline {
    margin-right: 1.5rem;
}

.form-check-input:checked {
    background-color: #004aad;
    border-color: #004aad;
}

.form-check-label {
    font-weight: 500;
    color: #555;
}

/* Alertes */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Bouton d'envoi */
.btn-primary {
    background: linear-gradient(135deg, #004aad, #00327a);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00327a, #004aad);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #004aad;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.faq-question i {
    color: #004aad;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question h5 {
    color: #004aad;
    margin: 0;
    font-size: 1.1rem;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    padding-left: 2.2rem;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    min-width: 150px;
    justify-content: center;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-link.linkedin { background: #0a66c2; }
.social-link.twitter { background: #1da1f2; }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .contact-info-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-map-card {
        margin-bottom: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
    }
    
    .request-type {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-check-inline {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Animation pour le formulaire */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Validation en temps réel */
.was-validated .form-control:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}


/* demande services */

/* Hero Section Demande de Service */
.service-request-hero {
    background: linear-gradient(135deg, rgba(0, 74, 173, 0.95), rgba(0, 50, 122, 0.98)),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-request-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 190, 1, 0.2) 0%, transparent 50%);
}

.service-request-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-request-hero .hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.service-request-hero .highlight {
    color: #ffbe01;
    font-weight: 600;
}

.hero-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid #ffbe01;
    color: #ffbe01;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.step:last-child .step-number::after {
    display: none;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Section Introduction */
.request-intro {
    background: white;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8f1ff, #d4e2ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004aad;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    color: #004aad;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.benefit-content p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.intro-stats .stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.intro-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 74, 173, 0.15);
}

.intro-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #004aad;
    line-height: 1;
    margin-bottom: 0.5rem;
    
}

.intro-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Formulaire */
.form-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-card .card-header {
    background: linear-gradient(135deg, #f8fafc, #e9ecef);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-card .card-title {
    color: #004aad;
    font-weight: 700;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.form-card .card-body {
    padding: 2rem;
}

/* Options de service */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-option {
    position: relative;
}

.service-radio {
    position: absolute;
    opacity: 0;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-radio:checked + .service-label {
    background: linear-gradient(135deg, #e8f1ff, #d4e2ff);
    border-color: #004aad;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.1);
}

.service-radio:checked + .service-label .service-icon {
    background: #004aad;
    color: white;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-info h6 {
    color: #004aad;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.service-info p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Options de budget */
.budget-options .btn-group {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.budget-options .btn {
    flex: 1;
    min-width: 120px;
    border: 2px solid #dee2e6;
    color: #666;
    font-weight: 500;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.budget-options .btn:hover {
    border-color: #004aad;
    color: #004aad;
    background: #f8f9fa;
}

.budget-options .btn.active {
    background: #004aad;
    border-color: #004aad;
    color: white;
}

/* Upload de fichiers */
.file-upload-area {
    position: relative;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: #004aad;
    background: #f8fafc;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    pointer-events: none;
}

.upload-placeholder h5 {
    color: #004aad;
    margin: 1rem 0 0.5rem;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
}

.file-size {
    color: #666;
    font-size: 0.85rem;
}

.file-remove {
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Privacy checkbox */
.privacy-check {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #004aad;
}

.privacy-check .form-check-input:checked {
    background-color: #004aad;
    border-color: #004aad;
}

/* Bouton d'envoi */
.submit-section .btn-primary {
    background: linear-gradient(135deg, #004aad, #00327a);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 1rem 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-section .btn-primary:hover {
    background: linear-gradient(135deg, #00327a, #004aad);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 173, 0.3);
}

/* Section CTA */
.request-cta {
    background: linear-gradient(135deg, #004aad 0%, #00327a 100%);
    position: relative;
    overflow: hidden;
}

.request-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.contact-option i {
    font-size: 2rem;
    color: #ffbe01;
}

.contact-option .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-option .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .service-request-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .service-request-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-steps {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .step-number::after {
        height: 20px;
        bottom: -25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 0.5rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .budget-options .btn-group {
        flex-direction: column;
    }
    
    .budget-options .btn {
        min-width: 100%;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option {
        width: 100%;
        max-width: 300px;
    }
}

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

.form-card {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.2s);
    opacity: 0;
}

   /* FOOTER */
   .footer {
       background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
       color: white;
       padding: 80px 0 30px;
       position: relative;
       overflow: hidden;
   }

   .footer::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 5px;
       background: linear-gradient(90deg, var(--primary-yellow), #ffd700);
   }

   .footer-container {
       display: grid;
       grid-template-columns: 2fr 1fr 1fr 1fr;
       gap: 40px;
       position: relative;
       z-index: 2;
   }

   @media (max-width: 992px) {
       .footer-container {
           grid-template-columns: 1fr 1fr;
           gap: 40px 20px;
       }
   }

   @media (max-width: 576px) {
       .footer-container {
           grid-template-columns: 1fr;
       }
   }

   .footer-section h3 {
       font-size: 1.25rem;
       font-weight: 600;
       margin-bottom: 1.5rem;
       padding-bottom: 0.75rem;
       position: relative;
       color: var(--primary-yellow);
   }

   .footer-section h3::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 2px;
       background: var(--primary-yellow);
   }

   .footer-logo {
       width: 160px;
       margin-bottom: 1.5rem;
       filter: brightness(0) invert(1);
   }

   .footer-section p {
       opacity: 0.9;
       line-height: 1.7;
       margin-bottom: 1.5rem;
   }

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

   .footer-section ul li {
       margin-bottom: 0.75rem;
   }

   .footer-section ul li a {
       color: rgba(255, 255, 255, 0.9);
       text-decoration: none;
       transition: var(--transition);
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
   }

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

   .contact-info p {
       display: flex;
       align-items: center;
       gap: 0.75rem;
       margin-bottom: 1rem;
       opacity: 0.9;
   }

   .contact-info i {
       color: var(--primary-yellow);
       width: 20px;
   }

   .social-icons {
       display: flex;
       gap: 1rem;
       margin-top: 1.5rem;
   }

   .social-icons a {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 42px;
       height: 42px;
       border-radius: 50%;
       background: rgba(255, 255, 255, 0.1);
       color: white;
       font-size: 1.1rem;
       transition: var(--transition);
   }

   .social-icons a:hover {
       background: var(--primary-yellow);
       color: var(--dark-blue);
       transform: translateY(-3px);
   }

   .copyright {
       text-align: center;
       margin-top: 60px;
       padding-top: 30px;
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       font-size: 0.9rem;
       opacity: 0.8;
   }
/* CAN 2025 */

    /* Section CAN 2025 */
.can-africa-2025 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.can-africa-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(193, 39, 45, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 98, 51, 0.05) 0%, transparent 50%);
}

/* En-tête CAN */
.can-header {
    animation: fadeInDown 1s ease;
}

.can-logo-banner {
    margin-bottom: 2rem;
}

.can-logo {
    display: inline-block;
    background: linear-gradient(135deg, #c1272d, #006233);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 900;
    font-size: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(193, 39, 45, 0.3);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(193, 39, 45, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(193, 39, 45, 0.5); }
}

.logo-text {
    letter-spacing: 3px;
}

.logo-year {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    opacity: 0.9;
}

.logo-subtitle {
    margin-top: 0.5rem;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.flags-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.flag-emoji {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.can-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

.highlight-can {
    color: #c1272d;
    position: relative;
    display: inline-block;
}

.highlight-can::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: #c1272d;
    border-radius: 2px;
}

.highlight-africa {
    color: #006233;
    font-size: 1.5rem;
}

.can-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Barre de progression */
.competition-progress {
    max-width: 800px;
    margin: 2rem auto 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c1272d, #006233);
    border-radius: 4px;
    position: relative;
    transition: width 2s ease;
}

.progress-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border: 3px solid #c1272d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c1272d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: pulseIndicator 2s infinite;
}

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

.progress-dates {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

/* Groupes CAN */
.groups-grid-can {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.group-card-can {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #c1272d;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.group-card-can:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(193, 39, 45, 0.15);
}

.group-header-can {
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group-name-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.group-name {
    color: #c1272d;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0;
}

.host-badge, .favorite-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.host-badge {
    background: rgba(193, 39, 45, 0.1);
    color: #c1272d;
}

.favorite-badge {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.matches-count {
    text-align: right;
}

.match-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 2px;
}

.match-dot.active {
    background: #28a745;
}

.matches-count small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.8rem;
}

/* Liste des équipes */
.teams-list-can {
    padding: 1rem 1.5rem;
}

.team-item-can {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.team-item-can:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.team-item-can.host {
    background: rgba(193, 39, 45, 0.05);
    border-left-color: #c1272d;
}

.team-item-can.champion {
    background: rgba(255, 193, 7, 0.05);
    border-left-color: #ffc107;
}

.team-item-can.eliminated {
    opacity: 0.6;
    background: rgba(108, 117, 125, 0.05);
}

.team-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-flag {
    font-size: 1.5rem;
}

.team-name {
    font-weight: 600;
    color: #333;
    min-width: 100px;
}

.team-fifa {
    font-size: 0.8rem;
    color: #666;
    background: #e9ecef;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
}

.team-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.points {
    font-weight: 700;
    color: #006233;
    min-width: 40px;
    text-align: center;
}

.form {
    font-weight: 600;
    color: #333;
    font-family: monospace;
    letter-spacing: 1px;
}

.group-update {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.group-update i {
    color: #c1272d;
}

/* Stades CAN */
.stadiums-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stadium-item-can {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.stadium-image-can {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.stadium-image-can img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.stadium-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.capacity, .matches {
    font-weight: 600;
}

.stadium-info-can {
    padding: 1.5rem;
}

.stadium-info-can h4 {
    color: #c1272d;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.stadium-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.stadium-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stadium-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Carte des villes */
.card-header-can {
    background: linear-gradient(135deg, #c1272d, #006233);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-can {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

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

.cities-count .number {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.cities-count .label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.card-body-can {
    padding: 1.5rem;
}

.marocco-map-can {
    position: relative;
}

.map-visual {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f0f7f0, #e0f0e0);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.city-dot {
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.city-dot .dot {
    width: 16px;
    height: 16px;
    background: #c1272d;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(193, 39, 45, 0.5);
    transition: all 0.3s ease;
}

.city-dot:hover .dot {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(193, 39, 45, 0.8);
}

.city-tooltip {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c1272d;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    pointer-events: none;
}

.city-dot:hover .city-tooltip {
    opacity: 1;
}

/* Position des villes */
.casablanca { top: 40%; left: 25%; }
.rabat { top: 35%; left: 30%; }
.marrakech { top: 60%; left: 35%; }
.agadir { top: 65%; left: 20%; }
.tanger { top: 25%; left: 25%; }
.fez { top: 35%; left: 45%; }

.cities-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-detail {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid transparent;
    display: none;
}

.city-detail.active {
    display: block;
    border-left-color: #c1272d;
    background: #e8f1ff;
}

.city-detail h5 {
    color: #c1272d;
    margin-bottom: 0.5rem;
}

.city-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #666;
}

.city-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.city-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Infos pratiques */
.info-grid-can {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item-can {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item-can:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c1272d, #006233);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.info-content h6 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.info-content p {
    color: #006233;
    font-weight: 600;
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
}

.info-content small {
    color: #666;
    font-size: 0.75rem;
}

.transport-info {
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.transport-info h6 {
    color: #c1272d;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.transport-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Culture et tourisme */
.culture-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.highlight-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.highlight-content h6 {
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.highlight-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.tips-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.tips-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* SEO Content */
.can-seo-content {
    animation: fadeInUp 1s ease;
}

.seo-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.seo-title {
    color: #c1272d;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.seo-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-text p {
    margin-bottom: 1rem;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.seo-keywords strong {
    color: #333;
    margin-right: 0.5rem;
}

.seo-keywords span {
    background: #f0f7f0;
    color: #006233;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Newsletter CAN */
.newsletter-can-card {
    background: linear-gradient(135deg, #c1272d, #006233);
    border-radius: 15px;
    padding: 2rem;
    color: white;
}

.newsletter-title-can {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.newsletter-desc-can {
    opacity: 0.9;
    margin: 0;
}

.newsletter-form-can .input-group {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form-can .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.btn-can {
    background: white;
    color: #c1272d;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-can:hover {
    background: #f8f9fa;
    color: #c1272d;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .can-title {
        font-size: 1.8rem;
    }
    
    .flags-banner {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .groups-grid-can {
        grid-template-columns: 1fr;
    }
    
    .stadiums-slider {
        grid-template-columns: 1fr;
    }
    
    .info-grid-can {
        grid-template-columns: 1fr;
    }
    
    .newsletter-can-card .row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-info {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .team-name {
        min-width: auto;
    }
}



.site-evolution-section {
    background: linear-gradient(135deg, #004aad 0%, #003a85 100%);
    color: #fff;
    overflow: hidden;
}

.site-evolution-section .badge {
    background-color: #ffbe01;
    color: #000;
    font-weight: 600;
}

.site-evolution-section .section-title {
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}
.site-evolution-section 
.section-text {
    opacity: 0.95;
}

.site-evolution-section .feature-list {
    list-style: none;
    padding: 0;
}

.site-evolution-section .feature-list li {
    margin-bottom: 10px;
}

.site-evolution-section .feature-list i {
    color: #ffbe01;
    margin-right: 8px;
}

.btn-evolution {
    background-color: #ffbe01;
    color: #000;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-evolution:hover {
    background-color: #fff;
    color: #004aad;
}

/* Icône animée */
.site-evolution-section .icon-box {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    animation: pulse 3s infinite;
}

.site-evolution-section .icon-box i {
    font-size: 80px;
    color: #ffbe01;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.site-evolution-section .animate-left {
    animation: fadeLeft 1s ease forwards;
}

.site-evolution-section .animate-right {
    animation: fadeRight 1s ease forwards;
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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