@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');

:root {
    --primary: #ef4444;
    --secondary: #1A1A1A;
    --text: #666666;
    --light-bg: #F8F8F8;
    --white: #FFFFFF;
    --color-text: #000000;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    /* background-color: #111827; */
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(16, 35, 88, 0.6)), url("../images/contact.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .fleche {
    font-size: 1.3em;
    font-weight: 400;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: #d1d5dbdf;
}

.breadcrumb .active {
    color: #ef4444;
    /* font-weight: 600; */
}


/* START STATS */

/* Stats Section */




/* END STATS */


/* START WRAPPER */



/* Testimonials Section */

/* END STARTS */

/* contact */

/* Section Contact */
.contact-section {
    margin-top: 4rem;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .contact-card {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(237, 237, 237, 0.613);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.052);
  }
  
  .contact-icon {
    width: 3rem;
    height: 3rem;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #E31E24;
  }

  .contact-card .mailto-contact a{
    text-decoration: none;
    font-size: 1.1em;
    color: var(--text);
  }

  .contact-card .mailto-contact a:hover {
    color: var(--primary);
  }
  
  .contact-card .tel-contact a {
    text-decoration: none;
    font-size: 1.1em;
    color: var(--text);
  }

  .contact-card .tel-contact a:hover {
    color: var(--primary);
  }

  .contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #1a1a1a;
  }
  
  .contact-card p {
    color: #666;
    font-size: 0.875rem;
  }
  
  .contact-form {
    padding: 4em;
    border: 1px solid rgba(184, 184, 184, 0.681);
  }
  
  .contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    /* border-radius: 0.375rem; */
    outline: none;
    background: #eef2f4;
    font-size: 0.845rem;
  }
  
  textarea {
    height: 150px;
    resize: vertical;
    margin-bottom: 1rem;
  }
  
  .submit-button {
    background: #E31E24;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    /* border-radius: 0.375rem; */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background: #c9191fdf;
  }
  
  @media (min-width: 768px) {
    /* .container {
      padding: 6rem 1rem;
    }
  
    .grid {
      grid-template-columns: 1fr 1fr;
    }
  
    h1 {
      font-size: 3rem;
    } */
  
    .contact-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }



/* Footer */
footer {
    background: var(--secondary);
    color: #aaa;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-column p {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img-experience {
        right: 0;
    }
}


  /* Start button scroll Up */

  .back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  
  
  
  .back-to-top:hover {
    background-color: #ef4444bb;;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  
  .back-to-top i {
    font-size: 20px;
  }
  
  @media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
  }
  

/* @media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary);
        padding: 80px 30px;
        transition: all 0.5s;
        z-index: 999;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }
    
    .slide-content h1 {
        font-size: 40px;
    }
} */

    /* recherche */

    
    /* .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    } */















    /* .checks {
        background-color: #cbc5c5;
        padding: 5em 0em;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-header h1 {
        font-size: 36px;
        color: var(--secondary);
        margin-bottom: 15px;
    }
    
    .services-steps {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .step-card {
        background: var(--white);
        border-radius: 8px;
        padding: 40px 30px;
        text-align: center;
        width: 250px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .step-card:hover .step-icon {
        background: var(--primary);
        color: var(--white);
        transform: rotateY(180deg);
    }
    
    .step-card:hover h2 {
        color: var(--primary);
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 90, 27, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--primary);
        font-size: 30px;
        transition: all 0.5s ease;
    }
    
    .step-card h2 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--secondary);
        transition: all 0.3s;
    }
    
    .step-card p {
        color: var(--text);
        margin-bottom: 20px;
        font-size: 14px;
    }
    
    .step-number {
        display: inline-block;
        background: var(--primary);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .divider {
        width: 50px;
        height: 2px;
        background: var(--primary);
        margin: 30px auto;
        opacity: 0.3;
    }
    
    @media (max-width: 768px) {
        .services-steps {
            flex-direction: column;
            align-items: center;
        }
    } */
