@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
}

body{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    
}

.body2{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #74ebd5, #0b990d);
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* Styles pour le titre et sous-titre */
.intro-section {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 0 20px;
}

.intro-title {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeIn 1s forwards, slideIn 1s forwards;
}

.intro-subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    opacity: 0;
    margin-top: 20px;
    transform: translateY(50px);
    animation: fadeIn 1.5s forwards, slideIn 1.5s forwards;
}

/* Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .intro-title {
        font-size: 2.5rem;
    }
    .intro-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 2rem;
    }
    .intro-subtitle {
        font-size: 1rem;
    }
}


/* Qui somme nous ?*/
.about-section {
    padding: 50px 10px;
    text-align: center;
    background-color: #000000;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards 0.5s; /* Animation avec délai */
}

.about-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.about-description {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Responsiveness */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    .about-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    .about-description {
        font-size: 1rem;
    }
}



.actions-section {
    padding: 50px 10px;
    text-align: center;
    background-color: #f9f9f9; /* Couleur de fond pour la section */
}

.actions-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000; /* Couleur du titre */
}

.button-container {
    display: flex;
    justify-content: center; /* Centre horizontalement les boutons */
    gap: 20px; /* Espacement entre les boutons */
}

.action-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    background-color: #000; /* Couleur de fond des boutons */
    color: white; /* Couleur du texte des boutons */
    text-decoration: none; /* Supprime le soulignement */
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s; /* Transition pour le hover */
}

.action-button:hover {
    background-color: #0b990d; /* Couleur de fond au survol */
    transform: scale(1.05); /* Légère augmentation de taille au survol */
}





/* Page information */

/* Styles pour la section des simulateurs */
.simulator-info-section {
    margin-top: 100px; /* Ajustement pour que la section ne soit pas cachée par la navbar */
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff; /* Couleur de fond claire */
}

.simulator-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.simulator-description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #333;
}

.simulator-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simulator-item {
    background-color: #ffffff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    transition: transform 0.3s;
}

.simulator-item:hover {
    transform: translateY(-5px); /* Légère animation au survol */
}

.simulator-item h2 {
    font-size: 2rem;
    color: #000;
}

.simulator-item p {
    font-size: 1.2rem;
    color: #555;
}




/* Page Galerie */




/* Page Nous Rejoindre */






.signup-container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: scale(0);
    animation: signup-popUp 0.5s ease-out forwards;
}

@keyframes signup-popUp {
    to {
        transform: scale(1);
    }
}

.signup-form h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #000; /* Titre en noir */
}

.signup-input-box {
    position: relative;
    margin-bottom: 2rem;
}

.signup-input-box input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    color: #000; /* Texte des inputs en noir */
}

.signup-input-box input:focus {
    border-color: #74ebd5;
}

.signup-input-box label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #000; /* Labels toujours en noir */
    pointer-events: none;
    transition: all 0.3s;
}

.signup-input-box input:focus + label,
.signup-input-box input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #000; /* Labels restent en noir même lors du focus */
}

button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background-color: #000000;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #000000;
}

button:active {
    transform: scale(0.98);
}



/* Styles globaux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}



/* Barre de navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    background: rgb(22, 22, 22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(22, 22, 22);
    z-index: -1;
}

.navbar {
    display: flex;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    font-size: 1.15rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
    display: flex;
    align-items: center;
}

.nav-menu a .bx-chevron-down {
    margin-left: 0.5rem;
    font-size: 1rem;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(22, 22, 22);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.submenu li {
    width: 100%;
}

.submenu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: white;
    transition: background 0.3s;
}

.submenu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .submenu {
    display: block;
}

/* Mobile Styles pour la navbar */
#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: white;
    cursor: pointer;
    display: none;
}

@media (max-width: 996px) {
    .icons {
        display: inline-flex;
    }

    #check:checked ~ .icons #menu-icon {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked ~ .icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(22, 22, 22);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        flex-direction: column;
    }

    #check:checked ~ .navbar {
        max-height: 500px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-menu > li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        margin: 1.5rem 0;
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        margin-left: 0;
    }

    .submenu {
        position: static;
        background-color: rgb(22, 22, 22);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .dropdown.active .submenu {
        max-height: 500px;
    }

    .dropdown > a {
        justify-content: center;
    }

    .dropdown.active > a .bx-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown > a {
        cursor: pointer;
    }
}

/* Styles pour le formulaire */
.signup-container {
    margin-top: 150px; /* Ajuste cette marge pour ne pas être caché par la navbar */
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: rgb(92, 197, 97);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative; /* Pour gérer la superposition avec la navbar */
    transform: scale(0);
    animation: signup-popUp 0.5s ease-out forwards;
}

@keyframes signup-popUp {
    to {
        transform: scale(1);
    }
}

.signup-form h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.signup-input-box {
    position: relative;
    margin-bottom: 2rem;
}

.signup-input-box input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
    color: #000;
}

.signup-input-box input:focus {
    border-color: #74ebd5;
}

.signup-input-box label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #000;
    pointer-events: none;
    transition: all 0.3s;
}

.signup-input-box input:focus + label,
.signup-input-box input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.85rem;
    color: #000;
}

button {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    background-color: #000000;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0b990d;
}

button:active {
    transform: scale(0.98);
}

/* Styles pour la section des simulateurs */
.simulator-info-section {
    margin-top: 100px; /* Ajustement pour que la section ne soit pas cachée par la navbar */
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff; /* Couleur de fond claire */
}

.simulator-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.simulator-description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #333;
}

.simulator-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.simulator-item {
    background-color: #ffffff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    transition: transform 0.3s;
}

.simulator-item:hover {
    transform: translateY(-5px); /* Légère animation au survol */
}

.simulator-item h2 {
    font-size: 2rem;
    color: #000;
}

.simulator-item p {
    font-size: 1.2rem;
    color: #555;
}

/* Tableaux de la flotte */
.fleet-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.fleet-table th, .fleet-table td {
    padding: 14px 18px;
    text-align: center;
}

.fleet-table th {
    background: #08b348;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.fleet-table tr:nth-child(even) {
    background: #f4f4f4;
}

.fleet-table tr:hover {
    background: #e6ffe6;
}

.fleet-container h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #08b348;
    font-size: 1.6rem;
    font-weight: 700;
}

/* Footer Styles */
.footer {
    background-color: rgb(22, 22, 22);
    color: white;
    text-align: center;
    padding: 20px 0;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 1rem;
}

.footer a {
    color: #74ebd5;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Section Image avec carré vert */
.hero {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carré vert à gauche */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: rgba(8, 179, 72, 0.9); /* Vert avec légère transparence */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Titre centré */
.hero-overlay h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0; /* Supprime les marges par défaut */
    padding: 20px;
}

/* Responsive */
@media (max-width: 1654px) {
    .hero-overlay {
        width: 30%; /* Augmente la taille du carré sur mobile */
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 1155px) {
    .hero-overlay {
        width: 50%; /* Augmente la taille du carré sur mobile */
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-overlay {
        width: 50%; /* Augmente la taille du carré sur mobile */
    }

    .hero-overlay h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        width: 60%; /* Encore plus large sur petits écrans */
    }

    .hero-overlay h1 {
        font-size: 1.2rem;
    }
}

/* Section Description de la compagnie */
.about-section {
    padding: 50px 20px;
    text-align: center;
    background: #f8f8f8;
}

.about-title {
    font-size: 3rem;
    color: #000;
}

.about-description {
    font-size: 1.5rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.about-img {
    width: 170px;
    display: flex;
    margin: 0 auto;
    margin-top: 3%;
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}


@media (max-width: 768px) {
    .about-img{
        width: 100px;
    }
}




@-webkit-keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes heartbeat {
    from {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  

/* Tracker */
.tracker-section {
    padding: 50px 10px;
    text-align: center;
    background: white;
}

.tracker-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tracker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 20px;
}

.tracker-img {
    width: 60%; /* Augmenter la largeur de l'image */
    max-width: 500px; /* Augmenter la largeur maximale */
}

.tracker-text {
    max-width: 600px;
    text-align: center; /* Centrer le texte */
}

.tracker-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 15px;
}

/* Logos des simulateurs à droite */
.sim-logo {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap; /* Permettre le retour à la ligne si nécessaire */
}

.sim-logo img {
    height: 100px; /* Fixer la hauteur des logos */
    width: auto; /* Conserver le ratio d'aspect */
    transition: transform 0.3s ease;
}

.sim-logo img:hover {
    transform: scale(1.2); /* Augmenter l'effet de survol */
}

/* Responsive */
@media (max-width: 768px) {
    .tracker-content {
        flex-direction: column;
        text-align: center;
    }

    .tracker-img {
        width: 80%;
    }

    .sim-logo {
        justify-content: center;
    }
}
.gallery-section {
    padding: 50px 10px;
    background: #000;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    color: white;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-item {
    width: 22%;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1.2rem;
    }

    .tracker-content {
        flex-direction: column;
    }

    .tracker-content img {
        width: 80%;
    }

    .gallery-item {
        width: 45%;
    }
.gallery-item {
    width: 22%;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1.2rem;
    }

    .tracker-content {
        flex-direction: column;
    }

    .tracker-content img {
        width: 80%;
    }

    .gallery-item {
        width: 100%; /* Prendre toute la largeur sur tablette */
        margin-bottom: 20px; /* Ajouter un espace entre les éléments */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%; /* Prendre toute la largeur sur téléphone */
        margin-bottom: 20px; /* Ajouter un espace entre les éléments */
    }
}
}

/* Section Tracker avec logos */
.tracker-section {
    padding: 50px 10px;
    text-align: center;
    background: white;
}

.tracker-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tracker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 20px;
}

.tracker-img {
    width: 50%;
    max-width: 400px;
}

.tracker-text {
    max-width: 600px;
}

.tracker-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 15px;
}

/* Logos des simulateurs à droite */
.sim-logo {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.sim-logo img {
    height: 100px; /* Fixer la hauteur des logos */
    width: auto; /* Conserver le ratio d'aspect */
    transition: transform 0.3s ease;
}

.sim-logo img:hover {
    transform: scale(1.2); /* Augmenter l'effet de survol */
}

/* Responsive */
@media (max-width: 768px) {
    .tracker-content {
        flex-direction: column;
        text-align: center;
    }

    .tracker-img {
        width: 80%;
    }

    .sim-logo {
        justify-content: center;
    }
}


/* Galerie avec espace sous le footer */
.gallery-section {
    padding: 50px 10px;
    background: #000;
    text-align: center;
    margin-bottom: 80px; /* Ajout d'un espace sous la galerie */
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-item {
    width: 22%;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.1);
}

/* Lightbox pour l'affichage plein écran */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}.tracker-section {
    padding: 50px 10px;
    text-align: center;
    background: white;
}

.tracker-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tracker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 20px;
}

.tracker-img {
    width: 50%;
    max-width: 400px;
}

.tracker-text {
    max-width: 600px;
    text-align: center; /* Centrer le texte */
}

.tracker-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 15px;
}

/* Logos des simulateurs à droite */
.sim-logo {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap; /* Permettre le retour à la ligne si nécessaire */
}

.sim-logo img {
    height: 100px; /* Fixer la hauteur des logos */
    width: auto; /* Conserver le ratio d'aspect */
    transition: transform 0.3s ease;
}

.sim-logo img:hover {
    transform: scale(1.2); /* Augmenter l'effet de survol */
}

/* Responsive */
@media (max-width: 768px) {
    .tracker-content {
        flex-direction: column;
        text-align: center;
    }

    .tracker-img {
        width: 80%;
    }

    .sim-logo {
        justify-content: center;
    }
}


/* Section La Flotte */
.fleet-section {
    padding: 50px 10px;
    text-align: center;
    background: #f8f8f8;
    margin-bottom: 100px; /* Ajout d'espace sous la section */
}

.fleet-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
}

/* Conteneur des catégories */
.fleet-container {
    max-width: 600px;
    margin: auto;
    text-align: center; /* Centre le texte */
}

/* Boutons des catégories */
.fleet-toggle {
    width: 100%;
    background: #08b348;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border: none;
    cursor: pointer;
    text-align: center; /* Centre le texte dans le bouton */
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.fleet-toggle:hover {
    background: #067f30;
}

/* Sous-menu */
.fleet-submenu {
    display: none;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centre le texte */
}

/* Style des avions dans le sous-menu */
.fleet-submenu p {
    margin: 10px 0;
    font-size: 1.2rem;
    padding: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.fleet-submenu p:hover {
    color: #08b348;
}

/* Animation ouverture/fermeture */
.fleet-submenu.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Section Nos Hubs */
.hubs-section {
    padding: 50px 10px;
    text-align: center;
    background: #ffffff;
    margin-bottom: 100px;
}

.hubs-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
}

/* Conteneur des hubs */
.hubs-container {
    display: flex;
    justify-content: center;
    gap: 200px;
    flex-wrap: wrap;
}

/* Carte d'un hub */
.hub-card {
    position: relative;
    width: 280px;  /* Taille fixe en portrait */
    height: 400px; /* Ajuster selon le besoin */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

/* Image du hub */
.hub-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Effet zoom au survol */
.hub-card:hover img {
    transform: scale(1.05);
}

/* Encadré vert transparent avec le nom de l'aéroport */
.hub-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 179, 72, 0.8); /* Vert avec transparence */
    color: white;
    text-align: center;
    font-size: 1.3rem;
    padding: 10px;
}

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

/* Responsive: les hubs en colonne sur mobile */
@media (max-width: 768px) {
    .hubs-container {
        flex-direction: column;
        align-items: center;
        gap: 70px;
    }
}



/* Section Nos Lignes */
.routes-section {
    padding: 50px 10px;
    text-align: center;
    background: #f8f8f8;
    margin-bottom: 100px;
}

.routes-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
}

/* Carte interactive */
#map {
    width: 80%;
    height: 500px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    #map {
        width: 90%;
        height: 400px;
    }
}



/* Section Information */
.info-section {
    padding: 60px 20px;
    text-align: center;
    background: #08b348; /* Fond vert */
    color: white;
    margin-bottom: 100px;
}

/* Titre de la section */
.info-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Conteneur principal */
.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

/* Élément contenant une image + une carte */
.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

/* Première ligne (Coin-Coin Cargo) */
.info-item:first-child {
    animation-delay: 0.2s;
}

/* Deuxième ligne (Coin-Coin Airlines) */
.info-item.reverse {
    animation-delay: 0.4s;
}

/* Image */
.info-img {
    width: 45%;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

/* Effet zoom au survol */
.info-img:hover {
    transform: scale(1.07);
}

/* Cartes d'information */
.info-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: black;
}

/* Titres des cartes */
.info-card h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #08b348;
    margin-bottom: 20px;
}

/* Texte des informations */
.info-card p {
    font-size: 1.4rem;
    color: #333;
    margin: 8px 0;
}

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

/* Responsive: affichage en colonne sur mobile */
@media (max-width: 768px) {
    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-img {
        width: 90%;
    }
}


/* Section bannière */
.banner-section {
    width: 100%;
    background: #08b348;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Titre principal de la section */
.banner-heading {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s forwards;
}

/* Conteneur principal */
.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1400px;
    gap: 20px;
}

/* Images d'avions à gauche et à droite */
.banner-image {
    width: 25%;
}

.banner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Contenu central */
.banner-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 20px;
}

/* Logo */
.banner-logo {
    width: 80px;
    margin-bottom: 10px;
}

/* Sous-titre */
.banner-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

/* Slogan */
.banner-slogan {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 5px;
}

/* Bouton */
.banner-button {
    display: inline-block;
    background: white;
    color: #08b348;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 30px;
    margin-top: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Effet bouton au survol */
.banner-button:hover {
    background: #06a03d;
    color: white;
    transform: scale(1.1);
}

/* Animation du titre */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-image {
        width: 50%;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-slogan {
        font-size: 1.1rem;
    }

    .banner-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 600px) {
    .banner-image {
        width: 70%;
    }

    .banner-heading {
        font-size: 2rem;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-slogan {
        font-size: 1rem;
    }

    .banner-button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}



/* Section Contact */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Effet de particules en arrière-plan */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(8, 179, 72, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(116, 235, 213, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Conteneur principal */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

/* Encadré arrondi vert pour "Nous Contacter" */
.contact-title-box {
    display: inline-block;
    background: linear-gradient(135deg, #08b348 0%, #06a03d 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(8, 179, 72, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.contact-title-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-title-box:hover::before {
    left: 100%;
}

.contact-title-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(8, 179, 72, 0.4);
}

/* Sous-titre */
.contact-description {
    font-size: 1.4rem;
    color: #6c757d;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

/* Formulaire */
.contact-form {
    background: white;
    width: 100%;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #08b348, #74ebd5, #08b348);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Champs de formulaire */
.input-group {
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.input-group label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    border: 3px solid #ddd; /* Contour plus épais et plus visible */
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white; /* Fond blanc pour contraster avec le contour */
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Légère ombre pour plus de visibilité */
}

/* Réduction de la taille pour les champs input (Nom, Email, Sujet) */
.input-group input {
    padding: 12px 16px;
    font-size: 0.95rem;
    height: 50px;
    border: 3px solid #ddd; /* Contour spécifique pour les inputs */
}

/* Le textarea (Message) garde sa taille normale */
.input-group textarea {
    padding: 15px 20px;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    border: 3px solid #ddd; /* Contour spécifique pour le textarea */
}

/* État au focus - contour vert */
.input-group input:focus, 
.input-group textarea:focus {
    border-color: #08b348; /* Contour vert au focus */
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(8, 179, 72, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* État valide - contour vert foncé */
.input-group input:valid:not(:placeholder-shown):not(:focus),
.input-group textarea:valid:not(:placeholder-shown):not(:focus) {
    border-color: #28a745; /* Contour vert foncé pour les champs valides */
    background: #f8fff9;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* État invalide - contour rouge */
.input-group input:invalid:not(:placeholder-shown):not(:focus),
.input-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: #dc3545; /* Contour rouge pour les champs invalides */
    background: #fff5f5;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15), 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* État par défaut (champ vide) - contour gris visible */
.input-group input:placeholder-shown,
.input-group textarea:placeholder-shown {
    border-color: #ccc; /* Contour gris plus foncé pour les champs vides */
    background: #fafafa;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Survol des champs */
.input-group input:hover:not(:focus),
.input-group textarea:hover:not(:focus) {
    border-color: #999; /* Contour plus foncé au survol */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.input-group input:focus + label,
.input-group textarea:focus + label {
    color: #08b348;
}

/* Responsive - ajustement des contours */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-title-box {
        font-size: 1.8rem;
        padding: 12px 25px;
    }

    .contact-description {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .contact-button {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .input-group input {
        padding: 10px 14px;
        font-size: 0.9rem;
        height: 45px;
        border-width: 2px; /* Contour légèrement plus fin sur mobile */
    }
    
    .input-group textarea {
        padding: 12px 15px;
        border-width: 2px; /* Contour légèrement plus fin sur mobile */
    }
}

@media (max-width: 480px) {
    .contact-title-box {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .input-group input {
        padding: 8px 12px;
        font-size: 0.85rem;
        height: 42px;
        border-width: 2px; /* Contour plus fin sur très petit écran */
    }

    .input-group textarea {
        border-width: 2px; /* Contour plus fin sur très petit écran */
    }
}

/* Carrousel des lignes */
.routes-carousel {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.route-display {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

.route-card {
    background: linear-gradient(135deg, #08b348 0%, #06a03d 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(8, 179, 72, 0.3);
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.route-card:hover::before {
    left: 100%;
}

.route-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.route-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.departure, .arrival {
    font-size: 1.3rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.route-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(-10px); }
    60% { transform: translateX(-5px); }
}

.route-type {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-type.civil {
    background: rgba(74, 144, 226, 0.8);
}

.route-type.cargo {
    background: rgba(255, 107, 53, 0.8);
}

/* Indicateurs */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(8, 179, 72, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator.active {
    background: #08b348;
    transform: scale(1.2);
}

/* Statistiques */
.routes-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #08b348;
    margin-bottom: 5px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .route-path {
        flex-direction: column;
        gap: 15px;
    }
    
    .route-arrow {
        transform: rotate(90deg);
    }
    
    .departure, .arrival {
        font-size: 1.1rem;
    }
    
    .route-number {
        font-size: 2rem;
    }
    
    .routes-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Carrousel des lignes avec transitions améliorées */
.routes-carousel {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.route-display {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(0) scale(1);
    transform-origin: center;
}

.route-card {
    background: linear-gradient(135deg, #08b348 0%, #06a03d 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 8px 25px rgba(8, 179, 72, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(8, 179, 72, 0.4);
}

.route-card:hover::before {
    left: 100%;
}

.route-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    animation: fadeInDown 0.6s ease-out;
}

.route-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.departure, .arrival {
    font-size: 1.3rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideInFromSides 0.6s ease-out;
}

.departure:hover, .arrival:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.route-arrow {
    font-size: 2rem;
    animation: pulse 2s infinite;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes pulse {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromSides {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.route-type {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.route-type.civil {
    background: rgba(74, 144, 226, 0.8);
}

.route-type.cargo {
    background: rgba(255, 107, 53, 0.8);
}

.route-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Statistiques avec animations */
.routes-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #08b348;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #06a03d;
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #333;
}

/* Responsive avec transitions améliorées */
@media (max-width: 768px) {
    .route-path {
        flex-direction: column;
        gap: 15px;
    }
    
    .route-arrow {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .departure, .arrival {
        font-size: 1.1rem;
    }
    
    .route-number {
        font-size: 2rem;
    }
    
    .routes-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Styles pour les popups de notification */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup.visible {
    opacity: 1;
    transform: translateX(0);
}

.popup.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-left: 4px solid #2e7d32;
}

.popup.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border-left: 4px solid #c62828;
}

.popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0.1;
}

/* Animation d'entrée */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .popup {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* Styles pour reCAPTCHA */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

/* Responsive reCAPTCHA */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: 0 0;
    }
}

/* Styles pour reCAPTCHA */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    min-height: 78px; /* Hauteur minimale pour éviter les sauts */
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

/* Styles pour les popups de notification */
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup.visible {
    opacity: 1;
    transform: translateX(0);
}

.popup.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-left: 4px solid #2e7d32;
}

.popup.error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border-left: 4px solid #c62828;
}

.popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    opacity: 0.1;
}

/* Animation d'entrée */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive pour reCAPTCHA */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
        margin: 1rem 0 0.5rem 0;
    }
    
    .popup {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.65);
        transform-origin: 0 0;
        margin: 1rem 0 0.2rem 0;
    }
}

/* Styles pour le formulaire de contact */
.contact-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 200px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
}