#contact-hero {
  min-height: 50vh;
  background: linear-gradient(rgba(15, 17, 23, 0.75), rgba(15, 17, 23, 0.75)),
    url("https://images.unsplash.com/photo-1516738901171-8eb4fc13bd20?w=1600&q=80") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
}

.contact-card {
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.ci-icon {
  width: 50px;
  height: 50px;
  background: var(--brand-surface);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ci-content h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--brand-text);
}

.ci-content p {
  color: var(--brand-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-form .form-control {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 14px 18px;
  color: var(--brand-text);
  font-size: 0.94rem;
}

.contact-form .form-control:focus {
  border-color: var(--brand-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 98, 47, 0.08);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 991px) {
  #contact-hero {
    min-height: 40vh;
  }
  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  #contact-hero {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .contact-card {
    padding: 24px;
    margin-bottom: 30px;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .map-container {
    height: 350px;
  }
}
