body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
  font-family: "Inter", sans-serif;
  color: #444444;
}

a {
  color: #F7941D;
  text-decoration: none;
}

a:hover {
  color: #F7941D;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #F7941D;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #F7941D;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #FFAC47;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #F7941D;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  z-index: 997;
  height: 86px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header.fixed-top {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #F7941D;
}

#header .logo img {
  max-height: 40px;
  transition: all 0.3s ease;
}

#header.fixed-top .logo img {
  max-height: 35px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: linear-gradient(90deg, #F7941D, #f59f36);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #F7941D;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar .dropdown ul li {
  min-width: 200px;
  padding: 0;
}

.navbar .dropdown ul a {
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  color: #222222;
  transition: all 0.3s ease;
}

.navbar .dropdown ul a i {
  font-size: 12px;
  transition: all 0.3s ease;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #F7941D;
  background: rgba(247, 148, 29, 0.05);
  padding-left: 25px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
}

.mobile-nav-toggle:hover {
  color: #F7941D;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 999;
  padding: 20px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: relative;
  top: 55px;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  background-color: transparent;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 20px;
  font-size: 16px;
  color: #222222;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-mobile > ul > li {
  padding: 0;
  margin-bottom: 5px;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #F7941D;
  background: rgba(247, 148, 29, 0.05);
  padding-left: 25px;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(247, 148, 29, 0.05);
  box-shadow: none;
  border-radius: 8px;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
  padding: 0;
}

.navbar-mobile .dropdown ul a {
  padding: 12px 20px;
  font-size: 14px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #F7941D;
  background: rgba(247, 148, 29, 0.1);
  padding-left: 25px;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(247, 148, 29, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(247, 148, 29, 0.1);
  color: #F7941D;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2b2b2b;
}

.hero h2 {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #666;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-stats {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  display: inline-flex;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #F7941D;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  white-space: nowrap;
}

.hero-image-wrapper {
  position: relative;
  padding: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-shape-1,
.hero-shape-2 {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(247, 148, 29, 0.1), rgba(247, 148, 29, 0.05));
  top: -50px;
  right: -100px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(247, 148, 29, 0.08), rgba(247, 148, 29, 0.03));
  bottom: -30px;
  left: -50px;
}

.floating-card {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(247, 148, 29, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7941D;
  font-size: 1.25rem;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text span {
  font-weight: 600;
  color: #2b2b2b;
  font-size: 0.9rem;
}

.card-text small {
  color: #666;
  font-size: 0.8rem;
}

.hero-bottom-shape {
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bottom-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: auto;
  transform: rotateY(0deg);
}

@media (max-width: 991px) {
  .hero-bottom-shape {
    bottom: -1px;
  }
  
  .hero-bottom-shape svg {
    width: calc(130% + 1.3px);
    transform: translateX(-15%);
  }
}

@media (max-width: 768px) {
  .hero-bottom-shape svg {
    width: calc(150% + 1.3px);
    transform: translateX(-25%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  #hero {
    padding: 80px 0 60px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin-top: 3rem;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 6px 15px;
  margin: 0;
  background: #F7941D;
  color: #ffffff;
  display: inline-block;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #F7941D;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #F2ECE6;
  min-height: 40px;
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.featured-services .icon-box:hover::before {
  background: #F7941D;
  top: 0;
  border-radius: 0px;
}
.featured-services .icon {
  margin-bottom: 15px;
}
.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #F7941D;
  transition: all 0.3s ease-in-out;
}
.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.featured-services .title a {
  color: #111;
}
.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}
.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: rgba(247, 148, 29, 0.03);
  border-radius: 50px 0 0 200px;
  z-index: 0;
}

.about .content {
  position: relative;
  z-index: 1;
}

.about .content h3 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
  text-align: justify;
}

.about .content p b {
  color: #F7941D;
  font-weight: 600;
}

.about-image-wrapper {
  position: relative;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(45deg, rgba(247, 148, 29, 0.1), rgba(247, 148, 29, 0.05));
  box-shadow: 0 10px 30px rgba(247, 148, 29, 0.1);
  transition: all 0.3s ease;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80%;
  height: 80%;
  border: 2px dashed rgba(247, 148, 29, 0.3);
  border-radius: 20px;
  z-index: 0;
}

.about-image-wrapper img {
  position: relative;
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: 1;
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
}

.about-image-wrapper:hover img {
  transform: scale(1.02);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-stat-item {
  text-align: left;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-stat-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.15);
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F7941D;
  margin-bottom: 0.5rem;
  display: block;
}

.about-stat-label {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .about::before {
    width: 100%;
    border-radius: 0;
    opacity: 0.5;
  }

  .about .content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .about .content h3 {
    font-size: 2rem;
  }

  .about-image-wrapper::before {
    display: none;
  }

  .about-stat-item {
    padding: 1rem;
  }

  .about-stat-number {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
.fin
--------------------------------------------------------------*/
.fin {
  background: #F2ECE6;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #F2ECE6 100%);
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(247, 148, 29, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.services .section-title {
  position: relative;
  z-index: 2;
}

.services .highlight-badge {
  background: linear-gradient(45deg, #F7941D, #f59f36);
  font-size: 1.8rem;
  padding: 0.8rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.services .highlight-badge::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #F7941D;
  border-radius: 2px;
}

.service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(247, 148, 29, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Crée un carré parfait */
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.1);
}

.service-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  color: #F7941D;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0;
}

.service-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 991px) {
  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper {
    margin-bottom: 1rem;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 1.2rem;
  }

  .icon-wrapper {
    margin-bottom: 0.8rem;
  }

  .service-title {
    font-size: 1.2rem;
    margin: 0.8rem 0;
  }

  .service-description {
    font-size: 0.95rem;
    text-align: justify;
    hyphens: auto;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #F2ECE6 100%);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(247, 148, 29, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

.contact .section-title {
  position: relative;
  z-index: 2;
}

.contact .section-title h2 {
  background: linear-gradient(45deg, #F7941D, #f59f36);
  font-size: 1.8rem;
  padding: 0.8rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #F7941D;
  border-radius: 2px;
}

.contact .info-box {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(247, 148, 29, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1;
  margin-bottom: 2rem;
}

.contact .info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(247, 148, 29, 0.15);
  border-color: rgba(247, 148, 29, 0.3);
}

.contact .info-box i {
  font-size: 2.5rem;
  color: #F7941D;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact .info-box:hover i {
  transform: scale(1.1);
}

.contact .info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

.contact .info-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

.contact .info-box p a {
  color: #666;
  transition: all 0.3s ease;
}

.contact .info-box p a:hover {
  color: #F7941D;
  text-decoration: none;
}

@media (max-width: 991px) {
  .contact .info-box {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .contact .info-box {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  position: relative;
  background: linear-gradient(135deg, #F2ECE6 0%, #fff 100%);
  padding: 0;
  color: #444444;
  font-size: 14px;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(247, 148, 29, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}

#footer .footer-top {
  position: relative;
  padding: 80px 0 40px;
  z-index: 1;
}

#footer .footer-contact h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

#footer .footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #F7941D;
  border-radius: 2px;
}

#footer .footer-contact p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1rem;
}

#footer .footer-contact p strong {
  color: #2b2b2b;
}

#footer .footer-links h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

#footer .footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #F7941D;
  border-radius: 2px;
}

#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#footer .footer-links ul li:hover {
  transform: translateX(5px);
}

#footer .footer-links ul li i {
  color: #F7941D;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

#footer .footer-links ul li:hover i {
  transform: scale(1.2);
}

#footer .footer-links ul a {
  color: #666;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#footer .footer-links ul a:hover {
  color: #F7941D;
  text-decoration: none;
}

#footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

#footer .social-links a {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F7941D;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.1);
}

#footer .social-links a:hover {
  background: #F7941D;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.2);
}

#footer .copyright {
  position: relative;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(247, 148, 29, 0.1);
  color: #666;
  font-size: 1rem;
  z-index: 1;
}

#footer .copyright strong {
  color: #2b2b2b;
}

@media (max-width: 991px) {
  #footer .footer-top {
    padding: 60px 0 30px;
  }
  
  #footer .footer-contact,
  #footer .footer-links {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  #footer .footer-contact h3,
  #footer .footer-links h4 {
    font-size: 1.3rem;
  }
  
  #footer .footer-contact p,
  #footer .footer-links ul a {
    font-size: 1rem;
  }
  
  #footer .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Nouveaux styles pour le Hero */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero .container {
  z-index: 2;
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.highlight {
  color: #F7941D;
  font-weight: 700;
}

.highlight-badge {
  background: linear-gradient(45deg, #F7941D, #f59f36);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 1.5rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(247, 148, 29, 0.2);
}

/* Animation classes */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__delay-1s {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive improvements */
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .icon-wrapper {
    padding: 1rem;
  }
  
  .service-icon {
    max-width: 100%;
  }
  
  .service-title {
    font-size: 1.25rem;
  }
}

/* Button styles */
.btn-get-started,
.btn-secondary {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all 0.5s ease;
  margin: 10px 0;
  text-decoration: none;
}

.btn-get-started {
  background: #F7941D;
  color: white;
  border: 2px solid #F7941D;
}

.btn-get-started:hover {
  background: #f59f36;
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  color: #F7941D;
  background: rgba(247, 148, 29, 0.1);
  border: 2px solid #F7941D;
}

.btn-secondary:hover {
  background: #F7941D;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .btn-get-started,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    margin: 8px 0;
  }

  .d-flex.gap-3.flex-wrap {
    width: 100%;
  }
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Active state for navigation links */
.nav-link.active {
  color: #F7941D !important;
}

/* Ajustements du menu mobile */
@media (max-width: 991px) {
  .navbar-mobile {
    padding: 15px;
  }

  .navbar-mobile ul {
    top: 45px;
    padding: 15px 0;
  }

  .navbar-mobile .dropdown ul {
    display: block;
    position: static;
    margin: 5px 0;
    padding: 5px 0;
    background: rgba(247, 148, 29, 0.05);
    border-radius: 8px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

  .navbar-mobile .dropdown ul li {
    padding: 0;
  }

  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Ajustements de la section Services */
@media (max-width: 991px) {
  .services .highlight-badge {
    font-size: 1.2rem;
    padding: 6px 15px;
    margin-bottom: 1rem;
  }

  .service-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .icon-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-title {
    font-size: 1.3rem;
    color: #F7941D;
    margin: 1rem 0;
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .services .highlight-badge {
    font-size: 1.1rem;
    padding: 5px 12px;
  }

  .icon-wrapper {
    aspect-ratio: 1;
    width: 100%;
  }

  .service-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-title {
    font-size: 1.2rem;
  }
}

/* Ajustements de la section Contact */
@media (max-width: 991px) {
  .contact .section-title h2 {
    font-size: 1.2rem;
    padding: 6px 15px;
    margin-bottom: 1rem;
  }

  .contact .info-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact .info-box i {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .contact .info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .contact .info-box p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact .section-title h2 {
    font-size: 1.1rem;
    padding: 5px 12px;
  }

  .contact .info-box {
    padding: 1.2rem;
  }

  .contact .info-box i {
    font-size: 1.8rem;
  }

  .contact .info-box h3 {
    font-size: 1.2rem;
  }

  .contact .info-box p {
    font-size: 0.95rem;
  }
}

/* Ajustements généraux pour le responsive */
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  .section-title {
    padding-bottom: 20px;
  }

  .section-title h3 {
    font-size: 1.8rem;
    margin: 10px 0 0 0;
  }

  .section-title p {
    font-size: 0.95rem;
    margin: 10px auto 0 auto;
    text-align: center;
  }
}
