/* ===== CONTACT PAGE ===== */
.contact-page { 
  padding-bottom: 0; 
}

.contact-hero {
  background: #0032FF;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 64px;
}

.contact-logo-bg {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 85%;
  opacity: 0.15;
  pointer-events: none;
}

.contact-logo-bg img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.contact-social {
  display: flex;
  gap: 24px;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-social-link {
  display: block;
  transition: transform 0.2s;
}

.contact-social-link:hover { 
  transform: scale(1.1); 
}

.contact-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  color: #fff;
  line-height: 0.9;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

/* INFO */
.contact-infos {
  padding: 64px;
  border-bottom: 1px solid #eee;
}

.contact-infos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.contact-info-block {
  border-left: 2px solid #0032FF;
  padding-left: 24px;
}

.contact-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #0032FF;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-info-link {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-link:hover { 
  color: #0032FF; 
}

.contact-info-text {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* FORM */
.contact-form-section {
  padding: 64px;
  background: #f5f5f5;
}

.contact-form-wrap {
  max-width: 800px;
}

.contact-form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #0032FF;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #0032FF;
  text-transform: uppercase;
}

.contact-input {
  border: 1px solid #0032FF;
  background: #fff;
  padding: 14px 16px;
  font-size: 12px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  color: #000;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}

.contact-input:focus { 
  border-color: #000; 
}

.contact-textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-submit {
  background: #0032FF;
  color: #fff;
  border: none;
  padding: 18px 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.contact-submit:hover { 
  opacity: 0.85; 
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .contact-hero {
    padding: 48px 48px;
  }

  .contact-title {
    font-size: 6rem;
  }

  .contact-social {
    right: 48px;
  }

  .contact-infos {
    padding: 48px;
  }

  .contact-infos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact-form {
    padding: 48px;
  }

  .contact-form-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: auto;
    padding: 48px 24px;
  }

  .contact-title {
    font-size: 2.5rem;
    white-space: normal;
  }

  .contact-tagline {
    margin-bottom: 12px;
  }

  .contact-logo-bg {
    display: none;
  }

  .contact-social {
    position: static;
    transform: none;
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
  }

  .contact-social-link {
    width: 40px;
    height: 40px;
  }

  .contact-social-link svg {
    width: 100%;
    height: 100%;
  }

  .contact-infos {
    padding: 32px 24px;
  }

  .contact-infos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-block {
    padding-left: 16px;
  }

  .contact-info-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .contact-info-link {
    font-size: 11px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .contact-input,
  .contact-textarea {
    padding: 12px;
    font-size: 14px;
  }

  .contact-form-row {
    gap: 12px;
  }

  .contact-submit {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 32px 16px;
  }

  .contact-title {
    font-size: 2rem;
    line-height: 1;
  }

  .contact-infos {
    padding: 24px 16px;
  }

  .contact-infos-grid {
    gap: 16px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .contact-form-title {
    font-size: 1.2rem;
  }

  .contact-input,
  .contact-textarea {
    padding: 10px;
    font-size: 13px;
  }

  .contact-submit {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
