/* Ayka Sağlıklı Yaşam Merkezi - Randevu Formu Stilleri */

/* Randevu Bölümü Genel Stiller */
.appointment-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.appointment-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.05);
  z-index: 1;
}

.appointment-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.03);
  z-index: 1;
}

/* Randevu Başlık ve İçerik Stilleri */
.appointment-section .heading {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.appointment-section .heading span {
  color: #007bff;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
}

.appointment-section .heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #021935;
}

.appointment-section .heading p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* Özellikler Listesi */
.appointment-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.appointment-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}

.appointment-features li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #28a745;
  font-size: 16px;
}

/* Randevu Buton Stilleri */
.appointment-btn {
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(to right, #007bff, #0056b3);
  border: none;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.appointment-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.appointment-btn span i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.appointment-btn:hover span i {
  transform: translateX(5px);
}

/* Form Wrapper Stilleri */
.appointment-form-wrapper {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.appointment-form-wrapper:hover {
  transform: translateY(-5px);
}

/* Form Başlık */
.appointment-form h3 {
  font-size: 24px;
  font-weight: 600;
  color: #021935;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.appointment-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #007bff, #0056b3);
}

/* Form Alanları */
.appointment-form .form-control,
.appointment-form .form-select {
  height: 50px;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 15px;
  border: 1px solid #e1e1e1;
  box-shadow: none;
  transition: all 0.3s ease;
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.appointment-form textarea.form-control {
  height: auto;
  resize: none;
}

/* Form Buton */
.appointment-form button.btn {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(to right, #007bff, #0056b3);
  border: none;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.appointment-form button.btn:hover {
  background: linear-gradient(to right, #0056b3, #003d80);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.appointment-form button.btn span i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.appointment-form button.btn:hover span i {
  transform: translateX(5px);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .appointment-section {
    padding: 60px 0;
  }
  
  .appointment-section .heading h2 {
    font-size: 30px;
  }
  
  .appointment-form-wrapper {
    margin-top: 40px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .appointment-section {
    padding: 50px 0;
  }
  
  .appointment-section .heading h2 {
    font-size: 26px;
  }
  
  .appointment-features li {
    font-size: 14px;
  }
  
  .appointment-form-wrapper {
    padding: 25px;
  }
}
