.section-dots {
  background-image: url('../images/iStock-1193068843.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 4em;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
  z-index: 1; /* Inférieur au header (z-index: 100) */
}

.section-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--orange-primary);
    opacity: 0.7;
    z-index: 1;
}

.contact-us-text {
  color: currentColor;
  text-decoration: none;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.new-title-section {
    margin: 0;
}

.contact-us-text .new-hero-title {
    font-family: 'Arc_Typ', 'RMNeue-Regular', sans-serif;
    font-size: clamp(5rem, 10vw, 12rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
}

.contact-us-text .new-hero-title .line {
    display: block;
}

.about-link-container {
    display: flex;
    align-items: center;
    gap: 1em;
    text-decoration: none;
    color: inherit;
}

.about-link-container .about-link {
    font-family: 'RMMono', monospace;
    font-size: 0.8rem;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
}

.about-link-container .about-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transform-origin: left;
}

.about-link-container:hover .about-link::after {
    animation: underline-anim 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.about-link-container .about-button {
    background: transparent;
    border: 1px dotted #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.about-link-container .about-button .arrow-wrapper {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    position: absolute;
    width: 200%;
    left: 0;
    transform: translateX(-50%);
}

.about-link-container:hover .about-button .arrow-wrapper {
    transform: translateX(0);
}

.about-link-container .about-button .arrow-svg {
    width: 50%;
    box-sizing: border-box;
    padding: 0 16px;
}

@keyframes underline-anim {
    0% {
        transform: scaleX(1);
        transform-origin: right;
    }
    49% {
        transform: scaleX(0);
        transform-origin: right;
    }
    50% {
        transform: scaleX(0);
        transform-origin: left;
    }
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
    .section-dots {
        padding: 2em 1.25em;
        min-height: 80vh;
        height: auto;
        margin-top: -20px;
    }

    .contact-us-text {
        gap: 1.5rem;
    }

    .contact-us-text .new-hero-title {
        font-size: clamp(2.6rem, 11vw, 5.5rem);
    }
}

