/* ==========================================================================
   NEOWORKING - Styles principaux (desktop)
   Version: 2.0
   ========================================================================== */

/* ==========================================================================
   1. Header et navigation
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-dark);
  z-index: var(--z-header);
  padding: 1.25rem 0;
  transition: transform var(--transition-slow), padding var(--transition-medium),
    background-color var(--transition-medium), box-shadow var(--transition-medium);
}

.header--scrolled {
  padding: 0.75rem 0;
  background-color: var(--color-dark);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo */
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo-text {
  height: 3rem;
  width: auto;
}

.header__logo-symbol {
  height: 2.5rem;
  width: auto;
}

/* Navigation principale */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 1.5rem;
}

.header__nav-list {
  display: flex;
  gap: 2.5rem;
}

.header__nav-link {
  position: relative;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-white);
  padding: 0.5rem 0;
  transition: color var(--transition-medium);
}

.header__nav-link:hover,
.header__nav-link:focus {
  color: var(--color-blue);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-blue);
  transition: width var(--transition-medium);
}

.header__nav-link:hover::after,
.header__nav-link:focus::after {
  width: 100%;
}

/* Actions du header */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Cacher visuellement la checkbox tout en la gardant accessible */
.burger-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Style du burger */
.header__burger {
  display: none; /* Masqué sur desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2000;
}

.header__burger-line {
  width: 100%;
  height: 4px;
  background-color: var(--color-yellow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* État initial du menu mobile */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-dark);
  padding: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1500;
}

/* Activation du menu quand la checkbox est cochée */
.burger-toggle:checked ~ .mobile-nav {
  transform: translateY(0);
}

/* Animation des lignes du burger quand le menu est ouvert */
.burger-toggle:checked + .header__burger .header__burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-toggle:checked + .header__burger .header__burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle:checked + .header__burger .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Style du bouton de fermeture */
.mobile-nav__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-nav__close:hover,
.mobile-nav__close:focus {
  background-color: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}

.mobile-nav__logo-symbol {
  height: 2.5rem;
  width: auto;
}

/* Menu mobile */
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
}

.mobile-nav__link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
  color: var(--color-blue);
}

.mobile-nav__contact {
  margin-top: 1rem;
}

/* Affichage du burger uniquement sur mobile/tablette */
@media (max-width: 1023px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    display: none;
  }
}

/* Correctif pour le bouton de contact dans le header */
@media (max-width: 767px) {
  .header__actions .btn--primary {
    display: none;
  }
}
/* ==========================================================================
     2. Section Hero
     ========================================================================== */

.hero {
  background-color: var(--color-dark);
  padding: 9rem 0;
  color: var(--color-white);
  position: relative;
}

.hero__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: 3rem;
}

/* Images du hero */
.hero__images {
  flex: 1;
  position: relative;
}

.hero__images-row {
  display: flex;
  justify-content: space-evenly;
  gap: 15px;
  position: relative;
  height: 340px;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  width: 117px;
  height: 295px;
}

.hero__image-wrapper--2,
.hero__image-wrapper--4 {
  margin-top: 45px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero__image-wrapper:hover .hero__image {
  transform: scale(1.05);
}

/* Contenu du hero */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 600;
  /* On abaisse un peu la valeur max pour éviter la 3e ligne */
  font-size: 2.5rem;
  line-height: 1.1;
  max-width: 36rem; /* Peut être augmenté si besoin */
  color: var(--color-white);
}

.hero__services {
  display: flex;
  flex-direction: column;
}

/* Styles des services - renommés depuis hero__desk, hero__meeting, etc. */
.hero__service {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.5rem;
  transition: transform var(--transition-medium);
  cursor: pointer;
  padding: 0.25rem 0;
}

.hero__service--desk {
  color: var(--color-blue);
}

.hero__service--meeting {
  color: var(--color-orange);
}

.hero__service--event {
  color: var(--color-yellow);
}

.hero__service--box {
  color: var(--color-pink);
}

.hero__service:hover,
.hero__service:focus {
  transform: translateX(10px);
}

/* ==========================================================================
     3. Section Bureaux
     ========================================================================== */

.desk {
  background: linear-gradient(to bottom, var(--color-dark) 0%, var(--color-dark-65) 100%);
  color: var(--color-white);
  position: relative;
  display: flex;
  flex-direction: column;
}

.desk__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  align-items: flex-start;
}

.desk__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.desk__wrapper-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* Contenu */
.desk__content {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.desk__title-h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
}

.desk__title-decoration {
  margin-top: -0.5rem;
  display: flex;
  justify-content: flex-end;
}

.desk__title-decoration img {
  width: 65%;
  height: auto;
}

.desk__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Mise en évidence du texte - version générique */
.desk__highlight {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}

.desk__highlight--yellow {
  color: var(--color-yellow);
}

.desk__highlight--orange {
  color: var(--color-orange);
}

.desk__highlight--pink {
  color: var(--color-pink);
}

.desk__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.desk__more {
  font-size: 1.2rem;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.desk__more:hover,
.desk__more:focus {
  opacity: 1;
}

.desk__logo {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.desk__btn {
  margin-left: auto;
}

.desk__images {
  position: relative;
  height: 500px;
  display: block;
}

.desk__image-wrapper {
  position: absolute;
  border-radius: var(--radius-large);
}

.desk__image-wrapper--1 {
  width: 253px;
  height: 168px;
  top: -60px;
  right: 30px;
  z-index: 2;
}

.desk__image-wrapper--2 {
  width: 156px;
  height: 223px;
  top: 75px;
  right: 230px;
  z-index: 4;
}

.desk__image-wrapper--3 {
  width: 277px;
  height: 185px;
  top: 230px;
  right: 0px;
  z-index: 5;
}

.desk__image-wrapper--4 {
  width: 277px;
  height: 185px;
  top: 360px;
  right: 230px;
  z-index: 6;
}

/* ==========================================================================
     4. Section Réunions
     ========================================================================== */

.meeting {
  background: linear-gradient(to bottom, var(--color-dark-65) 0%, var(--color-dark-45) 100%);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
}

.meeting__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.meeting__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.meeting__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Images */
.meeting__images {
  flex: 1;
  max-width: 480px;
  position: relative;
  min-height: 450px;
}

.meeting__image-wrapper {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-medium);
}

.meeting__image-wrapper:hover,
.meeting__image-wrapper:focus-within {
  transform: translateY(-5px);
}

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

.meeting__image-wrapper--1 {
  width: 320px;
  height: 200px;
  position: relative;
  z-index: 2;
}

.meeting__image-wrapper--2 {
  position: absolute;
  top: 10px;
  left: 230px;
  width: 183px;
  height: 244px;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Vecteur décoratif */
.meeting__vector {
  position: absolute;
  top: -70px;
  left: 20px;
  width: 80%;
  height: auto;
  z-index: 1;
}

.meeting__vector img {
  width: 100%;
  height: auto;
}

/* Badge de prix */
.meeting__price-badge {
  position: absolute;
  bottom: 60px;
  left: 70px;
  width: 70px;
  height: 70px;
  background-color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: rotate(-12deg);
  box-shadow: 0 5px 15px rgba(227, 99, 72, 0.4);
  transition: transform var(--transition-medium);
}

.meeting__price-badge:hover,
.meeting__price-badge:focus {
  transform: rotate(-12deg) scale(1.1);
}

.meeting__price-link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Texte */
.meeting__text-content {
  flex: 1;
  max-width: 550px;
}

.meeting__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.meeting__highlight {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 2rem;
}

.meeting__highlight--orange {
  color: var(--color-orange);
}

.meeting__highlight--pink {
  color: var(--color-pink);
}

.meeting__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.meeting__more {
  font-size: 1.3rem;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.meeting__more:hover,
.meeting__more:focus {
  opacity: 1;
}

.meeting__logo {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.meeting__btn {
  margin-left: auto;
}

/* ==========================================================================
     5. Section Événements
     ========================================================================== */

.event {
  background: linear-gradient(to bottom, var(--color-dark-45) 0%, var(--color-dark-15) 100%);
  color: var(--color-white);
  position: relative;
}

.event__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
}

.event__content {
  flex: 1;
  position: relative;
}

.event__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}

.event__title-h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 3rem;
  position: relative;
}

.event__title-decoration {
  width: 100%;
  margin-top: -1rem;
  display: flex;
  justify-content: flex-end;
  transform: rotate(-2deg);
}

.event__title-decoration img {
  width: 60%;
  height: auto;
}

.event__time-blocks {
  position: relative;
}

.event__time-block {
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.event__highlight {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.event__highlight--orange {
  color: var(--color-orange);
}

.event__highlight--yellow {
  color: var(--color-yellow);
}

.event__highlight--pink {
  color: var(--color-pink);
}

.event__text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.event__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.event__more {
  font-size: 1.3rem;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.event__more:hover,
.event__more:focus {
  opacity: 1;
}

.event__logo {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

/* Badge capacité */
.event__capacity {
  display: flex;
  flex-direction: column;
  width: 30%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.event__capacity-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event__capacity-number {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event__capacity-svg {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  animation: pulse 2s infinite ease-in-out;
}

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

.event__btn {
  color: var(--color-white);
  width: 100%;
  margin-top: 1rem;
}

/* Images */
.event__images {
  flex: 1;
  position: relative;
  padding-top: 4rem;
}

.event__image-wrapper {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-medium);
}

.event__image-wrapper:hover,
.event__image-wrapper:focus-within {
  transform: translateY(-5px);
}

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

.event__image-wrapper--1 {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.event__image-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.event__image-wrapper--2,
.event__image-wrapper--3 {
  width: calc(50% - 10px);
  height: auto;
}

.event__image-wrapper--4 {
  width: 60%;
  height: 200px;
}

/* Décorations */
.event__decorations {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 40%;
}

.event__decoration {
  height: 250px;
  width: auto;
}

.event__decoration--orange {
  height: 10rem;
}

.event__decoration--pink {
  height: 15rem;
}

.event__decoration--yellow {
  height: 20rem;
}

/* ==========================================================================
     6. Section Tarifs
     ========================================================================== */

.price {
  background: linear-gradient(to bottom, var(--color-dark-15) 0%, var(--color-transparent) 100%);
  color: var(--color-white);
  position: relative;
  padding: 1rem 0;
}

.price__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.price__header {
  text-align: center;
  margin-bottom: 1rem;
}

.price__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  position: relative;
  display: inline-block;
}

.price__intro {
  font-size: 1.2rem;
  max-width: 859px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.price__intro p {
  margin-bottom: 1rem;
  text-align: center;
}

.price__intro-btn {
  margin-top: 1rem;
}

.price__cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.price__card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border: 2px solid;
  border-radius: var(--radius-small);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.price__card:hover,
.price__card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price__card--yellow {
  border-color: var(--color-yellow);
}

.price__card--blue {
  border-color: var(--color-pink);
  transform: rotate(-2.5deg);
}

.price__card--blue:hover,
.price__card--blue:focus-within {
  transform: rotate(-2.5deg) translateY(-10px);
}

.price__card--orange {
  border-color: var(--color-orange);
  transform: rotate(2.5deg);
}

.price__card--orange:hover,
.price__card--orange:focus-within {
  transform: rotate(2.5deg) translateY(-10px);
}

.price__card-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: var(--color-blue);
}

.price__card-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}

.price__card-info {
  font-size: 0.9rem;
  text-align: center;
}

.price__card-amount {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.5rem;
  margin: 1.5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.price__card-hthc {
  font-family: var(--font-secondary);
  font-size: 0.7rem !important;
}

.price__card-description {
  flex-grow: 1;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

.price__card-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Animation au survol pour les cartes */
.price__card--yellow:hover,
.price__card--yellow:focus-within {
  box-shadow: 0 15px 30px rgba(228, 178, 76, 0.3);
}

.price__card--blue:hover,
.price__card--blue:focus-within {
  box-shadow: 0 15px 30px rgba(246, 157, 242, 0.3);
}

.price__card--orange:hover,
.price__card--orange:focus-within {
  box-shadow: 0 15px 30px rgba(227, 99, 72, 0.3);
}

/* ==========================================================================
     7. Section Témoignages
     ========================================================================== */

.testimonials {
  background: var(--color-transparent);
  padding: 4rem 0;
  color: var(--color-white);
  position: relative;
}

.testimonials__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.testimonials__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial {
  background-color: var(--color-dark-30);
  border-radius: var(--radius-large);
  padding: 2rem;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.testimonial:hover,
.testimonial:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial__rating {
  margin-bottom: 1.5rem;
  display: flex;
  font-size: 1.3rem;
  color: var(--color-white);
}

.testimonial__star {
  opacity: 0.3;
}

.testimonial__star--filled {
  opacity: 1;
  color: var(--color-yellow);
}

.testimonial__text {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  font-weight: 400;
  font-style: italic;
  position: relative;
}

.testimonial__text::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  opacity: 0.2;
  font-family: serif;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial__social {
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.testimonial__social:hover,
.testimonial__social:focus {
  transform: translateY(-3px);
}

.testimonial__name {
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial__job {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ==========================================================================
     8. Section Contact
     ========================================================================== */

.contact {
  background-color: var(--color-blue);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.contact__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.contact__header {
  margin-bottom: 3rem;
}

.contact__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.contact__title-decoration {
  width: 240px;
  height: auto;
  margin-top: -10px;
}

.contact__title-decoration img {
  width: 100%;
  height: auto;
}

.contact__content {
  display: flex;
  gap: 3rem;
  position: relative;
}

/* Formulaire de contact */
.contact__form-container {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__form-group {
  position: relative;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: transparent;
  border: 2px solid;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all var(--transition-medium);
}

.contact__textarea {
  border-radius: 25px;
  min-height: 150px;
  resize: vertical;
  padding: 1.5rem;
}

/* Différentes couleurs de bordure */
.contact__input--yellow {
  border-color: var(--color-yellow);
  box-shadow: 0 4px 10px rgba(228, 178, 76, 0.2);
}

.contact__input--blue {
  border-color: var(--color-blue);
  box-shadow: 0 4px 10px rgba(0, 113, 188, 0.2);
}

.contact__input--orange {
  border-color: var(--color-orange);
  box-shadow: 0 4px 10px rgba(227, 99, 72, 0.2);
}

.contact__input--pink,
.contact__textarea {
  border-color: var(--color-pink);
  box-shadow: 0 4px 10px rgba(243, 184, 209, 0.2);
}

/* Focus states - Fond blanc et texte foncé */
.contact__input:focus,
.contact__textarea:focus {
  background-color: var(--color-white);
  color: var(--color-dark);
  outline: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact__input:focus::placeholder,
.contact__textarea:focus::placeholder {
  color: rgba(30, 30, 30, 0.5);
}

/* Bouton d'envoi */
.contact__form-submit {
  display: flex;
  justify-content: flex-start;
  margin-top: 1rem;
}

.contact__btn {
  background-color: var(--color-pink);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.8rem 2.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-medium);
  letter-spacing: 1px;
}

.contact__btn:hover,
.contact__btn:focus {
  background-color: #ff9ecb;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 184, 209, 0.3);
}

/* Informations de contact */
.contact__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.contact__image {
  width: 100%;
  max-width: 350px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.contact__phone-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.contact__phone-icon img {
  width: 100%;
  height: auto;
}

.contact__phone-number {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-medium);
}

.contact__phone-number:hover,
.contact__phone-number:focus {
  color: var(--color-yellow);
}

/* Vecteur décoratif */
.contact__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.contact__vector {
  position: absolute;
  width: 80%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  opacity: 0.6;
}

/* ==========================================================================
     9. Section Team
     ========================================================================== */

.team {
  background-color: var(--color-blue);
  padding: 1rem 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.team__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.team__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
}

.team__members {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3rem;
  margin-bottom: 5rem;
}

.team__member {
  flex: 0 1 300px;
  position: relative;
}

.team__photo-wrapper {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: transform var(--transition-medium);
}

.team__photo-wrapper:hover {
  transform: translateY(-10px);
}

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

.team__info {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background-color: rgba(30, 30, 30, 0.8);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform var(--transition-medium);
}

.team__member:hover .team__info {
  transform: translateY(-10px);
}

.team__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.team__name--orange {
  color: var(--color-orange);
}

.team__name--yellow {
  color: var(--color-yellow);
}

.team__name--pink {
  color: var(--color-pink);
}

.team__position {
  font-family: var(--font-secondary);
  font-size: 1rem;
  opacity: 0.9;
}

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

.team__tagline {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.team__text {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* ==========================================================================
     10. Footer
     ========================================================================== */

.footer {
  background: linear-gradient(to bottom, var(--color-blue) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.footer__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}

/* Logo en filigrane */
.footer__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.footer__background-logo {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 400px;
  height: auto;
  opacity: 0.07;
}

/* Contenu principal */
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Navigation */
.footer__nav {
  flex: 0 0 auto;
  min-width: 200px;
}

.footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__menu-link {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-white);
  transition: color var(--transition-medium);
}

.footer__menu-link:hover,
.footer__menu-link:focus {
  color: var(--color-yellow);
}

/* Informations de contact */
.footer__contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__phone,
.footer__email {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  transition: color var(--transition-medium);
  display: inline-block;
}

.footer__phone:hover,
.footer__phone:focus,
.footer__email:hover,
.footer__email:focus {
  color: var(--color-yellow);
}

.footer__address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Réseaux sociaux */
.footer__social {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-medium);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__social-link:hover,
.footer__social-link:focus {
  transform: translateY(-3px);
}

.footer__social-link--linkedin:hover,
.footer__social-link--linkedin:focus {
  background-color: #0077b5;
}

.footer__social-link--instagram:hover,
.footer__social-link--instagram:focus {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.footer__social-link--facebook:hover,
.footer__social-link--facebook:focus {
  background-color: #3b5998;
}

/* Séparateur */
.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}

/* Mentions légales et copyright */
.footer__legal {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
}

.footer__legal .footer__container {
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer__copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity var(--transition-medium);
}

.footer__link:hover,
.footer__link:focus {
  opacity: 1;
  color: var(--color-yellow);
}

.footer__cookie-notice {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 1rem;
}

/* Particules décoratives */
.decorative-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.decorative-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 15s infinite ease-in-out;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, 15px) rotate(90deg);
  }
  50% {
    transform: translate(0, 30px) rotate(180deg);
  }
  75% {
    transform: translate(-15px, 15px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Style pour le filigrane de section */
.section-watermark {
  position: absolute;
  top: 50%; /* Centre verticalement */
  left: 50%; /* Centre horizontalement */
  transform: translate(-50%, -50%); /* Ajustement pour un vrai centrage */
  font-size: 6rem; /* Taille de police grande */
  font-weight: bold;
  opacity: 0.01; /* Transparence pour l'effet filigrane */
  color: var(--color-blue);
  pointer-events: none; /* Ne pas interférer avec les interactions sur la section */
  z-index: -1; /* Placer derrière le contenu de la section */
  text-align: center;
  width: 100%;
  max-width: 80%; /* Limiter la largeur pour les grands écrans */
}
/* Styles spécifiques par section pour les filigranes */
/* Styles spécifiques pour chaque type de section si nécessaire */
.section-watermark--desk {
  transform: translate(-50%, -50%) rotate(-5deg); /* Centre + rotation */
}

.section-watermark--meeting {
  transform: translate(-50%, -50%) rotate(5deg);
  color: var(--color-pink);
}

.section-watermark--event {
  transform: translate(-50%, -50%) rotate(-5deg);
  color: var(--color-orange);
}

/* Media queries pour désactiver certains éléments sur mobile */
@media (max-width: 767px) {
  .decorative-particles,
  .section-watermark {
    display: none !important;
  }

  .wave-decoration {
    height: 60px;
  }
}

@media (min-width: 768px) {
  .section-watermark {
    display: block !important; /* Forcer l'affichage sur desktop */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: bold;
    opacity: 0.1;
    color: var(--color-blue);
    pointer-events: none;
    z-index: -1;
    text-align: center;
    width: 100%;
    max-width: 80%;
  }
}

/* NOUVELLE SOLUTION: Effet de brillance avec élément dédié */
.desk__image-wrapper {
  /* Garder position: absolute seulement pour desk qui l'utilisait déjà */
  position: absolute;
  overflow: hidden;
}

.meeting__image-wrapper,
.event__image-wrapper {
  /* Ne pas modifier leur positionnement, juste ajouter overflow: hidden */
  position: relative;
  overflow: hidden;
}

/* Animation des images au survol (effet de zoom intact) */
.desk__image,
.meeting__image,
.event__image {
  transition: transform 0.7s ease;
}

.desk__image-wrapper:hover .desk__image,
.meeting__image-wrapper:hover .meeting__image,
.event__image-wrapper:hover .event__image {
  transform: scale(1.08);
}

/* Animation de surlignement pour les mises en évidence */
.desk__highlight,
.meeting__highlight,
.event__highlight {
  position: relative;
  display: inline;
}

.desk__highlight::after,
.meeting__highlight::after,
.event__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: currentColor;
  opacity: 0.1;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.desk__highlight.animate-visible::after,
.meeting__highlight.animate-visible::after,
.event__highlight.animate-visible::after,
.desk:hover .desk__highlight::after,
.meeting:hover .meeting__highlight::after,
.event:hover .event__highlight::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* AJout de la map en derniere minute  */

/* --------------------------------------------------- */
/* Section MAP */
/* --------------------------------------------------- */
.home-map {
  background: var(--color-blue);
  padding: 5rem 0;
  color: var(--color-white);
}

.home-map__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.home-map__header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-map__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.home-map__subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.home-map__content {
  display: flex;
  gap: 3rem;
}

.home-map__wrapper {
  flex: 2;
  height: 400px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-map__iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.home-map__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: rgba(30, 30, 30, 0.3);
  border-radius: var(--radius-large);
  justify-content: center;
}

.home-map__address,
.home-map__contact,
.home-map__transport {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home-map__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-map__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-white);
}

.home-map__text {
  flex: 1;
}

.home-map__label {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-yellow);
}

.home-map__details {
  font-size: 1rem;
  line-height: 1.5;
}

.home-map__details a {
  color: var(--color-white);
  transition: color 0.3s ease;
}

.home-map__details a:hover {
  color: var(--color-yellow);
}

/* --------------------------------------------------- */
/* MEDIA QUERIES POUR LA SECTION MAP */
/* --------------------------------------------------- */

/* TABLETTE (768px à 991px) */
@media (max-width: 991px) {
  .home-map__content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .home-map__wrapper,
  .home-map__info {
    max-width: 100%;
  }

  .home-map__title {
    font-size: 2.7rem;
  }

  .home-map__wrapper {
    height: 300px;
  }
}

/* MOBILE (360px à 767px) */
@media (max-width: 767px) {
  .home-map__title {
    font-size: 2.2rem;
  }

  .home-map__wrapper {
    height: 250px;
  }

  .home-map__info {
    padding: 1.5rem;
  }

  .home-map__icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .home-map__icon svg {
    width: 15px;
    height: 15px;
  }

  .home-map__label {
    font-size: 1.1rem;
  }
}

/* TRÈS PETIT MOBILE (moins de 360px) */
@media (max-width: 359px) {
  .home-map__title {
    font-size: 1.8rem;
  }

  .home-map__wrapper {
    height: 200px;
  }
}
