* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: 'Arial', sans-serif;
  color: #333;
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: transparent;
}

#header.scrolled {
  background-color: #122f47;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 100px;
  transition: height 0.3s ease;
}

#header.scrolled .logo img {
  height: 85px;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

/* Cacher le logo et CTA du menu mobile sur desktop */
.mobile-nav-logo,
.mobile-nav-cta {
  display: none;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #95c4df;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(18, 47, 71, 0.1);
  display: flex;
  flex-direction: column;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-left: 1px solid rgba(18, 47, 71, 0.1);
  border-top: 1px solid rgba(18, 47, 71, 0.1);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #122f47;
  transition: all 0.3s ease;
  font-size: 15px;
  text-align: center;
}

.dropdown-menu li a:hover {
  background-color: rgba(149, 196, 223, 0.1);
  color: #95c4df;
}

.cta-button {
  background-color: #d7c5a3;
  color: #122f47;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(215, 197, 163, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(215, 197, 163, 0.6);
}

/* Hero Banner Slider */
.hero-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-slide .mobile-banner {
  display: none;
}

.hero-slide .desktop-banner {
  display: block;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroImageZoom 10s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 47, 71, 0.3);
  z-index: 2;
  pointer-events: none;
}

 @media (max-width: 768px) {
  .hero-slide video.mobile-banner {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
  }

  .hero-banner {
    height: 400px;
    min-height: 400px;
  }

  .hero-slide[data-slide="photo"] img.mobile-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


@keyframes heroImageZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.hero-slide[data-slide="photo"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 47, 71, 0.4), rgba(18, 47, 71, 0.6));
  z-index: 1;
}

.hero-content {
  position: absolute;
  z-index: 3;
}

.hero-content-photo {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 500px;
}

.hero-title {
  font-size: 64px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
  font-family: 'DM Serif Display', serif;
  text-transform: uppercase;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 30px;
  filter: drop-shadow(2px 2px 12px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: 26px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.5;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.hero-content-video {
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-btn {
  background-color: #d7c5a3;
  color: #122f47;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(215, 197, 163, 0.3);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(215, 197, 163, 0.6);
}

.btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #d7c5a3;
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(215, 197, 163, 0.3);
}

.hero-arrow:hover {
  background-color: #d7c5a3;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(215, 197, 163, 0.6);
}

.hero-arrow-right {
  right: 30px;
}

.hero-arrow-left {
  left: 30px;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 20px 60px 20px;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .why-choose {
    padding: 30px 20px 40px 20px;
  }
}

.why-choose h2 {
  font-size: 36px;
  margin-bottom: 60px;
  color: #122f47;
}

@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 28px;
    line-height: 1.3;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  text-align: center;
}

.icon-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border: 3px dashed #d7c5a3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.icon-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #122f47;
  font-weight: bold;
}

.feature p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Services Section */
.services {
  padding: 60px 20px;
  background-color: #fff;
}

.services-header {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.services-label {
  color: #d7c5a3;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-title {
  font-size: 36px;
  color: #122f47;
  margin-bottom: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 20px;
}

.services-title-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.services-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* Service Tabs */
.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-tab {
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
}

.service-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-tab.active {
  border-color: #122f47;
  background: #122f47;
}

.service-tab-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.service-tab-content {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px;
  gap: 15px;
  z-index: 1;
}

.service-tab-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.service-tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.service-tab.active .service-tab-icon img {
  filter: brightness(0) invert(1);
}

.service-tab-text {
  flex: 1;
}

.service-tab-name {
  font-size: 18px;
  color: #122f47;
  font-weight: bold;
  margin: 0;
}

.service-tab.active .service-tab-name {
  color: #fff;
}

.service-tab-arrow {
  font-size: 32px;
  color: #d7c5a3;
  font-weight: bold;
}

/* Service Content */
.services-content {
  position: relative;
}

.service-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-content.active {
  display: block;
}

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

.service-content-title {
  font-size: 28px;
  color: #122f47;
  margin-bottom: 30px;
  font-weight: bold;
}

.service-items {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

.service-item {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #d7c5a3;
  border: 1px solid #122f47;
  transition: all 0.3s ease;
}

.service-item-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.service-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

#developpement .service-item {
  background: #f8f8f8;
  border-left: 4px solid #d7c5a3;
  border: 1px solid #122f47;
}

#developpement .service-item:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.service-item-title {
  font-size: 18px;
  color: #122f47;
  margin-bottom: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#developpement .service-item-title {
  color: #122f47;
}

.service-item-arrow {
  opacity: 0;
  color: #122f47;
  font-size: 20px;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-item-link:hover .service-item-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* Process Section */
.process {
  padding: 60px 20px;
  background-color: #fff;
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.process-label {
  color: #d7c5a3;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.process-title {
  font-size: 36px;
  color: #122f47;
  margin-bottom: 15px;
  font-weight: bold;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.process-arrow {
  font-size: 24px;
  color: #122f47;
  font-weight: bold;
  margin: 0 5px;
  flex-shrink: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.process-progress .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0e0e0;
  transition: all 0.3s ease;
}

.process-progress .dot.active {
  background-color: #d7c5a3;
}

.process-step:hover .process-progress .dot.active {
  background-color: #122f47;
}

.process-step-title {
  font-size: 20px;
  color: #122f47;
  margin-bottom: 15px;
  font-weight: bold;
}

.process-step-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin: 60px 0;
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bannerZoom 8s ease-in-out infinite;
}

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

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 47, 71, 0.5);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  color: white;
}

.banner-title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.banner-subtitle {
  font-size: 24px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.4;
}

.banner-cta {
  display: inline-block;
  background-color: #d7c5a3;
  color: #122f47;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(215, 197, 163, 0.4);
}

.banner-cta .btn-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.banner-cta:hover .btn-arrow {
  transform: translateX(5px);
}

/* Gestion Publique Specific Styles */
#gestion-publique .hero-slide[data-slide="photo"]::after {
  background: linear-gradient(to bottom, rgba(18, 47, 71, 0.7), rgba(18, 47, 71, 0.9)); /* Bleu foncé */
}

#gestion-publique .banner-section {
  background-color: #000080; /* Example: Dark blue background for banner */
}

#gestion-publique .banner-section img {
  opacity: 0.5; /* Make the image semi-transparent to show the color */
}

#gestion-publique .banner-title {
  color: #fff; /* White text for visibility */
}

#gestion-publique .banner-subtitle {
  color: #eee; /* Lighter white for subtitle */
}

#gestion-publique .banner-cta {
  background-color: #ffffff; /* White button */
  color: #122f47; /* Dark blue text */
}

#gestion-publique .banner-cta:hover {
  background-color: #e0e0e0; /* Lighter white on hover */
}

/* Livrable styles */
#gestion-publique .livrable-banner {
  background-color: #d3d3d3; /* Gris */
  color: #000080; /* Bleu foncé text */
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 30px;
}

#gestion-publique .livrable-banner h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}

#gestion-publique .livrable-banner p {
  font-size: 16px;
  line-height: 1.5;
}

/* Demander un projet button style */
#gestion-publique .demander-projet-button {
  background-color: #95c4df !important; /* Bleu */
  color: #122f47 !important;
  border: none !important;
  padding: 15px 35px !important;
  border-radius: 5px !important;
  font-weight: bold !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(149, 196, 223, 0.3) !important;
}

#gestion-publique .demander-projet-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(149, 196, 223, 0.6) !important;
}


/* Partners Section */
.partners {
  padding: 40px 20px 80px 20px;
  background-color: #fff;
  text-align: center;
}

.partners-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.partners-label {
  color: #d7c5a3;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.partners-title {
  font-size: 42px;
  color: #122f47;
  margin-bottom: 15px;
  font-weight: bold;
}

.partners-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.partners-grid {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.partners-slider {
  display: flex;
  gap: 60px;
  animation: slidePartners 15s linear infinite;
}

@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-slider:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 15px;
  transition: all 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.7;
  border: 2px solid transparent;
  flex-shrink: 0;
  min-width: 300px;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-10px);
  background: #fff;
  border-color: #d7c5a3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 220px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Reslex container - single logo, no animation */
.reslex-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo-single {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 15px;
  border: 2px solid #d7c5a3;
  min-width: 300px;
}

.partner-logo-single img {
  max-width: 220px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.service-item-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

#developpement .service-item-description {
  color: #666;
}

.service-content-cta {
  display: inline-block;
  background-color: #d7c5a3;
  color: #122f47;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-content-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(215, 197, 163, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #122f47;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  /* Logo dans le menu mobile */
  .mobile-nav-logo {
    display: block !important;
    text-align: center;
    padding: 20px 0 30px 0 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    margin-bottom: 10px;
  }

  .mobile-nav-logo img {
    height: 80px;
    width: auto;
  }

  /* Bouton CTA dans le menu mobile */
  .mobile-nav-cta {
    display: block !important;
    text-align: center;
    padding: 20px 0 10px 0 !important;
    border-top: 2px solid rgba(255, 255, 255, 0.2) !important;
    margin-top: 10px;
    border-bottom: none !important;
  }

  .mobile-cta-button {
    display: inline-block !important;
    background-color: #d7c5a3 !important;
    color: #122f47 !important;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(215, 197, 163, 0.3) !important;
  }

  .mobile-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(215, 197, 163, 0.6) !important;
  }

  .main-nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    text-align: left;
  }

  nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a {
    display: block;
    padding: 15px 0;
  }

  .cta-button {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .services-title-image {
    height: 45px;
  }

  .service-content-title {
    font-size: 24px;
  }

  .hero-content-photo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: 1.5px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-content-video {
    bottom: 30px;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero-arrow {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .hero-arrow-right {
    right: 15px;
  }

  .hero-arrow-left {
    left: 15px;
  }

  .process-container {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 28px;
  }
}



/* Contact Section */
.contact {
  padding: 80px 20px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-map-section {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
}

.contact-map-title {
  font-size: 28px;
  color: #122f47;
  margin-bottom: 10px;
  font-weight: bold;
}

.contact-map-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Sélecteur de bureau */
.office-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.office-selector-btn {
  flex: 1;
  padding: 15px 30px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: #666;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.office-selector-btn:hover {
  border-color: #d7c5a3;
  color: #122f47;
}

.office-selector-btn.active {
  background: #122f47;
  color: #fff;
  border-color: #122f47;
}

.map-container {
  position: relative;
  margin-bottom: 40px;
}

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

.map-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #d7c5a3;
  border: 3px solid #122f47;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  cursor: pointer;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(215, 197, 163, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(215, 197, 163, 0);
  }
}

.map-marker-liege {
  top: 45%;
  left: 70%;
}

.map-marker-niger {
  top: 77%;
  left: 18%;
}

.office-info {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #d7c5a3;
  margin-top: 30px;
}

.office-name {
  font-size: 18px;
  color: #122f47;
  font-weight: bold;
  margin-bottom: 15px;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.office-detail-icon {
  color: #d7c5a3;
  font-size: 16px;
  margin-top: 2px;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  align-self: start;
}

.contact-title {
  font-size: 32px;
  color: #122f47;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

.contact-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #122f47;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group label::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #95c4df;
  border-radius: 50%;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #95c4df;
  background-color: #f0f8fc;
  box-shadow: 0 0 0 4px rgba(149, 196, 223, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: 'Arial', sans-serif;
}

.form-submit {
  background: #d7c5a3;
  color: #122f47;
  padding: 18px 40px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-self: center;
  width: 100%;
  max-width: 300px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(215, 197, 163, 0.3);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(215, 197, 163, 0.5);
}

.form-submit:active {
  transform: translateY(-1px);
}

/* Animations au scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.feature,
.service-tab,
.process-step,
.partner-logo {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animated .feature,
.scroll-animate.animated .service-tab,
.scroll-animate.animated .process-step,
.scroll-animate.animated .partner-logo {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.animated .feature:nth-child(1) {
  transition-delay: 0.1s;
}

.scroll-animate.animated .feature:nth-child(2) {
  transition-delay: 0.2s;
}

.scroll-animate.animated .feature:nth-child(3) {
  transition-delay: 0.3s;
}

.scroll-animate.animated .feature:nth-child(4) {
  transition-delay: 0.4s;
}

.scroll-animate.animated .process-step:nth-child(1),
.scroll-animate.animated .service-tab:nth-child(1),
.scroll-animate.animated .partner-logo:nth-child(1) {
  transition-delay: 0.1s;
}

.scroll-animate.animated .process-step:nth-child(3),
.scroll-animate.animated .service-tab:nth-child(2),
.scroll-animate.animated .partner-logo:nth-child(2) {
  transition-delay: 0.2s;
}

.scroll-animate.animated .process-step:nth-child(5),
.scroll-animate.animated .partner-logo:nth-child(3) {
  transition-delay: 0.3s;
}

.scroll-animate.animated .process-step:nth-child(7) {
  transition-delay: 0.4s;
}

/* Footer */
.footer {
  background-color: #122f47;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 120px;
  margin-bottom: px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d7c5a3;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d7c5a3;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #ddd;
}
/* Logo Créé par */
.creator-logo {
  height: 38px ;
  width: auto ;
  vertical-align: middle;
  opacity: 0.9;
  animation: none;
}

    /* Créé par e-motions - Footer */
    /* Créé par e-motions - Footer */
.footer-created-by {
  margin-top: 28px;
}
.footer-created-label {
  color: #aaa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.footer-created-link {
  display: inline-block;
}
.footer-created-logo {
  height: 32px !important;
  width: auto !important;
  max-width: 120px !important;
  opacity: 0.7;
  animation: none !important;
  object-fit: contain !important;
  display: inline-block !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-created-link:hover .footer-created-logo {
  opacity: 1;
  transform: translateY(-2px);
}



@media (max-width: 768px) {
  .contact-container {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-map-section {
    padding: 30px 20px;
    align-items: center;
  }

  .contact-map-title {
    font-size: 24px;
  }

  .office-info {
    margin-top: 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 24px;
  }

  .form-submit {
    max-width: 100%;
  }

  .process-container {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .process-step {
    flex: 1 1 100%;
    min-width: auto;
  }

  .hero-slide .mobile-banner {
    display: block;
  }

  .hero-slide .desktop-banner {
    display: none;
  }

  /* Masquer la deuxième slide hero sur mobile */
  .hero-slide[data-slide="photo"] {
    display: none !important;
  }

  /* Masquer les flèches de navigation sur mobile */
  .hero-arrow {
    display: none !important;
  }

  /* Position du bouton "Qui sommes-nous" sur mobile */
  .hero-content-video {
    bottom: 80px;
    transform: translateX(-50%);
  }

  .banner-section .mobile-banner {
    display: block;
  }

  .banner-section .desktop-banner {
    display: none;
  }

  .banner-section {
    height: auto;
  }

  .banner-section .mobile-banner {
    aspect-ratio: 4 / 3;
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .banner-title {
    font-size: 22px;
    line-height: 1.2;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-subtitle {
    font-size: 16px;
  }

  .banner-cta {
    padding: 12px 25px;
    font-size: 14px;
  }

  .nav-dropdown > a {
    justify-content: space-between;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: none;
    cursor: default;
  }

  .dropdown-arrow {
    display: none !important;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    max-height: none !important;
    overflow: visible;
    transform: none;
    margin: 0;
    padding: 10px 0 !important;
    box-shadow: none;
    background-color: rgba(18, 47, 71, 0.5);
    border-radius: 0;
    border: none;
    display: block !important;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu li {
    border-bottom: none;
    width: 100%;
  }

  .dropdown-menu li a {
    color: white !important;
    padding: 12px 20px !important;
    display: block;
    width: 100%;
    font-size: 14px;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.4;
    text-align: center !important;
  }

  .dropdown-menu li a:hover,
  .dropdown-menu li a:active,
  .dropdown-menu li a:focus {
    background-color: rgba(215, 197, 163, 0.1) !important;
    text-align: center !important;
    padding: 12px 20px !important;
    color: white !important;
  }

  #partenaire-reslex {
    display: block !important;
    padding: 40px 20px !important;
  }

  .reslex-container {
    padding: 0 20px;
    display: flex !important;
  }

  .partner-logo-single {
    min-width: 200px;
    padding: 20px;
    display: flex !important;
  }

  .partner-logo-single img {
    display: block !important;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mini Service Modal */
.service-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 47, 71, 0.9);
  animation: fadeIn 0.2s ease;
}

.service-modal-content {
  position: relative;
  background-color: #fff;
  margin: 20% auto;
  padding: 35px 40px;
  width: 90%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}

.service-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #122f47;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.service-modal-close:hover {
  color: #d7c5a3;
}

.service-modal-title {
  font-size: 24px;
  color: #122f47;
  text-align: center;
  margin-bottom: 25px;
  font-family: 'DM Serif Display', serif;
}

.service-modal-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-modal-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #f8f8f8;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  text-decoration: none;
  color: #122f47;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-modal-btn:hover {
  background: #122f47;
  color: #fff;
  border-color: #122f47;
  transform: translateX(5px);
}

.service-modal-arrow {
  font-size: 20px;
  color: #d7c5a3;
  transition: transform 0.3s ease;
}

.service-modal-btn:hover .service-modal-arrow {
  transform: translateX(5px);
  color: #fff;
}

/* Responsive Mini Modal */
@media (max-width: 768px) {
  .service-modal-content {
    margin: 30% auto;
    padding: 30px 25px;
    width: 85%;
  }

  .service-modal-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .service-modal-btn {
    padding: 15px 20px;
    font-size: 15px;
  }
}


