.contactBlock {
  background-color: #000;
}

.contactBlock__container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 185px;
  padding: 185px 0 70px 0;
  border-bottom: 1px solid #fff;
}

/* Left Column Styles */
.contactBlock__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contactBlock__header {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
}

.contactBlock__subheader {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.contactBlock__text {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.contactBlock__info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

/* Contact Info Styles */
.contactBlock__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactBlock__info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.contactBlock__info-item:hover {
  transform: translateY(-2px);
}

.contactBlock__info-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contactBlock__info-text {
  color: #fff;
  text-align: justify;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Social Media Styles */
.contactBlock__social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contactBlock__social-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.contactBlock__social-item:hover {
  opacity: 0.7;
}

.contactBlock__social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contactBlock__social-text {
  color: #fff;
  text-align: justify;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* Right Column Styles */
.contactBlock__right {
}

.contactBlock__form-header {
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 30px 0;
}

.contactBlock__form {
  width: 75%;
}

/* Contact Form 7 Customization */
.contactBlock__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactBlock__form .wpcf7-form p {
  margin: 0;
}

.contactBlock__form .wpcf7-form .halfDiv > p {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.contactBlock__form .wpcf7-form label {
  width: 100%;
  color: #000;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.contactBlock__form .wpcf7-form input[type="text"],
.contactBlock__form .wpcf7-form input[type="email"],
.contactBlock__form .wpcf7-form input[type="tel"],
.contactBlock__form .wpcf7-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 5px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.contactBlock__form .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contactBlock__form .wpcf7-submit {
  border-radius: 30px;
  border: 0.5px solid #000;
  background: #fff;
  color: #000;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  text-align: end;
}

.contactBlock__form .wpcf7-submit:hover {
  background: #000;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contactBlock {
    padding: 80px 0;
  }

  .contactBlock__container {
    width: 95%;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0 50px 0;
  }

  .contactBlock__header {
    font-size: 42px;
    line-height: 1.1;
  }

  .contactBlock__subheader {
    font-size: 20px;
    line-height: 1.3;
  }

  .contactBlock__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .contactBlock__info-container {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px;
  }

  .contactBlock__info-item {
    gap: 12px;
  }

  .contactBlock__info-text {
    font-size: 16px;
  }

  .contactBlock__social-item {
    gap: 10px;
  }

  .contactBlock__social-text {
    font-size: 16px;
  }

  .contactBlock__form-header {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
  }

  .contactBlock__form {
    width: 100%;
  }

  .contactBlock__form .wpcf7-form {
    gap: 18px;
  }

  .contactBlock__form .wpcf7-form .halfDiv > p {
    gap: 12px;
  }

  .contactBlock__form .wpcf7-form input[type="text"],
  .contactBlock__form .wpcf7-form input[type="email"],
  .contactBlock__form .wpcf7-form input[type="tel"],
  .contactBlock__form .wpcf7-form textarea {
    padding: 14px;
    font-size: 15px;
  }

  .contactBlock__form .wpcf7-submit {
    font-size: 16px;
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .contactBlock {
    padding: 40px 0;
  }

  .contactBlock__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contactBlock__info-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contactBlock__header {
    font-size: 32px;
  }

  .contactBlock__subheader {
    font-size: 20px;
  }

  .contactBlock__right {
    padding: 30px;
  }

  .contactBlock__form-header {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contactBlock__form {
    width: 100%;
  }

  .contactBlock__form .wpcf7-form .halfDiv > p {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .contactBlock {
    padding: 30px 0;
  }

  .contactBlock__container {
    width: 95%;
  }

  .contactBlock__header {
    font-size: 28px;
  }

  .contactBlock__subheader {
    font-size: 18px;
  }

  .contactBlock__text {
    font-size: 15px;
  }

  .contactBlock__right {
    padding: 20px;
  }

  .contactBlock__form-header {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .contactBlock__form .wpcf7-form input[type="text"],
  .contactBlock__form .wpcf7-form input[type="email"],
  .contactBlock__form .wpcf7-form input[type="tel"],
  .contactBlock__form .wpcf7-form textarea {
    padding: 10px;
    font-size: 15px;
  }

  .contactBlock__form .wpcf7-submit {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    text-align: center;
  }
}
