/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Empêche la sélection de texte */
  }
  
  body {
    font-family:
      "Maven Pro",
      -apple-system,
      Roboto,
      Helvetica,
      sans-serif;
    background-color: #000;
    color: #dad4d4;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  /* Main page container */
  .accueil-page {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Header styles */
  .main-header {
    position: absolute;
    z-index: 100;
    width: 1244px;
    max-width: 100%;
    padding: 0 39px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    height: 95px;
  }
  
  .header-container {
    border-radius: 20px;
    background-color: rgba(169, 87, 5, 0.05);
    border: 1px solid rgba(200, 81, 29, 0.5);
    display: flex;
    width: 1167px;
    padding-right: 20px;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 22px;
    color: #f88614;
    font-weight: 700;
  }
  
  .logo-image {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 94px;
    flex-shrink: 0;
  }
  
  .company-name {
    text-shadow: 0px 4px 5px rgba(200, 81, 29, 1);
    font-size: 22px;
  }
  
.main-navigation {
    display: flex;
    align-items: center;
    gap: 39px;
    font-size: 20px;
    color: #dad4d4;
    font-weight: 600;
    flex-wrap: wrap;
}

.nav-link {
  color: #dad4d4;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 10px;
}

.nav-link:hover {
  color: #f88614;
  text-shadow: 0 0 5px rgba(248, 134, 20, 0.3);
}

.nav-link:not(.contact-button)::before,
.nav-link:not(.contact-button)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #f88614;
  transition: width 0.3s ease;
}

.nav-link:not(.contact-button)::before {
  top: 0;
  left: 0;
}

.nav-link:not(.contact-button)::after {
  bottom: 0;
  right: 0;
}

.nav-link:not(.contact-button):hover::before,
.nav-link:not(.contact-button):hover::after {
  width: 100%;
}

.contact-button {
  color: #c8511d;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 59px;
  border-radius: 15px;
  border: 2px solid #c8511d;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #c8511d;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-button:hover {
  color: white;
  cursor: pointer;
}

.contact-button:hover::before {
  left: 0;
}

  
  /* Hero section */
  .hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 780px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 110px;
    margin-top: 0;
  }
  
  .background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-image {
    position: relative;
    aspect-ratio: 0.93;
    object-fit: contain;
    object-position: center;
    width: 100%;
    max-width: 1017px;
    border-radius: 50%;
    z-index: 1;
    margin-top: 85px; /* Ajusté pour positionner l’image à la hauteur désirée  */
  }
  
  /* Divider */
  .divider-container {
    position: relative;
    width: 879px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    z-index: 2;
  }
  
  .divider-line {
    border-color: rgba(200, 81, 29, 0.8);
    border-style: solid;
    border-width: 1px;
    height: 2px;
    width: 100%;
  }
  
  .divider-line-secondary {
    border-color: rgba(200, 81, 29, 0.6);
    border-style: solid;
    border-width: 1px;
    height: 2px;
    width: 622px;
    max-width: 100%;
    margin: 30px auto 0;
  }
  
  .divider-container::after {
    content: "";
    display: block;
    border-color: rgba(200, 81, 29, 0.4);
    border-style: solid;
    border-width: 0.5px;
    height: 1px;
    width: 400px;
    max-width: 100%;
    margin: 30px auto 0;
  }
  
  /* Pourquoi nous choisir section */
  .why-choose-us {
    position: relative;
    width: 100%;
    padding: 50px 0 100px;
    z-index: 2;
  }
  
  .section-title {
    color: #dad4d4;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    margin: 0 auto 80px;
    max-width: 774px;
  }
  
  .features-container {
    width: 1285px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .features-row {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
  }
  
  .bottom-row {
    margin-top: 100px;
  }
  
  .feature-column {
    position: relative;
    width: 50%;
    padding-top: 42px; /* Espace pour l’icône */
  }
  
  .feature-icon-container {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    border: 1px solid rgba(169, 87, 5, 0.5);
    border-radius: 50%;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }
  
  .feature-icon,
  .feature-icon-small {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 49px;
  }
  
  .feature-text {
    border-radius: 20px;
    background-color: rgba(169, 87, 5, 0.1);
    padding: 0 20px;
    height: 180px;
    font-size: 20px;
    color: #d9d9d9;
    font-weight: 400;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  /* CTA Buttons */
  .cta-button {
    border-radius: 15px;
    background-color: rgba(200, 81, 29, 0.1);
    border: 2px solid #c8511d;
    width: 366px;
    max-width: 100%;
    height: 70px;
    font-size: 20px;
    color: #f88614;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition:
      background-color 0.3s ease,
      transform 0.2s ease;
    margin: 60px auto 0;
  }
  
  .cta-button:hover {
    background-color: rgba(200, 81, 29, 0.2);
    transform: translateY(-3px);
  }
  
  .cta-button:active {
    transform: translateY(0);
  }
  
  .learn-more-button {
    margin-top: 60px;
  }
  
  .demo-button {
    margin-top: 80px;
  }
  
  /* Solutions section */
  .solutions-section {
    position: relative;
    width: 1292px;
    max-width: 100%;
    margin: 50px auto 100px;
    padding: 0 20px;
    z-index: 2;
  }
  
  .section-divider {
    width: 100%;
    margin-bottom: 50px;
  }
  
  .solutions-container {
    display: flex;
    gap: 20px;
    margin-top: 130px;
  }
  
  .solution-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    aspect-ratio: 1.168;
    flex-grow: 1;
    padding: 22px 25px 61px;
    align-items: center;
    color: #d9d9d9;
    text-align: center;
    overflow: hidden;
    width: 33.33%;
    cursor: pointer;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  
  .solution-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(200, 81, 29, 0.3);
  }
  
  .solution-card:hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(200, 81, 29, 0.1), rgba(200, 81, 29, 0.3));
    border-radius: 20px;
    z-index: 0;
  }
  
  .solution-card:hover .solution-title {
    color: #f88614;
  }
  
  .card-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .solution-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 85px;
    position: relative;
    z-index: 1;
  }
  
  .solution-title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 3;
    margin-top: 50px;
    z-index: 1;
  }
  
  .solution-description {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    align-self: stretch;
    margin-top: 46px;
    z-index: 1;
  }
  
  /* YouTube Video Section */
  .video-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(200, 81, 29, 0.5);
  }
  
  /* FAQ section */
  .faq-section {
    position: relative;
    width: 1246px;
    max-width: 100%;
    margin: 100px auto;
    padding: 0 20px;
    z-index: 2;
  }
  
  .faq-icon-container {
    background-color: #000;
    border: 1px solid rgba(200, 81, 29, 0.5);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
  }
  
  .faq-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 60px;
  }
  
  .faq-content {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    width: 100%;
    padding: 44px 53px;
    font-size: 28px;
    color: #dad4d4;
    font-weight: 500;
    text-align: center;
    line-height: 2;
    overflow: hidden;
  }
  
  .faq-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .faq-title {
    position: relative;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 43px;
  }
  
  .faq-item {
    position: relative;
    margin-bottom: 20px;
  }
  
  .faq-question {
    position: relative;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 38px 70px;
    text-align: center;
    cursor: pointer;
    list-style: none;
  }

  .faq-question:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 20px rgba(200, 81, 29, 0.3);
  }
  
  .faq-question::-webkit-details-marker {
    display: none;
  }

  .arrow-container {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  @keyframes floatUpDown {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(6px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  .arrow-icon {
    filter: drop-shadow(0px 0px 3px rgba(255, 140, 0, 0.5));
    animation: floatUpDown 1.5s ease-in-out infinite;
  }
  
  .faq-answer {
    color: #fff;
    font-family: "Maven Pro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 35px;
    margin-top: 40px;
  }
  
  .faq-intro {
    margin-bottom: 10px;
  }

  .faq-point {
    margin: 10px 0;
  }
  
  .faq-highlight {
    margin: 30px 0 10px 0;
  }
  
  .faq-conclusion {
    margin-top: 10px;
  }

  .main-footer {
    background-color: rgba(200, 80, 29, 0.399);
    margin-top: 40px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 42px 129px;
  }
  
  @media (max-width: 991px) {
    .footer-content {
      padding: 42px 40px;
      flex-direction: column;
      gap: 40px;
    }
  }
  
  .footer-branding {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 22px;
    color: #f88614;
    font-weight: 700;
  }
  
  .logo-image-footer {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 94px;
    flex-shrink: 0;
  }
  
  .company-name-footer {
    text-shadow: 0px 4px 5px rgba(200, 81, 29, 1);
    font-size: 22px;
  }

  .social-link {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-links {
    display: flex;
    margin-top: 15px;
    margin-left: 12px;
    gap: 22px;
  }

  .social-links a:hover .social-icon {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .social-links a:hover .social-icon {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .social-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 60px;
  }

 
  
  .footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  
  @media (max-width: 640px) {
    .footer-navigation {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
  }
  
  
  .footer-nav-columns {
    display: flex;
    gap: 20px;
  }
  
  .footer-nav-column {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    color: #dad4d4;
    font-weight: 500;
    flex: 1;
  }
  
  .footer-link {
    color: #dad4d4;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
  }

  .footer-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);

  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .main-header {
      padding: 0 20px;
    }
  
    .contact-button {
      white-space: normal;
    }
  
    .hero-section {
      padding-top: 130px;
      min-height: 600px;
    }
  
    .hero-image {
      max-width: 70%;
      margin-top: 70px;
    }
  
    .section-title {
      font-size: 40px;
      padding: 0 20px;
    }
  
    .features-row {
      flex-direction: column;
      align-items: center;
    }
  
    .feature-column {
      width: 100%;
      max-width: 500px;
      margin-bottom: 60px;
    }
  
    .bottom-row {
      margin-top: 0;
    }
  
    .feature-text {
      padding: 20px;
    }
  
    .solutions-container {
      flex-direction: column;
      align-items: center;
      margin-top: 60px;
    }
  
    .solution-card {
      width: 100%;
      max-width: 500px;
      margin-bottom: 40px;
    }
  
    .demo-button {
      margin-top: 60px;
    }
  
    .faq-question {
      padding: 38px 20px;
    }

    .video-container {
      width: 90%;
    }
  
    .footer-container {
      padding: 42px 20px 74px;
    }

    @media (max-width: 640px) {
      .footer-content {
        padding: 42px 20px;
      }
    }

    .footer-nav-columns {
      flex-direction: column;
      width: 100%;
    }
  
    .footer-nav-column {
      margin-top: 20px;
    }
  
  }
  