/* Couleurs principales - Vert & Blanc */
:root {
    --vert-primary: #0f6e3f;
    --vert-light: #2c9b5e;
    --vert-soft: #e6f4ea;
    --vert-dark: #0a4f2c;
    --blanc: #ffffff;
    --gris-bg: #f8fafc;
    --gris-texte: #334155;
    --gris-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gris-bg);
    color: var(--gris-texte);
    overflow-x: hidden;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    color: #1e293b;
}

.text-vert {
    color: var(--vert-primary) !important;
}

.bg-vert-soft {
    background-color: var(--vert-soft);
}

/* Navbar */
.navbar {
    background-color: var(--blanc);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 0.8rem 0;
}

.navbar-brand img {
    height: 48px;
    transition: transform 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.02);
}

.nav-link {
    font-weight: 500;
    color: #1e293b;
    transition: 0.2s;
    border-radius: 40px;
    padding: 8px 16px;
}

.nav-link:hover, .nav-link.active {
    color: var(--vert-primary);
    background-color: var(--vert-soft);
}

/* Boutons */
.btn-vert {
    background-color: var(--vert-primary);
    color: white;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
}

.btn-vert:hover {
    background-color: var(--vert-light);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-vert {
    border: 2px solid var(--vert-primary);
    color: var(--vert-primary);
    border-radius: 40px;
    font-weight: 600;
    background: transparent;
    transition: all 0.2s;
}

.btn-outline-vert:hover {
    background-color: var(--vert-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--vert-primary);
    font-weight: 600;
    text-decoration: none;
}

.btn-link:hover {
    color: var(--vert-light);
    text-decoration: underline;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--vert-soft) 0%, var(--blanc) 100%);
    padding: 80px 0 60px;
    border-radius: 0 0 40px 40px;
}

.hero-icon {
    font-size: 8rem;
    color: var(--vert-primary);
    opacity: 0.6;
}

/* Statistiques */
.stats-section {
    padding: 50px 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--vert-primary);
}

.stat-label {
    color: var(--gris-texte);
    font-weight: 500;
}

/* Service cards */
.services-preview, .page-content {
    padding: 60px 0;
}

.service-card {
    background: var(--blanc);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.25s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(15,110,63,0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(15,110,63,0.15);
    border-color: var(--vert-primary);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--vert-primary);
    margin-bottom: 1.2rem;
}

.service-card-full {
    background: var(--blanc);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.25s;
    border: 1px solid var(--gris-border);
}

.service-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
}

.service-icon-large {
    font-size: 3.5rem;
    color: var(--vert-primary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

.service-features li i {
    color: var(--vert-primary);
    margin-right: 0.5rem;
}

.service-features-list {
    list-style: none;
    padding-left: 0;
}

.service-features-list li {
    margin-bottom: 0.75rem;
}

/* Service detail */
.service-detail-card {
    background: var(--blanc);
    border-radius: 28px;
    padding: 2rem;
}

.service-detail-icon {
    font-size: 4rem;
    color: var(--vert-primary);
}

/* Call to Action */
.cta-section {
    background: var(--vert-primary);
    color: white;
    padding: 50px 0;
    border-radius: 24px;
    margin: 40px 0;
}

.cta-section h3, .cta-section p {
    color: white;
}

/* Footer */
footer {
    background-color: #0a2e1f;
    color: #e2e8f0;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.badge-certif {
    background-color: rgba(255,255,255,0.2);
    color: white;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.badge-certif-lg {
    background-color: var(--vert-soft);
    color: var(--vert-primary);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    display: inline-block;
}

/* Team */
.team-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--vert-primary);
}

/* Titre underline */
.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--vert-primary);
    margin: 1rem 0;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .service-card, .service-card-full {
        padding: 1.5rem;
    }
    
    .team-img {
        width: 100px;
        height: 100px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content {
    animation: fadeIn 0.4s ease-out;
}
 /* Styles pour les cartes services avec images de fond */
    .service-card-image {
        position: relative;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        overflow: hidden;
        min-height: 280px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    
    .service-card-image:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px rgba(0,0,0,0.2);
    }
    
    .service-card-content {
        position: relative;
        z-index: 2;
        padding: 2rem 1.5rem;
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 280px;
    }
    
    .service-card-content h5 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
        line-height: 1.5;
    }
    
    .btn-service {
        display: inline-block;
        color: white;
        font-weight: 600;
        text-decoration: none;
        padding: 8px 20px;
        border: 2px solid white;
        border-radius: 40px;
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(5px);
    }
    
    .btn-service:hover {
        background: var(--vert-primary);
        border-color: var(--vert-primary);
        color: white;
        transform: translateX(5px);
    }
    
    @media (max-width: 768px) {
        .service-card-image {
            min-height: 240px;
        }
        .service-card-content {
            padding: 1.5rem 1rem;
            min-height: 240px;
        }
        .service-card-content h5 {
            font-size: 1.3rem;
        }
        .service-card-content p {
            font-size: 0.85rem;
        }
        .btn-service {
            padding: 6px 16px;
            font-size: 0.85rem;
        }
    }
    /* Styles supplémentaires pour les témoignages Maya Transit */
    .testimonials-section {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 70px 0;
    }
    
    .testimonial-card {
        background: white;
        border-radius: 24px;
        padding: 2rem;
        margin: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid rgba(15,110,63,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(15,110,63,0.1);
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--vert-primary);
    }
    
    .testimonial-stars {
        color: #ffc107;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-name {
        font-weight: 700;
        color: var(--vert-primary);
        margin-bottom: 0;
    }
    
    .testimonial-position {
        font-size: 0.85rem;
        color: #718096;
    }
    
    .testimonial-text {
        font-style: italic;
        color: #4a5568;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .trust-badge {
        background: white;
        padding: 8px 20px;
        border-radius: 40px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        font-size: 0.9rem;
        font-weight: 500;
        color: #2d3748;
    }
    
    .trust-badge i {
        margin-right: 8px;
    }
    
    /* Swiper personnalisation */
    .swiper-button-next,
    .swiper-button-prev {
        color: var(--vert-primary);
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }
    
    .swiper-pagination-bullet-active {
        background: var(--vert-primary);
    }
    
    @media (max-width: 768px) {
        .testimonials-section {
            padding: 50px 0;
        }
        
        .testimonial-card {
            padding: 1.5rem;
            margin: 0.5rem;
        }
        
        .testimonial-avatar {
            width: 55px;
            height: 55px;
        }
        
        .testimonial-text {
            font-size: 0.9rem;
        }
        
        .trust-badge {
            padding: 6px 16px;
            font-size: 0.8rem;
        }
    }
        /* Styles pour la section partenaires */
    .partners-section {
        padding: 60px 0;
        background: white;
        position: relative;
        overflow: hidden;
    }
    
    .partner-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        align-items: center;
        justify-items: center;
        margin: 2rem 0;
    }
    
    .partner-logo {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        background: white;
        border-radius: 20px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 220px;
        cursor: pointer;
        border: 1px solid rgba(15,110,63,0.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    
    .partner-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(15,110,63,0.1);
        border-color: rgba(15,110,63,0.3);
    }
    
    .partner-img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(0.1);
        transition: filter 0.3s ease;
    }
    
    .partner-logo:hover .partner-img {
        filter: grayscale(0);
    }
    
    /* Tooltip au survol */
    .partner-tooltip {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--vert-primary);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.7rem;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10;
        pointer-events: none;
    }
    
    .partner-logo:hover .partner-tooltip {
        opacity: 1;
        visibility: visible;
        bottom: -30px;
    }
    
    .partner-tooltip::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 5px solid var(--vert-primary);
    }
    
    /* Cartes d'information partenaires */
    .partner-info-card {
        background: var(--vert-soft);
        border-radius: 20px;
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease;
        height: 100%;
    }
    
    .partner-info-card:hover {
        transform: translateY(-3px);
    }
    
    .partner-info-card h5 {
        color: var(--vert-primary);
        font-weight: 700;
        margin-bottom: 0.75rem;
    }
    
    /* Animation d'apparition */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .partner-logo {
        animation: fadeInUp 0.5s ease-out forwards;
        opacity: 0;
    }
    
    .partner-logo:nth-child(1) { animation-delay: 0.05s; }
    .partner-logo:nth-child(2) { animation-delay: 0.1s; }
    .partner-logo:nth-child(3) { animation-delay: 0.15s; }
    .partner-logo:nth-child(4) { animation-delay: 0.2s; }
    .partner-logo:nth-child(5) { animation-delay: 0.25s; }
    
    @media (max-width: 768px) {
        .partner-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }
        
        .partner-logo {
            padding: 1rem;
            max-width: 160px;
        }
        
        .partner-img {
            max-height: 45px;
        }
        
        .partner-tooltip {
            display: none;
        }
        
        .partner-info-card {
            padding: 1rem;
        }
        
        .partner-info-card h5 {
            font-size: 1rem;
        }
        
        .partner-info-card p {
            font-size: 0.8rem;
        }
    }
    
    @media (max-width: 480px) {
        .partner-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .partner-logo {
            max-width: 100%;
        }
    }
    /* Styles pour les cartes services avec images de fond */
    .service-card-bg {
        position: relative;
        background-size: cover;
        background-position: center;
        border-radius: 24px;
        overflow: hidden;
        height: 480px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        cursor: pointer;
    }
    
    .service-card-bg:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
    }
    
    /* Images de fond pour chaque service */
    .maritime-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                          url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=600');
    }
    
    .aerien-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                          url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=600');
    }
    
    .terrestre-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                          url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=600');
    }
    
    .dedouanement-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                          url('https://i.ibb.co/C59vNYs4/dedouanement.jpg');
    }
    
    .stockage-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                          url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=600');
    }
    
    .conseil-bg {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                          url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=600');
    }
    
    /* Overlay qui apparaît au survol */
    .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(15, 110, 63, 0.92) 0%, rgba(10, 79, 44, 0.95) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
        padding: 1.5rem;
    }
    
    .service-card-bg:hover .service-overlay {
        opacity: 1;
    }
    
    /* Contenu de la carte */
    .service-content {
        text-align: center;
        color: white;
        transform: translateY(20px);
        transition: transform 0.4s ease;
        max-height: 100%;
        overflow-y: auto;
    }
    
    .service-card-bg:hover .service-content {
        transform: translateY(0);
    }
    
    .service-content h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        opacity: 0.95;
    }
    
    .service-features {
        list-style: none;
        padding-left: 0;
        margin-bottom: 1.5rem;
        text-align: left;
        display: inline-block;
    }
    
    .service-features li {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .service-features li i {
        color: #ffc107;
        font-size: 0.9rem;
        width: 20px;
    }
    
    .btn-service {
        display: inline-block;
        background: transparent;
        color: white;
        font-weight: 600;
        text-decoration: none;
        padding: 10px 24px;
        border: 2px solid white;
        border-radius: 40px;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
    }
    
    .btn-service:hover {
        background: white;
        color: var(--vert-primary);
        transform: translateX(5px);
    }
    
    /* Scrollbar personnalisée pour le contenu */
    .service-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .service-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
    }
    
    .service-content::-webkit-scrollbar-thumb {
        background: white;
        border-radius: 10px;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .service-card-bg {
            height: 450px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
        }
        
        .service-content p {
            font-size: 0.85rem;
        }
        
        .service-features li {
            font-size: 0.8rem;
        }
    }
    
    @media (max-width: 768px) {
        .service-card-bg {
            height: 420px;
        }
        
        .service-content {
            padding: 0.5rem;
        }
        
        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }
        
        .service-features {
            margin-bottom: 1rem;
        }
        
        .service-features li {
            font-size: 0.75rem;
            margin-bottom: 0.4rem;
        }
        
        .btn-service {
            padding: 8px 20px;
            font-size: 0.85rem;
        }
    }
    
    /* Animation d'apparition */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .service-card-bg {
        animation: fadeInUp 0.6s ease-out forwards;
        opacity: 0;
    }
    
    .service-card-bg:nth-child(1) { animation-delay: 0.05s; }
    .service-card-bg:nth-child(2) { animation-delay: 0.1s; }
    .service-card-bg:nth-child(3) { animation-delay: 0.15s; }
    .service-card-bg:nth-child(4) { animation-delay: 0.2s; }
    .service-card-bg:nth-child(5) { animation-delay: 0.25s; }
    .service-card-bg:nth-child(6) { animation-delay: 0.3s; }
    /* Styles améliorés pour la page de tracking */
    .tracking-card {
        background: white;
        border-radius: 32px;
        padding: 2.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(15, 110, 63, 0.1);
    }
    
    /* Barre de recherche stylisée */
    .tracking-search-wrapper {
        margin-bottom: 2rem;
    }
    
    .tracking-search-wrapper .input-group-text {
        border-radius: 60px 0 0 60px;
        border: 1px solid #e2e8f0;
        border-right: none;
        background: white;
    }
    
    .tracking-search-wrapper .form-control {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-color: #e2e8f0;
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .tracking-search-wrapper .form-control:focus {
        box-shadow: none;
        border-color: #e2e8f0;
    }
    
    .tracking-search-wrapper .btn-vert {
        border-radius: 0 60px 60px 0;
        padding: 0.75rem 1.5rem;
    }
    
    /* Résultat du tracking */
    .tracking-result {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        border-radius: 24px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(15, 110, 63, 0.15);
        animation: slideDown 0.4s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Loader */
    .tracking-loader {
        text-align: center;
        padding: 2rem;
    }
    
    .tracking-loader .spinner-border {
        width: 3rem;
        height: 3rem;
    }
    
    /* Header du résultat */
    .tracking-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(15, 110, 63, 0.2);
    }
    
    .tracking-number {
        font-family: monospace;
        font-size: 1.2rem;
        font-weight: 700;
        background: var(--vert-soft);
        padding: 0.3rem 1rem;
        border-radius: 40px;
        color: var(--vert-primary);
    }
    
    /* Badges de statut */
    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.2rem;
        border-radius: 40px;
        font-weight: 600;
        font-size: 0.85rem;
    }
    
    .status-badge i {
        font-size: 1rem;
    }
    
    .status-en-transit {
        background: #fff3e0;
        color: #f39c12;
    }
    
    .status-livre {
        background: #e8f5e9;
        color: #27ae60;
    }
    
    .status-dedouanement {
        background: #e3f2fd;
        color: #3498db;
    }
    
    .status-attente {
        background: #f5f5f5;
        color: #95a5a6;
    }
    
    /* Timeline */
    .timeline-container {
        margin: 1.5rem 0;
    }
    
    .timeline-title {
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--vert-primary);
    }
    
    .timeline {
        list-style: none;
        padding-left: 0;
        position: relative;
    }
    
    .timeline:before {
        content: '';
        position: absolute;
        left: 12px;
        top: 8px;
        bottom: 8px;
        width: 2px;
        background: linear-gradient(to bottom, var(--vert-primary), var(--vert-light));
    }
    
    .timeline-item {
        position: relative;
        padding-left: 40px;
        margin-bottom: 1.2rem;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 26px;
        height: 26px;
        background: white;
        border: 2px solid var(--vert-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .timeline-icon i {
        font-size: 0.7rem;
        color: var(--vert-primary);
    }
    
    .timeline-content {
        background: white;
        padding: 0.5rem 0;
    }
    
    .timeline-date {
        font-size: 0.7rem;
        color: #95a5a6;
        margin-bottom: 0.2rem;
    }
    
    .timeline-text {
        font-weight: 500;
        color: #2c3e50;
    }
    
    .timeline-location {
        font-size: 0.8rem;
        color: #7f8c8d;
    }
    
    /* Cartes d'information */
    .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #e2e8f0;
    }
    
    .info-card {
        background: white;
        padding: 1rem;
        border-radius: 16px;
        text-align: center;
        border: 1px solid #e2e8f0;
    }
    
    .info-card i {
        font-size: 1.5rem;
        color: var(--vert-primary);
        margin-bottom: 0.5rem;
    }
    
    .info-card .info-label {
        font-size: 0.7rem;
        color: #95a5a6;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .info-card .info-value {
        font-weight: 700;
        font-size: 1rem;
        margin-top: 0.25rem;
    }
    
    /* Boutons exemples */
    .example-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .example-tracking-btn {
        background: var(--vert-soft);
        border: none;
        padding: 0.6rem 1.2rem;
        border-radius: 40px;
        font-weight: 500;
        font-size: 0.85rem;
        color: var(--vert-primary);
        transition: all 0.2s ease;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .example-tracking-btn:hover {
        background: var(--vert-primary);
        color: white;
        transform: translateY(-2px);
    }
    
    .example-tracking-btn .badge {
        background: rgba(0,0,0,0.1);
        color: inherit;
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .example-tracking-btn:hover .badge {
        background: rgba(255,255,255,0.2);
    }
    
    /* Feature badges */
    .feature-badge {
        background: #f8fafc;
        padding: 0.5rem;
        border-radius: 40px;
        font-size: 0.8rem;
        color: #4a5568;
    }
    
    .feature-badge i {
        margin-right: 0.5rem;
    }
    
    /* Carte de localisation */
    .location-map {
        margin-top: 1rem;
        border-radius: 16px;
        overflow: hidden;
        height: 200px;
        background: #e2e8f0;
        position: relative;
    }
    
    .map-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #e6f4ea, #c8e6d9);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: var(--vert-primary);
    }
    
    @media (max-width: 768px) {
        .tracking-card {
            padding: 1.5rem;
        }
        
        .tracking-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        
        .example-tracking-btn {
            padding: 0.4rem 1rem;
            font-size: 0.75rem;
        }
        
        .info-grid {
            grid-template-columns: 1fr;
        }
    }
/* Styles pour la demande de devis améliorée */
    .quote-card {
        background: white;
        border-radius: 32px;
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(15, 110, 63, 0.1);
    }
    
    /* Progression */
    .quote-progress {
        position: relative;
        margin-bottom: 2rem;
    }
    
    .progress-steps {
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 2;
    }
    
    .step {
        text-align: center;
        flex: 1;
        cursor: pointer;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        background: #e2e8f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 8px;
        font-weight: bold;
        color: #64748b;
        transition: all 0.3s ease;
    }
    
    .step.active .step-circle {
        background: var(--vert-primary);
        color: white;
        box-shadow: 0 0 0 4px rgba(15, 110, 63, 0.2);
    }
    
    .step.completed .step-circle {
        background: var(--vert-primary);
        color: white;
    }
    
    .step-label {
        font-size: 0.8rem;
        color: #64748b;
        font-weight: 500;
    }
    
    .step.active .step-label {
        color: var(--vert-primary);
        font-weight: 600;
    }
    
    .progress-bar-line {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
    
    .progress-fill {
        height: 100%;
        background: var(--vert-primary);
        width: 0%;
        transition: width 0.3s ease;
    }
    
    /* Étapes du formulaire */
    .form-step {
        animation: fadeIn 0.4s ease-out;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .step-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--vert-soft);
        margin-bottom: 1rem;
    }
    
    .step-header i {
        font-size: 1.8rem;
    }
    
    .step-header h4 {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    /* Récapitulatif */
    .recap-container {
        background: #f8fafc;
        border-radius: 20px;
        padding: 1.5rem;
    }
    
    .recap-section {
        margin-bottom: 1.5rem;
    }
    
    .recap-section:last-child {
        margin-bottom: 0;
    }
    
    .recap-section h6 {
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--vert-primary);
    }
    
    .recap-content {
        padding-left: 1.5rem;
    }
    
    .recap-item {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px dashed #e2e8f0;
    }
    
    .recap-item .label {
        color: #64748b;
        font-weight: 500;
    }
    
    .recap-item .value {
        font-weight: 600;
        color: #1e293b;
    }
    
    /* Cartes d'aide */
    .help-card {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(15, 110, 63, 0.1);
    }
    
    .help-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(15, 110, 63, 0.1);
    }
    
    /* Formulaires */
    .form-control, .form-select {
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        transition: all 0.2s;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: var(--vert-primary);
        box-shadow: 0 0 0 3px rgba(15, 110, 63, 0.1);
    }
    
    .form-control-lg, .form-select-lg {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    /* Navigation */
    .form-navigation {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .btn-vert, .btn-outline-vert {
        padding: 0.75rem 1.5rem;
        font-weight: 600;
    }
    
    @media (max-width: 768px) {
        .quote-card {
            padding: 1.5rem;
        }
        
        .step-label {
            font-size: 0.7rem;
        }
        
        .step-circle {
            width: 32px;
            height: 32px;
            font-size: 0.8rem;
        }
        
        .form-navigation {
            flex-direction: column;
        }
        
        .recap-item {
            flex-direction: column;
            gap: 0.25rem;
        }
    }

/* Styles pour la page de contact */
    .contact-info-card, .contact-form-card, .agency-card {
        background: white;
        border-radius: 28px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        height: 100%;
        border: 1px solid rgba(15, 110, 63, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .contact-info-card:hover, .contact-form-card:hover, .agency-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(15, 110, 63, 0.1);
    }
    
    .contact-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        color: var(--vert-primary);
        width: 32px;
        margin-top: 4px;
    }
    
    .contact-item a {
        color: var(--vert-primary);
        text-decoration: none;
        transition: color 0.2s;
    }
    
    .contact-item a:hover {
        color: var(--vert-light);
        text-decoration: underline;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        background: var(--vert-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--vert-primary);
        transition: all 0.2s ease;
        text-decoration: none;
    }
    
    .social-link:hover {
        background: var(--vert-primary);
        color: white;
        transform: translateY(-3px);
    }
    
    .quick-response {
        margin-top: 1.5rem;
        border-top: 1px solid rgba(15, 110, 63, 0.1);
        padding-top: 1.5rem;
    }
    
    /* Formulaires */
    .form-control, .form-select {
        border-radius: 12px;
        padding: 0.75rem 1rem;
        border: 1px solid #e2e8f0;
        transition: all 0.2s;
    }
    
    .form-control:focus, .form-select:focus {
        border-color: var(--vert-primary);
        box-shadow: 0 0 0 3px rgba(15, 110, 63, 0.1);
    }
    
    .form-label {
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #1e293b;
    }
    
    /* Agences */
    .agency-card {
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .agency-card i {
        font-size: 2.5rem;
        color: var(--vert-primary);
        margin-bottom: 1rem;
    }
    
    .agency-card h5 {
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--vert-primary);
    }
    
    .agency-card p {
        margin-bottom: 0.5rem;
        color: #4a5568;
    }
    
    .agency-card small {
        color: #718096;
    }
    
    /* FAQ */
    .faq-preview {
        background: linear-gradient(135deg, var(--vert-soft) 0%, #ffffff 100%);
        border-radius: 28px;
        padding: 2rem;
    }
    
    .faq-item {
        background: white;
        padding: 1rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .contact-info-card, .contact-form-card {
        animation: fadeInUp 0.5s ease-out forwards;
    }
    
    .agency-card {
        animation: fadeInUp 0.5s ease-out forwards;
        opacity: 0;
    }
    
    .agency-card:nth-child(1) { animation-delay: 0.1s; }
    .agency-card:nth-child(2) { animation-delay: 0.2s; }
    .agency-card:nth-child(3) { animation-delay: 0.3s; }
    
    @media (max-width: 768px) {
        .contact-info-card, .contact-form-card, .agency-card {
            padding: 1.5rem;
        }
        
        .contact-item {
            gap: 0.75rem;
        }
        
        .contact-item i {
            font-size: 1.1rem;
            width: 28px;
        }
        
        .faq-preview {
            padding: 1.5rem;
        }
    }
     /* Section Hero avec image de fond */
    .hero {
        position: relative;
        overflow: hidden;
        min-height: 650px;
        display: flex;
        align-items: center;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: zoomBackground 20s ease-in-out infinite alternate;
    }
    
    @keyframes zoomBackground {
        0% {
            transform: scale(1);
        }
        100% {
            transform: scale(1.05);
        }
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(15, 110, 63, 0.6) 100%);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        padding: 5rem 0;
    }
    
    .hero h1 {
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero .lead {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.2rem;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    }
    
    /* Boutons stylisés */
    .btn-vert {
        background-color: var(--vert-primary);
        color: white;
        border-radius: 50px;
        padding: 12px 32px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 4px 15px rgba(15, 110, 63, 0.3);
    }
    
    .btn-vert:hover {
        background-color: var(--vert-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(15, 110, 63, 0.4);
    }
    
    .btn-outline-vert {
        border: 2px solid white;
        color: white;
        border-radius: 50px;
        padding: 12px 32px;
        font-weight: 600;
        transition: all 0.3s ease;
        background: transparent;
    }
    
    .btn-outline-vert:hover {
        background: white;
        color: var(--vert-primary);
        transform: translateY(-3px);
    }
    
    /* Badges de confiance */
    .badge-trust {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .badge-trust:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }
    
    .badge-trust i {
        margin-right: 8px;
        color: var(--vert-light);
    }
    
    /* Carte des statistiques */
    .hero-stats-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px);
        border-radius: 28px;
        padding: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: fadeInUp 0.8s ease-out;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number-hero {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 0.25rem;
    }
    
    .stat-label-hero {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-content {
        animation: fadeInUp 0.6s ease-out;
    }
    
    /* Version alternative avec image spécifique pour Maya Transit */
    /* Vous pouvez remplacer l'URL par votre propre image */
    
    /* Version avec plusieurs images en arrière-plan */
    .hero-background-alternative {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), 
                          url('assets/images/hero-bg.jpg');
    }
    
    @media (max-width: 992px) {
        .hero {
            min-height: 550px;
        }
        
        .hero-content {
            padding: 3rem 0;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero .lead {
            font-size: 1rem;
        }
        
        .badge-trust {
            padding: 6px 14px;
            font-size: 0.75rem;
        }
        
        .stat-number-hero {
            font-size: 1.5rem;
        }
        
        .hero-stats-card {
            margin-top: 2rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero {
            min-height: 500px;
        }
        
        .hero h1 {
            font-size: 1.8rem;
        }
        
        .btn-vert, .btn-outline-vert {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        
        .badge-trust {
            padding: 5px 12px;
            font-size: 0.7rem;
        }
        
        .stats-grid {
            gap: 0.5rem;
        }
        
        .stat-number-hero {
            font-size: 1.2rem;
        }
        
        .stat-label-hero {
            font-size: 0.7rem;
        }
    }


    /* Si vous préférez une image maritime */
    .hero-maritime .hero-background {
        background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1600');
    }
    
    /* Si vous préférez une image aérienne */
    .hero-aerien .hero-background {
        background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600');
    }
    
    /* Si vous préférez une image terrestre */
    .hero-terrestre .hero-background {
        background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600');
    }
    
    /* Image par défaut avec conteneurs */
    .hero-container {
        background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600');
    }