/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, sans-serif;
}

body {
  background: #fff1f1;
  color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

h1, h2, h3, .cta-box h2, .video-header h2, .trust-text h2 {
    font-family: 'Lexend', sans-serif !important;
    font-weight: 800;
    letter-spacing: -0.02em !important;
}

i, .fa, .fas, .fab, .far {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome" !important;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 4vw, 60px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
  z-index: 1;
}

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

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: clamp(36px, 5vw, 60px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-left h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1.05;
}

.hero-left p {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-top: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding: clamp(12px, 3vw, 40px);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
    padding: 10px 15px;
  }
  .hero-left h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 3px;
  }
  .hero-left p {
    font-size: clamp(14px, 2vw, 18px);
  }
}

/* MENU */
.menu-toggle {
  position: fixed;
  top: 50px;
  right: 100px;
  z-index: 10001;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 26px;
  color: white;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 480px) {
  .menu-toggle {
    top: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 20px;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: #f58260;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 6vw;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
  transition: all 0.4s ease;
  z-index: 10000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: flex-start;
  margin-left: 8vw;
}

.menu-left {
  width: 100%;
  text-align: left;
}

.menu-left ul {
  list-style: none;
}

.menu-left li {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.menu-left li:hover {
  transform: translateX(6px);
  opacity: 0.7;
}

.menu-left li span {
  opacity: 0.5;
  margin-right: 12px;
}

.agency-footer {
  margin-top: 50px;
  color: white;
}

.socials {
  display: flex;
  gap: 18px;
  font-size: 22px;
  margin-bottom: 10px;
  justify-content: flex-start;
  align-items: center;
}

.socials i {
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.agency-name {
  position: relative;
  top: -5px;
}

@media (max-width: 768px) {
  .menu-overlay {
    justify-content: center;
    padding: 20px;
  }
  .menu-container {
    max-width: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .menu-left {
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .menu-overlay {
    padding: 15px;
  }
  .menu-left li {
    font-size: clamp(18px, 3.5vw, 28px);
    margin-bottom: 12px;
  }
  .agency-footer {
    margin-top: 30px;
  }
  .socials {
    gap: 10px;
  }
  .socials i {
    font-size: 16px;
  }
}

/* ABOUT SECTION */
.about-section {
  width: 100%;
  padding: clamp(60px, 12vw, 160px) 20px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .about-section {
    padding: clamp(40px, 10vw, 80px) 15px;
  }
}

.about-container {
  max-width: 1000px;
  text-align: center;
}

.about-container h2 {
  font-size: clamp(18px, 2.5vw, 35px);
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

@media (max-width: 480px) {
  .about-container h2 {
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.4;
  }
}

.about-container .highlight {
  color: #333;
  font-weight: 600;
}

.about-container .bold {
  font-weight: 800;
  color: #4A4A4A;
}

.agency-line {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 480px) {
  .agency-line {
    font-size: 14px;
    gap: 12px;
  }
}

/* HERO SECTION 2 (CHEZ NOUS) */
.hero-section {
  background-color: #f7f7f7;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  margin-top: -65px;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: -40px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 15px;
    margin-top: -20px;
  }
}

.container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.image-container {
  flex: 1;
  min-width: 350px;
  position: relative;
}

@media (max-width: 480px) {
  .image-container {
    min-width: 100%;
    flex: 1 1 100%;
  }
}

.main-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: #632d79;
  padding: 15px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 480px) {
  .badge {
    position: static;
    margin-top: 15px;
    justify-content: center;
    padding: 12px 20px;
  }
}

.badge .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}

@media (max-width: 480px) {
  .badge .number {
    font-size: 1.5rem;
  }
}

.badge .sub {
  font-size: 0.8rem;
  color: #ffffff;
}

.text-container {
  flex: 1.2;
  min-width: 350px;
  color: #2e2d2f;
}

@media (max-width: 480px) {
  .text-container {
    min-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }
}

.text-container h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

@media (max-width: 480px) {
  .text-container h1 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 15px;
    letter-spacing: -1px;
  }
}

.text-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .text-container p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.text-container strong {
  font-weight: 700;
  color: #4A4A4A;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .text-container h1 {
    font-size: 2.5rem;
  }
}

/* SERVICES SECTION */
.services-section {
  background-color: #ffffff;
  padding: 100px 20px 40px 20px;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 15px;
  }
}

.main-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 60px;
  margin-top: 150px;
  color: #2e2d2f;
  letter-spacing: -1px;
}

@media (max-width: 480px) {
  .main-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 40px;
    margin-top: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transform: translateY(-75px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    transform: translateY(-40px);
  }
}

.service-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  border: 5px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 480px) {
  .service-card {
    padding: 25px 18px;
  }
}

.service-card:hover {
  border-color: #f58260;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.icon-box {
  font-size: 2.5rem;
  color: #4A4A4A;
  margin-bottom: 25px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .icon-box {
    font-size: 2rem;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
  }
}

.service-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .service-icon {
    width: 60px;
    height: 60px;
  }
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4a4a4a;
}

@media (max-width: 480px) {
  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

@media (max-width: 480px) {
  .service-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
}

.read-more {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

@media (max-width: 480px) {
  .read-more {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

.read-more:hover {
  color: #4A4A4A;
}

/* MISSION SECTION */
.mission-section {
  background-color: #632d79;
  padding: 180px 20px;
  text-align: center;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 480px) {
  .mission-section {
    padding: 100px 15px;
  }
}

.mission-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mission-section h2 {
  font-size: 4.1rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

@media (max-width: 480px) {
  .mission-section h2 {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 25px;
    line-height: 1.1;
  }
}

.mission-section h2 span,
.mission-section h2 strong {
  font-weight: 900;
  text-transform: uppercase;
}

.mission-description {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

@media (max-width: 480px) {
  .mission-description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.mission-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@media (max-width: 480px) {
  .mission-actions {
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
  }
}

.btn-contact-secondary,
.btn-devis-primary {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 480px) {
  .btn-contact-secondary,
  .btn-devis-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

.btn-contact-secondary {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-contact-secondary:hover {
  border-color: #ff8a65;
  color: #ff8a65;
  background: rgba(255, 138, 101, 0.05);
}

.btn-devis-primary {
  background-color: #ff8a65;
  border: 2px solid #ff8a65;
  color: #fff;
  box-shadow: 0 8px 15px rgba(255, 138, 101, 0.2);
}

.btn-devis-primary:hover {
  background-color: #6a2a8b;
  border-color: #6a2a8b;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(106, 42, 139, 0.3);
}

.icon-whatsapp {
  transition: transform 0.3s ease;
}

.btn-contact-secondary:hover .icon-whatsapp {
  transform: rotate(15deg) scale(1.1);
}

/* MAITRISE SECTION */
.maitrise-section {
  position: relative;
  height: 45vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
}

@media (max-width: 480px) {
  .maitrise-section {
    height: 35vh;
  }
}

.maitrise-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.maitrise-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

.maitrise-content {
  position: relative;
  max-width: 750px;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .maitrise-content {
    padding: 0 15px;
  }
}

.maitrise-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .maitrise-content h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 8px;
  }
}

.accent {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: #f18763;
  font-family: 'Comic Sans MS', cursive;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .accent {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 12px;
  }
}

.maitrise-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 480px) {
  .maitrise-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .maitrise-content h2 {
    font-size: 34px;
  }
  .accent {
    font-size: 38px;
  }
}

/* PORTFOLIO SECTION */
.portfolio-section {
  padding: 60px 0;
  text-align: center;
  background-color: #f7f7f7;
}

@media (max-width: 480px) {
  .portfolio-section {
    padding: 40px 0;
  }
}

.portfolio-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .portfolio-container {
    padding: 0 15px;
  }
}

.portfolio-title {
  font-size: 3.5rem;
  font-weight: 1000;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: #2e2d2f;
}

@media (max-width: 480px) {
  .portfolio-title {
    font-size: clamp(24px, 5vw, 32px);
    letter-spacing: 1px;
  }
}

.filter-menu {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .filter-menu {
    margin-bottom: 20px;
    gap: 10px;
  }
}

.filter-item {
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}

.filter-item.active {
  color: #F18763;
}

.filter-item:hover {
  color: #000000;
}

@media (max-width: 480px) {
  .filter-item {
    font-size: 0.85rem;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.project-card {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f2f2f2;
}

@media (max-width: 600px) {
  .project-card {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .project-card {
    height: 200px;
  }
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(230, 81, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 10px;
}

@media (max-width: 480px) {
  .project-name {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}

.btn-view-all {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background-color: #632d79;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  transition: background 0.3s;
}

@media (max-width: 480px) {
  .btn-view-all {
    margin-top: 25px;
    padding: 10px 20px;
    font-size: 0.75rem;
  }
}

.btn-view-all:hover {
  background-color: #4A4A4A;
}

/* CTA BANNER */
.cta-banner-section {
  padding: clamp(40px, 8vw, 80px) 20px;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .cta-banner-section {
    padding: clamp(30px, 5vw, 50px) 15px;
  }
}

.cta-purple-card {
  background-color: #632d79;
  width: 100%;
  max-width: 1200px;
  border-radius: clamp(20px, 4vw, 40px);
  padding: clamp(30px, 6vw, 80px);
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .cta-purple-card {
    padding: clamp(20px, 5vw, 40px);
  }
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

@media (max-width: 480px) {
  .cta-content {
    flex-direction: column;
    gap: 25px;
  }
}

.cta-text {
  flex: 1;
  color: #ffffff;
  text-align: left;
}

@media (max-width: 480px) {
  .cta-text {
    text-align: center;
  }
}

.cta-text h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .cta-text h3 {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 10px;
  }
}

.cta-text p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  opacity: 0.9;
  max-width: 550px;
}

@media (max-width: 480px) {
  .cta-text p {
    font-size: clamp(14px, 1.2vw, 16px);
  }
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .cta-buttons {
    justify-content: center;
    width: 100%;
  }
}

.btn-rdv,
.btn-tarifs {
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn-rdv,
  .btn-tarifs {
    padding: 12px 20px;
    font-size: 12px;
  }
}

.btn-rdv {
  background-color: #ff8a65;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-rdv:hover {
  transform: scale(1.05);
}

.btn-tarifs {
  background-color: #ffffff;
  color: #ff8a65;
}

@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-text {
    text-align: center;
  }
  .cta-text p {
    margin: 0 auto;
  }
  .cta-buttons {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cta-purple-card {
    padding: 40px 20px;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn-rdv,
  .btn-tarifs {
    width: 100%;
    justify-content: center;
  }
  .cta-text h3 {
    font-size: 20px;
  }
}

/* PROCESS SECTION */
.process-section {
  padding: 40px 10%;
  background-color: #f7f7f7;
}

@media (max-width: 480px) {
  .process-section {
    padding: 30px 5%;
  }
}

.process-container {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 850px) {
  .process-container {
    flex-direction: column;
  }
  .process-left {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .process-container {
    gap: 25px;
  }
}

.process-left {
  flex: 0.7;
}

.process-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #2e2d2f !important;
  margin-bottom: 25px;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .process-main-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .process-main-title {
    font-size: clamp(20px, 4vw, 26px);
    margin-bottom: 15px;
  }
}

.process-image-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .process-image-wrapper {
    height: 200px;
  }
}

.process-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-right {
  flex: 1.3;
}

.accordion-item {
  border-bottom: 1px solid #eeeeee;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
}

@media (max-width: 480px) {
  .accordion-header {
    padding: 12px 0;
  }
}

.accordion-header span {
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px;
  color: #4a4a4a !important;
  transition: color 0.3s ease;
}

@media (max-width: 480px) {
  .accordion-header span {
    font-size: 0.85rem !important;
    letter-spacing: 0;
  }
}

.accordion-header .icon {
  font-size: 1.4rem !important;
  font-weight: 900 !important;
  color: #000000 !important;
  transition: transform 0.3s ease;
}

@media (max-width: 480px) {
  .accordion-header .icon {
    font-size: 1.1rem !important;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.accordion-content p {
  font-size: 0.85rem;
  color: #555555 !important;
  margin: 0;
  padding-bottom: 15px;
}

@media (max-width: 480px) {
  .accordion-content p {
    font-size: 0.8rem;
    padding-bottom: 10px;
  }
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
  color: #f58260 !important;
}

.accordion-item.active .accordion-header span {
  color: #f58260 !important;
}

/* VIDEO SECTION */
.video-presentation {
  width: 100%;
  padding: 80px 0;
  background-color: #eee;
  text-align: center;
}

@media (max-width: 480px) {
  .video-presentation {
    padding: 50px 0;
  }
}

.video-header h2 {
  font-size: 3rem;
  font-weight: 1000;
  text-transform: uppercase;
  color: #2e2d2f;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

@media (max-width: 480px) {
  .video-header h2 {
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: 25px;
    letter-spacing: 0;
  }
}

.video-header h2 span {
  color: #512264;
}

.video-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  height: 650px;
  border-radius: 25px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .video-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .video-container {
    height: 250px;
    border-radius: 15px;
  }
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube-play-btn {
  width: 90px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .youtube-play-btn {
    width: 70px;
  }
}

@media (max-width: 480px) {
  .youtube-play-btn {
    width: 60px;
  }
}

.youtube-play-btn:hover {
  transform: scale(1.1);
}

.youtube-play-btn svg path.ytp-large-play-button-bg {
  transition: fill 0.3s ease;
  fill: #FF0000;
}

.youtube-play-btn:hover svg path.ytp-large-play-button-bg {
  fill: #ff8a65;
}

.video-container.error-state {
  background-color: #000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
}

.video-container.error-state .video-placeholder {
  display: none;
}

.error-message {
  display: none;
}

.video-container.error-state .error-message {
  display: block;
}

.error-message i {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 480px) {
  .error-message i {
    font-size: 40px;
  }
}

/* TEAM SECTION */
.team-section {
  padding: 80px 5%;
  background-color: #ffffff;
  text-align: center;
}

@media (max-width: 480px) {
  .team-section {
    padding: 50px 15px;
  }
}

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

.team-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: right;
  margin-bottom: 50px;
  color: #2e2d2f;
}

@media (max-width: 480px) {
  .team-title {
    font-size: clamp(24px, 5vw, 32px);
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .team-title {
    font-size: 2rem;
    text-align: center;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
}

.team-card {
  text-align: center;
}

.image-box {
  position: relative;
  background-color: #6a2a8c;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .image-box {
    margin-bottom: 12px;
  }
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-info h3 {
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 5px;
  color: #000;
}

@media (max-width: 480px) {
  .member-info h3 {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }
}

.member-info p {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
}

@media (max-width: 480px) {
  .member-info p {
    font-size: 0.7rem;
  }
}

.btn-team {
  display: inline-block;
  padding: 12px 40px;
  border: 1.5px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .btn-team {
    padding: 10px 25px;
    font-size: 0.7rem;
  }
}

.btn-team:hover {
  background-color: #6f348b;
  color: #fff;
}

/* TRUST SECTION */
.trust-section {
  padding: 70px 20px 0 !important;
  background: #ffffff;
}

@media (max-width: 480px) {
  .trust-section {
    padding: 50px 15px 0 !important;
  }
}

.trust-box {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border: 5px solid #f7f7f7;
  border-radius: 22px;
  padding: 50px;
  position: relative;
  top: -5px;
}

@media (max-width: 480px) {
  .trust-box {
    padding: 30px 15px;
    border: 3px solid #f7f7f7;
  }
}

.trust-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .trust-text h2 {
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 12px;
  }
}

.trust-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 680px;
}

@media (max-width: 480px) {
  .trust-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.trust-question {
  margin-top: 28px;
  font-weight: 600;
  color: #666;
}

@media (max-width: 480px) {
  .trust-question {
    margin-top: 15px;
    font-size: 14px;
  }
}

.trust-logos {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 35px;
}

@media (max-width: 992px) {
  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }
}

.trust-logos img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .trust-logos img {
    max-height: 50px;
  }
}

/* CTA TESTIMONIAL */
.cta-testimonial-section {
  width: 100%;
  background-color: #ffffff;
  margin-top: -2px;
  padding: 80px 20px;
  position: relative;
  z-index: 10;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 480px) {
  .cta-testimonial-section {
    padding: 50px 15px;
  }
}

.cta-testimonial-section .container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 25px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .cta-testimonial-section .container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cta-testimonial-section .container {
    gap: 15px;
  }
}

.cta-box {
  background-color: #632d79;
  color: white;
  padding: 50px;
  border-radius: 20px;
  flex: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
  .cta-box {
    padding: 30px 20px;
  }
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 800;
}

@media (max-width: 480px) {
  .cta-box h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}

.cta-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 80%;
}

@media (max-width: 480px) {
  .cta-box p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

.testimonial-box {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 480px) {
  .testimonial-box {
    padding: 30px 20px;
  }
}

.testimonial-text {
  font-style: italic;
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.8rem;
  color: #ff8a65;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  .testimonial-author {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
  }
}

.quote-icon {
  font-size: 4rem;
  color: rgba(255, 138, 101, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
}

@media (max-width: 480px) {
  .quote-icon {
    font-size: 2.5rem;
    top: 5px;
    left: 10px;
  }
}

/* NEWSLETTER */
.newsletter-hero {
  width: 100%;
  height: 100vh;
  background: url('img/Newsletter.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 350px;
  box-sizing: border-box;
  position: relative;
}

@media (max-width: 768px) {
  .newsletter-hero {
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .newsletter-hero {
    height: auto;
    min-height: 80vh;
    padding: 40px 15px;
    flex-direction: column;
  }
}

.newsletter-container {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 480px) {
  .newsletter-container {
    justify-content: center;
  }
}

.newsletter-bar {
  display: flex;
  background: #ffffff;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-radius: 0;
  overflow: hidden;
}

@media (max-width: 480px) {
  .newsletter-bar {
    flex-direction: column;
  }
}

.newsletter-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 18px 30px;
  font-size: 18px;
  outline: none;
  color: #333;
}

@media (max-width: 480px) {
  .newsletter-bar input {
    padding: 12px 15px;
    font-size: 16px;
  }
}

.newsletter-bar button {
  background-color: #632d79;
  color: white;
  border: none;
  padding: 0 60px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 0;
}

@media (max-width: 480px) {
  .newsletter-bar button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.newsletter-bar button:hover {
  background-color: #ff8a65;
}

.newsletter-hero .newsletter-title {
  display: block;
  position: relative;
  top: auto;
  font-size: clamp(24px, 5vw, 48px);
  font-weight: 800;
  color: #000;
  left: 0;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .newsletter-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
}

/* FOOTER */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.footer {
  background-color: #632d79;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  text-align: center;
  width: 100%;
  padding: 80px 0 80px 0;
  display: block;
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0 30px 0;
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 90px;
    margin-bottom: 20px;
  }
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 400;
}

@media (max-width: 480px) {
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
}

.footer-contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 35px;
}

@media (max-width: 480px) {
  .footer-contact-info {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
  }
}

.footer-contact-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 55px;
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 15px;
    margin-bottom: 30px;
  }
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

@media (max-width: 480px) {
  .footer-nav a {
    font-size: 0.85rem;
    letter-spacing: 0;
  }
}

.footer-nav a:hover {
  color: #ff8a65;
}

.footer-divider {
  height: 1px;
  width: 100%;
  max-width: 1100px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 auto 35px auto;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (max-width: 480px) {
  .footer-bottom p {
    font-size: 0.7rem;
  }
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .footer-socials {
    gap: 8px;
    font-size: 0.7rem;
  }
}

.footer-socials a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: opacity 0.3s;
}

.footer-socials a:hover {
  color: #ff8a65 !important;
}

.sep {
  color: #ff8a65;
  font-weight: bold;
  margin: 0 4px;
}

/* FLOATING BUTTONS */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f18763;
  color: rgb(254, 255, 254);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-chat 2s infinite;
}

@media (max-width: 480px) {
  .chat-button {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

.chat-button:hover {
  transform: scale(1.1);
  background-color: #5ac06b;
}

.chat-tooltip {
  position: absolute;
  right: 75px;
  background-color: #333;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .chat-tooltip {
    display: none;
  }
}

.chat-button:hover .chat-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

@keyframes pulse-chat {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 138, 101, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 101, 0);
  }
}

.btn-top-premium {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6a2a8c 0%, #4a1d61 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 480px) {
  .btn-top-premium {
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
  }
}

.btn-top-premium:hover {
  background: #ff8a65;
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(255, 138, 101, 0.3);
}

.btn-top-premium:hover svg {
  animation: bounceUp 0.5s infinite alternate;
}

@keyframes bounceUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 7px;
  background: #f18763;
  z-index: 999999;
}

@media (max-width: 480px) {
  #scroll-progress {
    height: 5px;
  }
}

/* MARQUE DESIGN (NO MOVEMENT) */
.marque-design {
  position: relative;
  display: inline-block;
  z-index: 1;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.marque-design::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: -15%;
  width: 104%;
  height: 0.35em;
  background-color: #f18763;
  z-index: -1;
  transform: rotate(-1.5deg) !important;
  border-radius: 2px;
  animation: none !important;
  transition: none !important;
}

.card {
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.btn-rdv {
    padding: 13px 20px !important; 
    width: fit-content !important; 
    min-width: 0 !important;
    display: inline-block !important; 
    font-size: 13px !important;
}