/* İletişim Sayfası Özel CSS */

/* İletişim Kartları */
.contact-info-card, .contact-form-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
}

.section-title {
  font-size: 1.8rem;
  color: #006d77;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #006d77;
  bottom: 0;
  left: 0;
}

/* İletişim Bilgileri */
.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  background-color: #006d77;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-text p {
  margin-bottom: 5px;
  color: #555;
}

/* Sosyal Medya Linkleri */
.social-links h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  color: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #006d77;
  color: white;
  transform: translateY(-3px);
}

/* İletişim Formu */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px;
  font-family: 'Gerograph Edit', sans-serif;
}

.form-control:focus {
  border-color: #006d77;
  box-shadow: 0 0 0 0.2rem rgba(0, 109, 119, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.form-check-input:checked {
  background-color: #006d77;
  border-color: #006d77;
}

.btn-custom {
  background-color: #006d77;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #004f52;
  color: white;
}

/* Koroya Katılım Bölümü */
.join-section {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 50px;
}

.join-section h2 {
  color: #006d77;
  margin-bottom: 20px;
}

.join-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.join-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.join-item i {
  color: #006d77;
  font-size: 1.2rem;
  margin-right: 10px;
}

.join-item p {
  margin: 0;
}

.btn-outline-custom {
  border: 2px solid #006d77;
  color: #006d77;
  background-color: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: #006d77;
  color: white;
}

/* Katılım Modalı */
.modal-header {
  background-color: #006d77;
  color: white;
}

.modal-title {
  font-weight: 600;
}

.btn-close {
  color: white;
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
  padding: 25px;
}

.form-text {
  font-size: 0.8rem;
}

/* Harita Bölümü */
.map-section {
  margin-bottom: -30px;
}

.map-container {
  position: relative;
  padding-bottom: 450px;
  height: 0;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Duyarlı CSS */
@media (max-width: 991px) {
  .contact-info-card {
    margin-bottom: 30px;
  }
  
  .join-details {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .contact-item {
    flex-direction: column;
  }
  
  .contact-icon {
    margin-bottom: 10px;
  }
  
  .map-container {
    padding-bottom: 350px;
  }
}
