.contact-main{
  position: relative;
  overflow: hidden;
}

.contact-section{
  background: #18181b;
  padding: 0 1.25rem 0;
}

.contact-section__container{
  margin: 0 auto;
}

.contact-content{
  position: relative;
  overflow: hidden;
  border-left: 1px solid #3f3f46;
  border-right: 1px solid #3f3f46;
  padding: 1.5rem;
}

.contact-content > .projects-showcase-pattern{
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  /* Même quadrillage que .shop-showcase-pattern (ex-style.css global) */
  background-image: linear-gradient(180deg, rgba(24, 24, 27, 0) 0, #18181b),
    linear-gradient(55deg, hsla(0, 0%, 100%, 0) 20%, hsla(0, 0%, 100%, 0.025) 35%, hsla(0, 0%, 100%, 0.01) 50%,
    hsla(0, 0%, 100%, 0.025) 70%, hsla(0, 0%, 100%, 0) 80%),
    linear-gradient(90deg, rgba(63, 63, 70, 0) 0, rgba(63, 63, 70, 0) calc(99% - 1px), #3f3f46 calc(99% - 1px), #3f3f46),
    linear-gradient(180deg, rgba(63, 63, 70, 0) 0, rgba(63, 63, 70, 0) calc(99% - 1px), #3f3f46 calc(99% - 1px), #3f3f46);
  background-size: 100%, 100%, 16px 16px, 16px 16px;
}

.contact-content > *:not(.projects-showcase-pattern){
  position: relative;
  z-index: 1;
}

.contact-section__header{
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.contact-section__dot{
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #dcff69;
}

.contact-section__title{
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color:white;
}

.contact-section__intro{
  margin: 1rem 0 0;
  max-width: 44rem;
  color: #d4d4d8;
  line-height: 1.7;
}

.contact-layout{
  margin-top: 1.5rem;
}

.contact-form{
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: auto;
}

.contact-form__form{
  border: 1px solid #3f3f46;
  border-radius: 0.625rem;
  background: #27272a;
  padding: 1rem;
}

.contact-form__row{
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-field{
  display: grid;
  gap: 0.375rem;
}

.contact-field__label{
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.contact-field input,
.contact-field textarea,
.contact-field select{
  width: 100%;
  border: 1px solid #52525b;
  border-radius: 0.25rem;
  background: #18181b;
  color: #f4f4f5;
  padding: 0.625rem 0.75rem;
}

.contact-field textarea{
  resize: vertical;
  min-height: 9rem;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus{
  border-color: #04a9ef;
  box-shadow: 0 0 0 1px #04a9ef;
}

.contact-consent{
  margin-top: 0.125rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #d4d4d8;
  font-size: 0.88rem;
}

.contact-consent input{
  margin-top: 0.125rem;
}

.contact-form__submit{
  margin-top: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: none;
  border-radius: 0.25rem;
  padding: 0.625rem 1rem;
  background: #dcff69;
  color: #18181b;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form__submit:hover{
  background: #ecff9e;
}

.contact-side{
  border: 1px solid #3f3f46;
  border-radius: 0.625rem;
  background: #27272a;
  padding: 1rem;
}

.contact-side__title{
  margin: 0;
  font-size: 1.125rem;
}

.contact-side__text{
  margin: 0.75rem 0 0;
  color: #d4d4d8;
  line-height: 1.6;
}

.contact-side__link{
  margin-top: 0.75rem;
  display: inline-flex;
  color: #04a9ef;
  text-decoration: none;
  font-weight: 600;
}

.contact-side__link:hover{
  color: #74d7ff;
}

@media (min-width: 768px){
  .contact-section{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .contact-section__container{
    padding: 0;
  }

  .contact-content{
    padding: 2rem;
  }

  .contact-form__row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .contact-section{
    padding: 0 2.5rem;
  }
  .contact-layout{
    
  }
}
