/* İletişim Sayfası - Kurumsal Basit Tasarım */

.contact-page {
  background-color: #f8f9fa;
}

/* Breadcrumb Section */
.contact-breadcrumb-section {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
}

.contact-breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.contact-breadcrumb-section .breadcrumb-item a {
  color: #6c757d;
  text-decoration: none;
}

.contact-breadcrumb-section .breadcrumb-item a:hover {
  color: #495057;
}

.contact-breadcrumb-section .breadcrumb-item.active {
  color: #212529;
}

/* Contact Header Section */
.contact-header-section {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.contact-header-section h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
}

.contact-header-section p {
  font-size: 1rem;
  color: #6c757d;
}

/* Contact Info Section */
.contact-info-section {
  padding: 60px 0;
}

.contact-card {
  transition: all 0.3s ease;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dee2e6 !important;
}

.contact-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
  border-color: #adb5bd !important;
  transform: translateY(-5px);
}

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

.contact-icon {
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-card a {
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #667eea !important;
}

.contact-card .btn {
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 20px;
}

.contact-card .btn-success {
  background-color: #25d366;
  border-color: #25d366;
}

.contact-card .btn-success:hover {
  background-color: #20ba5a;
  border-color: #20ba5a;
}

/* Map Section */
.map-section {
  padding: 60px 0;
}

.map-wrapper {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-header-section {
    padding: 30px 0;
  }

  .contact-header-section h1 {
    font-size: 1.5rem;
  }

  .contact-info-section {
    padding: 40px 0;
  }

  .map-section {
    padding: 40px 0;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .contact-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-header-section h1 {
    font-size: 1.25rem;
  }

  .contact-card {
    padding: 1.5rem !important;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

