/* PAGE CONTACT */

/* Hero section */
.contact__hero {
  position: relative;
  margin-top: 70px;
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  background: #010811;
}

.contact__hero .hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  filter: brightness(0.5) contrast(0.95);
}

.contact__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,8,17,0.4) 0%, rgba(1,8,17,0.8) 100%);
  z-index: 1;
}

.contact__hero .hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  z-index: 2;
  width: 90%;
}

/* Contact content section */
.contact__content {
  background: #ffffff;
  padding: 32px 16px;
}

.contact__content .container {
  max-width: 980px;
  margin: 0 auto;
}

.contact__heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #010811;
}

.contact__heading:nth-of-type(2) {
  margin-top: 24px;
}

/* Contact grid layout */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Contact infos section */
.contact__infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Contact items */
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact__item h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #010811;
}

.contact__item p {
  font-size: 13px;
  margin: 0;
  color: #666;
}

/* Socials */
.contact__socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.contact__socials a img {
  width: 32px;
  height: 32px;
}

/* Form card */
.contact__formcard {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(1,8,17,0.08);
}

.form__contact h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #010811;
}

.form__contact label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 8px;
  color: #010811;
}

.form__contact input,
.form__contact textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  box-sizing: border-box;
}

.form__contact input::placeholder,
.form__contact textarea::placeholder {
  color: #bbb;
}

.form__contact textarea {
  resize: vertical;
  min-height: 100px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--green {
  background: #8ab752;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 20px;
  margin-top: 16px;
  width: 100%;
  font-weight: 600;
}

.btn--green:hover {
  background: #7a9844;
}

/* Responsive */
@media (min-width: 768px) {
  .contact__hero {
    min-height: 360px;
  }

  .contact__hero .hero__title {
    font-size: 36px;
  }

  .contact__content {
    padding: 48px;
  }

  .contact__grid {
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 48px;
  }

  .contact__formcard {
    position: sticky;
    top: 100px;
  }
}

