/* Rezervasyon Formu CSS */
.checkout-form {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.checkout-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.checkout-field {
  margin-bottom: 15px;
  position: relative;
}

.checkout-field h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.chk-field {
  position: relative;
}

.chk-field input, .chk-field select {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 15px;
  background-color: #fff;
  color: #333;
}

.chk-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  cursor: pointer;
}

.chk-field i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

/* Oda Kartı Stilleri */
.odalar-listesi {
  margin-top: 20px;
}

.oda-karti {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.oda-karti:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.oda-resim {
  overflow: hidden;
}

.oda-resim img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.oda-karti:hover .oda-resim img {
  transform: scale(1.05);
}

.oda-detay {
  padding: 20px;
}

.oda-detay h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.oda-fiyat {
  font-size: 22px;
  font-weight: 600;
  color: #e84c3d;
  margin-bottom: 15px;
}

.oda-aciklama {
  margin-bottom: 15px;
}

.oda-aciklama p {
  color: #666;
  line-height: 1.6;
}

.oda-ozellikler ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  flex-wrap: wrap;
}

.oda-ozellikler li {
  margin-bottom: 8px;
  margin-right: 15px;
  font-size: 14px;
  color: #666;
}

.oda-ozellikler li i {
  margin-right: 8px;
  color: #e84c3d;
}

/* Müsait Değil Stili */
.musait-degil {
  opacity: 0.7;
}

.musait-degil-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff5252;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  z-index: 1;
}

/* Seçilen Oda Bilgileri */
.secilen-oda-bilgileri {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 3px solid #e84c3d;
}

.secilen-oda-bilgileri h4 {
  color: #333;
  margin-bottom: 15px;
}

.secilen-oda-bilgileri p {
  margin-bottom: 10px;
  color: #666;
}

/* Form Stilleri */
.kisisel-bilgiler {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-control {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: #e84c3d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 76, 61, 0.1);
}

textarea.form-control {
  height: auto;
}

/* Başarı Mesajı */
.basari-mesaji {
  text-align: center;
  padding: 30px 20px;
}

.basari-mesaji i {
  font-size: 48px;
  color: #28a745;
  margin-bottom: 15px;
}

.basari-mesaji h3 {
  color: #333;
  margin-bottom: 15px;
}

.rezervasyon-detaylari {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 500px;
  text-align: left;
  border-left: 3px solid #28a745;
}

/* FAQ Stilleri */
.faq-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 500;
}

.faq-question i {
  color: #e84c3d;
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 500px;
}

/* Sayfa Başlık Stilleri */
.page-header {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;

}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
}

.breadcrumb li {
  font-size: 16px;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 10px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #e84c3d;
}

/* CTA Bölümü */
.cta-section {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  margin: 60px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Mobil Uyumlu Düzenlemeler */
@media (min-width: 768px) {
  .oda-karti {
    display: flex;
  }
  
  .oda-resim {
    width: 300px;
    flex-shrink: 0;
  }
  
  .oda-resim img {
    height: 100%;
  }
  
  .oda-detay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }

  .oda-aciklama {
    max-width: 70%;
  }
}

@media (max-width: 767px) {
  .checkout-form {
    padding: 20px;
  }
  
  .checkout-field h4 {
    font-size: 15px;
  }
  
  .page-header {
    height: 200px;
  }
  
  .page-header h1 {
    font-size: 30px;
  }
  
  .oda-detay h4 {
    font-size: 18px;
  }
  
  .oda-fiyat {
    font-size: 20px;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }

  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
}