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

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f5f4;
  color: #222;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

.margt20 {
  margin-top: 20px;
}

.margt40 {
  margin-top: 40px;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

/* =========================
       HEADER FIXE
    ========================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
  max-width: 1300px;
  margin: auto;
  padding: 10px 40px 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #c5a2a2;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #c5a2a2;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}


/* =========================
   HERO CAROUSEL
========================= */

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 120px;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide p {
  color: #fff;
  margin: 0;
}

.hero-content {
  max-width: 900px;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.4;
}

/* =========================
   FLÈCHES
========================= */

.prev,
.next {
  position: absolute;
  top: 60%;
  transform: translateY(-60%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.85); */
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  z-index: 10;
  transition: 0.3s;
}

.prev:hover,
.next:hover {
  background: white;
}

.prev {
  left: 50px;
}

.next {
  right: 50px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

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

  .hero-content p {
    font-size: 1rem;
  }

  .prev,
  .next {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
}

/* =========================
       SECTIONS
    ========================== */

section {
  padding: 80px 40px;
  scroll-margin-top: 120px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 400;
}

.section-subtitle {
  color: #888;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
}

.separator {
  width: 70px;
  height: 4px;
  background: #999;
  margin-bottom: 40px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

/* =========================
       QUI SUIS-JE
    ========================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* =========================
       CARTES
    ========================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

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

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 300;
}

.card a {
  background: #000;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 12px;
  display: inline-block;
}

.card img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.card p {
  font-weight: 100;
  font-size: .9rem;
}

/* =========================
       TÉMOIGNAGES
    ========================== */

.testimonials {
  background: #f5f4f3;
  padding: 70px 20px;
  text-align: center;
  overflow: visible;
}

.testimonials h2 {
  font-size: 4rem;
  margin-bottom: 80px;
  font-weight: 700;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  min-height: auto !important;
}

#temoignages-entreprises .testimonial-carousel {
  min-height: 2200px;
}

.testimonial-wrapper {
  width: 100%;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  color: #333;
  margin-bottom: 25px;
  max-width: 700px;
  display: inline-block;
}

.testimonial-profile img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-profile h3 {
  font-size: 1rem;
}

.testimonial-profile span {
  font-size: .9rem;
  color: #777;
}

section#temoignages {
  padding: 80px 40px 0 40px;
}

section#temoignages-entreprises {
  padding: 0 40px 0 40px;
}


section#temoignages2 {
  padding: 0 40px;
}

/* =========================
   DOTS
========================= */

.dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #222;
}

/* FIX CAROUSEL ENTREPRISES */

#temoignages-entreprises .testimonial-wrapper,
#temoignages-entreprises .testimonials,
#temoignages-entreprises .testimonial-carousel {
  height: auto !important;
  min-height: unset !important;
  overflow: visible !important;
}

#temoignages-entreprises .testimonial {
  display: none;
  position: relative !important;
}

#temoignages-entreprises .testimonial.active {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

  .testimonials h2 {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .testimonial-profile h3 {
    font-size: 1.5rem;
  }

  .testimonial-profile span {
    font-size: 1rem;
  }

  .testimonial-profile img {
    width: 90px;
    height: 90px;
  }
}

/* =========================
       CONTACT
    ========================== */

.contact-box {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-box a {
  color: rgb(214, 124, 124);
}

/* =========================
   RÉSEAUX SOCIAUX
========================= */

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;

  margin-top: 60px;
}

.social-icon {
  width: 60px;
  height: 60px;

  border-radius: 50%;

  background: #e7a2a2;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  transition: 0.3s;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.05);
  background: #dd8f8f;
}

.social-icon svg {
  width: 25px;
  height: 25px;
  fill: white;
}

.instagram-svg {
  width: 42px;
  height: 42px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

  .social-icon {
    width: 80px;
    height: 80px;
  }

  .social-icon svg {
    width: 35px;
    height: 35px;
  }
}

/* =========================
       FOOTER
    ========================== */

footer {
  text-align: center;
  padding: 40px;
  background: #f0ece9;
  color: #777;
  font-size: .8rem;
}

footer a:hover {
  color: #000;
}

/* =========================
       RESPONSIVE
    ========================== */

@media(max-width:900px) {

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

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

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
  }
}

@media(max-width:768px) {

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

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 90px 25px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* =========================
   SECTION OFFRE
========================= */

header.offers {
  background: #f6f4f2;
}

header.offers .navbar {
  padding: 0 40px;
}

.offers-section {
  padding: 160px 0 80px;
}

.offers-section h2 {
  font-size: 2rem;
  font-weight: 500;
}

.offers-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 700;
}

.main-image {
  margin-bottom: 30px;
}

.main-image img {
  width: 100%;
  display: block;
}

.offer-content h3 {
  font-size: 1.6rem;
  font-weight: 500;
}

.intro {
  color: #777;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 40px;
}

.offer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.offer-content ul {
  padding-left: 25px;
  margin-bottom: 30px;
}

.offer-content li {
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.offer-content strong {
  font-weight: 700;
}

/* =========================
   FAQ
========================= */

.faq-item {
  margin-bottom: 35px;
}

.faq-item h5 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =========================
   BOUTON
========================= */

.main-button {
  display: inline-block;
  background: black;
  color: white;
  padding: 20px 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: 0.3s;
}

.main-button:hover {
  transform: translateY(-3px);
}

/* =========================
   CARDS
========================= */

.cards-section {
  padding: 0 40px 50px 40px;
}

.cards-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.cards-grid.item2 {
  max-width: 700px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.offer-card {
  background: white;
}

.offer-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 22px;
}

.card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 500;
}

.card-content p {
  margin-bottom: 10px;
  font-size: .9rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
}

.card-button {
  display: inline-block;
  background: black;
  color: white;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: .9rem;
  margin-top: 10px;
}

.card-button:hover {
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px) {

  .section-title {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .offer-content h3 {
    font-size: 2.2rem;
  }

  .offer-content h4 {
    font-size: 1.3rem;
  }

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

  .cards-grid.item2 {
    display: flex;
    flex-direction: column;
  }

  .offer-card img {
    height: 350px;
  }

  .card-content h3 {
    font-size: 1.5rem;
  }

}

/* =========================
   SECTION ENTREPRISE
========================= */

.enterprise-section {
  background: #f5f2f1;
  padding: 100px 0 120px;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;
}

/* =========================
   TITRE
========================= */

.enterprise-title {
  text-align: center;
  font-size: 4rem;
  line-height: 1.35;
  font-weight: 700;

  max-width: 1400px;
  margin: 0 auto 80px;
}

/* =========================
   IMAGE
========================= */

.enterprise-image {
  margin-bottom: 80px;
}

.enterprise-image img {
  width: 100%;
  display: block;
}

/* =========================
   CONTENU
========================= */

.enterprise-content {
  max-width: 1250px;
  margin: auto;
}

.enterprise-content h3 {
  font-size: 2.2rem;
  margin-bottom: 35px;
}


/* =========================
   LISTE
========================= */

.benefits-list {
  padding-left: 35px;
}

.benefits-list li {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* =========================
   ÉTAPES
========================= */

.steps {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.step p {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.step strong {
  font-weight: 700;
}

/* =========================
   AVANTAGES
========================= */

.advantages {
  margin-top: 30px;
}

.advantages p {
  font-size: 1.7rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.advantages strong {
  font-weight: 700;
}

/* =========================
   CONCLUSION
========================= */

.enterprise-final {
  margin-top: 90px;
}

.enterprise-final h3 {
  font-size: 2.2rem;
  line-height: 1.6;
}

.enterprise-final p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #444;
}

/* =========================
   BOUTON
========================= */

.button-wrapper {
  text-align: center;
  margin-top: 120px;
}

.enterprise-button {
  display: inline-block;

  background: #2d2d2d;
  color: white;

  padding: 30px 90px;

  border-radius: 12px;

  text-decoration: none;

  font-size: 2rem;
  font-weight: 600;

  transition: 0.3s;
}

.enterprise-button:hover {
  background: black;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

  .enterprise-title {
    font-size: 2.6rem;
  }

  .enterprise-content h3 {
    font-size: 1.7rem;
  }

  .benefits-list li,
  .step p,
  .advantages p,
  .enterprise-final p {
    font-size: 1.2rem;
  }

  .enterprise-button {
    font-size: 1.2rem;
    padding: 22px 50px;
  }

}

@media(max-width:768px) {

  .enterprise-section {
    padding: 70px 0 90px;
  }

  .container {
    padding: 0 25px;
  }

  .enterprise-title {
    font-size: 2rem;
  }

}

/* =========================
   CGV
========================= */


.container.cgv h5 {
  font-size: 1.2rem;
  margin: 20px 0;
  text-align: left;
}