.contact-section-header {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url(../images/contact-header-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
}
h1 {
  font-size: 1em;
}
.contact-section-link-container {
  background-color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transition: 0.3s ease;
}
.contact-section-link-container:hover {
  background-color: var(--accent-color);
}
.contact-section-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  justify-content: center;
  font-family: var(--primary-text);
  color: rgb(255, 255, 255);
}
.contact-section-links h2 {
  text-transform: uppercase;
}
.contact-section-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section .contact-section-links img {
  width: 20px;
}
.contact-section-form {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--primary-text);
  align-items: flex-start;
  min-height: 100%;
  max-height: 100%;
  width: 100%;
}
.contact-section-form h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-section-form h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  line-height: 1.1;
}
.contact-section-form p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.contact-section-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-section-form input,
.contact-section-form textarea {
  border: none;
  border-bottom: 2px solid var(--accent-color);
  border-radius: 0;
  padding: 12px 0;
  font-size: 1rem;
  font-family: var(--primary-text);
  background: transparent;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}
.contact-section-form input:focus,
.contact-section-form textarea:focus {
  border-bottom: 2px solid #222;
}
.contact-section-form textarea {
  min-height: 80px;
  resize: vertical;
}
.contact-section-form button {
  margin-top: 10px;
  padding: 12px 32px;
  background: #222;
  color: #fff;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: background 0.2s;
}
.contact-section-form button:hover {
  background: var(--accent-color);
}
.contact-section-wrapper {
  background-color: rgb(33, 33, 33);
  padding: 2rem 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 20px;
  padding: 2rem;
}
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin: 0 auto;
  width: 100%;
}
.contact-section-info {
  padding: 48px 40px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--primary-text);
}
.contact-section-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-section-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  line-height: 1.1;
}
.contact-section-info p {
  color: #cecece;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  font-size: 1rem;
  margin-top: 18px;
}
.contact-details strong {
  color: var(--accent-color);
  font-size: 1.05rem;
  font-weight: 700;
}
.contact-details a.social-link {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.contact-details a svg {
  width: 12px;
  height: 12px;
  fill: white;
}
.contact-map-container {
  margin: 0 auto;
  margin-bottom: 2rem;
  height: 300px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.417);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .contact-section-wrapper {
    padding: 0;
  }
  .contact-section-form {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .contact-map-container {
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
  }
  iframe {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.304);
    height: 100%;
  }
  .contact-section {
    padding-top: 100px;
    flex-direction: column;
    gap: 20px;
  }

  .contact-section-form {
    width: 100%;
  }
  .contact-section-form button {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-map-container {
    height: 220px;
  }
  .contact-section-info,
  .contact-section-form {
    padding: 32px 16px;
  }
}
