/* İletişim Sayfası - Laravel: sadece iletisim.html'de yükle */

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  height: 100%;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.contact-info-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--gray);
  font-size: 0.9375rem;
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.contact-form-wrapper .form-desc {
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-map-placeholder {
  text-align: center;
  color: var(--gray);
}

.contact-map-placeholder .map-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

@media (max-width: 575.98px) {
  .contact-form-wrapper { padding: 28px; }
}
