/* ------------------------------------------------------------------------
     Section 1 : À propos
  --------------------------------------------------------------------------- */
  
  .about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #F6F8FA;
    color: #F6F8FA;
    position: relative;
    overflow: hidden;
  }
  
  .about-hero__container {
    background: linear-gradient(120deg, #162139 0%, #5D5CA5 50%, #BDDCB6 100%);
    background-size: 400% 400%;
    animation: gradient-move 15s ease-in-out infinite;
    height: 100vh;
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 5rem 5rem;
  }
  
  .about-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 4rem 6rem;
  }
  
  .about-hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
  }
  
  .about-hero__subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .about-hero__tagline {
    font-size: 1.25rem;
    font-weight: 400;
    text-align: left;
  }
  
  .about-hero__img {
    position: absolute;
    width: 120px;
    height: auto;
    z-index: 2;
    pointer-events: none;
  }
  
  .about-hero__img--top-right {
    bottom: -25%;
    left: 75%;
    animation-delay: 0s;
  }
  
  .about-hero__img--bottom-left {
    bottom: -20%;
    left: 70%;
    animation-delay: 2s;
  }
  
  .about-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    opacity: 1;
    z-index: 2;
  }
  
  .scroll-label {
    color: #F6F8FA;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.2rem;
  }
  
  .scroll-arrow {
    display: block;
    animation: scroll-bounce 1.2s infinite;
    margin-bottom: 1rem;
  }
  
  /* Animations */
  @keyframes gradient-move {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 50% 50%; }
    50%  { background-position: 100% 50%; }
    75%  { background-position: 50% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  @keyframes scroll-bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(8px); }
    100% { transform: translateY(0); }
  }
  
  /* Responsive --------------------------*/
  @media (max-width: 480px) {
  
    .about-hero__container {
      height: 100vh;
      border-radius: 0 0 2rem 2rem;
    }
  
    .about-hero__content {
      padding: 2rem 1.5rem;
      align-items: flex-start;
    }
  
    .about-hero__title {
      font-size: 2.25rem;
      line-height: 1.2;
      text-align: left;
    }
  
    .about-hero__subtitle {
      font-size: 1.125rem;
      line-height: 1.5;
      text-align: left;
    }
  
    .about-hero__tagline {
      font-size: 1rem;
      line-height: 1.4;
      text-align: left;
    }
  
    .about-hero__img {
      width: 80px;
    }
  
    .about-hero__img--top-right {
      right: 10%;
      bottom: -15%;
    }
  
    .about-hero__img--bottom-left {
      left: 10%;
      top: -10%;
    }
  
    .about-hero__scroll-indicator {
      bottom: 1.25rem;
      font-size: 0.75rem;
      gap: 0.2rem;
    }
  
    .scroll-arrow {
      margin-bottom: 10vh;
    }
  
    .scroll-arrow svg {
      width: 28px;
      height: 28px;
    }
  }
  
  /*---------------------------------Responsive.*/

  /* ========================================================================
                                PAGE : CONTACT
--------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------
   Section 2 : Rendez-vous
--------------------------------------------------------------------------- */

/* ----- Toggle Switch Workly ----- */
/* --- Wrapper global --- */
.contact-switch-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-switch-label {
    font-family: 'TT Commons', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #162139;
    margin-bottom: 0.5rem;
  }
  
  /* --- Conteneur du switch --- */
  .contact-switch {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 340px;
    background: #eaf3f7;
    border-radius: 32px;
    padding: 4px;
    margin: 0 auto 2rem;
    box-shadow: 0 2px 12px rgba(22, 33, 57, 0.06);
    overflow: hidden;
  }
  
  /* --- Fond animé --- */
  .contact-switch .switch-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 8px);
    height: calc(100% - 8px);
    border-radius: 28px;
    z-index: 1;
    transition: left 0.35s ease, background 0.35s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    background: #6C63FF;
  }
  .contact-switch.candidat-active .switch-bg {
    left: calc(50% + 4px);
    background: #68C6DF;
    opacity: 1;
    pointer-events: auto;
  }
  .contact-switch.entreprise-active .switch-bg {
    left: 4px;
    background: #6C63FF;
    opacity: 1;
    pointer-events: auto;
  }
  
  /* --- Boutons --- */
  .contact-switch .switch-btn {
    flex: 1 1 0;
    background: none;
    border: none;
    outline: none;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 0;
    border-radius: 28px;
    cursor: pointer;
    transition: color 0.25s, background 0.35s, box-shadow 0.35s, transform 0.18s;
  }
  
  /* Couleurs inactives */
  .contact-switch .switch-btn[data-type="entreprise"] {
    color: #6C65B9;
  }
  .contact-switch .switch-btn[data-type="candidat"] {
    color: #68C6DF;
  }
  
  /* Actif = texte blanc + effet */
  .contact-switch .switch-btn.active {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 16px 0 rgba(104,198,223,0.10);
  }
  
  /* Hover uniquement sur inactif */
  .contact-switch .switch-btn:not(.active):hover {
    opacity: 0.8;
    transform: scale(1.03);
  }
  
  
  /* --- Panels masqués par défaut --- */
  .panel-candidat,
  .panel-entreprise {
    display: none !important;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .panel-candidat.active,
  .panel-entreprise.active {
    display: block !important;
    opacity: 1;
  }
  
  /* --- Téléchargement CV formulaire --- */
  #form-field-fichier,
  #form-field-offreCV {
    position: relative;
    width: 100%;
    padding: 2.5rem 1rem;
    border: 2px dashed #162139;
    border-radius: 16px;
    background: #F6F8FA;
    font-size: 1rem;
    color: transparent;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
  }
  
  #form-field-fichier::file-selector-button,
  #form-field-offreCV::file-selector-button,
  #form-field-fichier::-webkit-file-upload-button,
  #form-field-offreCV::-webkit-file-upload-button {
    display: none;
    visibility: hidden;
  }
  
  #form-field-fichier::before,
  #form-field-offreCV::before {
    content: attr(data-file);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #68C6DF;
    font-weight: 600;
    font-size: 1rem;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .offre-feedback {
    font-size: 1.1rem;
    text-align: center;
    padding: 0.5rem 1rem;
  }
  
  #offreEnvoyer.loading {
    background-color: #ccc;
    pointer-events: none;
    opacity: 0.6;
  }
  
  @media (max-width: 480px) {
    #form-field-fichier,
    #form-field-offreCV {
      padding: 1.5rem 0.5rem;
      font-size: 1rem;
      border-radius: 12px;
      min-height: 80px;
      background: #F6F8FA;
      text-align: center;
      word-break: break-word;
    }
  
    #form-field-fichier::before,
    #form-field-offreCV::before {
      font-size: 1rem;
      padding: 0 0.5rem;
      text-align: center;
      white-space: normal;
    }
  }
  
  .slider-help {
    display: none;
  }
  
  @media (max-width: 480px) {
    .slider-help {
      display: block;
      text-align: center;
      color: #fff;
      margin: 0 0 2rem 0;
      font-size: 0.95rem;
      width: 100%;
      max-width: 340px;
    }
  }