.contact-hero {
  position: relative;
  background: url('../assets/contact.png') center/cover no-repeat;
  color: white;
  padding: 80px 0;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.contact-content h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-content p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 30px;
}

#contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.contact-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-item img:hover {
  transform: scale(1.1);
}

.contact-item p {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
}

.contact-image {
  display: flex;
  justify-content: center;
}

.contact-image img {
  border-radius: var(--border-radius);
  max-height: 400px;
  object-fit: contain;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}