/* İletişim (Contact) Page Styles */

.contact-hero {
  background: linear-gradient(160deg, #f8f9fc 0%, #eef2f8 50%, #e8eef6 100%);
  padding: 100px 22px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.contact-hero-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-hero-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.contact-content {
  padding: 64px 22px 80px;
  background: var(--bg-primary);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Contact info cards – horizontal row */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}

.contact-info-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.contact-info-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 122, 255, 0.2);
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.12) 0%, rgba(0, 122, 255, 0.06) 100%);
  color: var(--apple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin: 0 auto 20px;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}

.contact-info-text br {
  display: block;
  content: "";
  margin-top: 4px;
}

.contact-info-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--apple-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.contact-info-link:hover {
  color: var(--apple-blue-hover);
}

.contact-info-link i {
  font-size: 0.75rem;
}

/* Map section */
.contact-map-wrap {
  margin-top: 0;
  padding-top: 0;
}

.contact-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 450px;
  max-height: 70vh;
  border: 0;
}

@media (max-width: 600px) {
  .contact-map-embed iframe {
    height: 360px;
  }
}
