.faq-section {
  padding: 100px 0 100px 0;
  background-color: #ffffff;
}

.faq-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* S.S.S. Özel Sınırlı Alt Ayırıcı Çizgi */
.faq-divider-line {
  width: 100%;
  max-width: 1280px;
  height: 1px;
  background-color: #EAEAEA;
  margin: 0 auto 0 auto;
}

/* Ortalanmış İkonlu Prestij Üst Başlık (SABİT) */
.faq-centered-icon-header {
  text-align: center;
  margin-bottom: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.faq-centered-icon-header .header-icon-seal {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4C233C 0%, #2A1321 100%);
  color: #EBD8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 12px 28px rgba(76, 35, 60, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.faq-centered-icon-header:hover .header-icon-seal {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 36px rgba(76, 35, 60, 0.35);
}

.faq-centered-icon-header .faq-subtitle {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #4C233C;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 24px;
  background: #ffffff;
  border: 1px solid rgba(76, 35, 60, 0.12);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.faq-centered-icon-header .faq-subtitle::before,
.faq-centered-icon-header .faq-subtitle::after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #EBD8B8;
  border-radius: 50%;
  display: inline-block;
}

.faq-centered-icon-header .faq-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
}

/* 2 Adet Bağımsız Kart Izgarası (Sağda Resim Kartı) */
.faq-dual-grid-reverse {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Sol Taraf: Akordeon Kart Kapsayıcısı */
.faq-left-accordion {
  background-color: #ffffff;
  border-radius: 26px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  padding: 35px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.faq-clean-item {
  background-color: #FBFBFB;
  border-radius: 18px;
  border: 1px solid #EEEEEE;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-clean-item:hover,
.faq-clean-item[open] {
  background-color: #ffffff;
  border-color: #4C233C;
  box-shadow: 0 8px 25px rgba(76, 35, 60, 0.08);
  transform: translateY(-2px);
}

.faq-clean-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  list-style: none;
  user-select: none;
}

.faq-clean-header::-webkit-details-marker {
  display: none;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.clean-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(76, 35, 60, 0.08);
  color: #4C233C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.clean-title {
  font-size: 15px;
  font-weight: 600;
  color: #1C1D21;
}

.clean-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  color: #4C233C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

details[open] .clean-icon {
  background-color: #4C233C;
  color: #EBD8B8;
}

details[open] .clean-arrow {
  background-color: #EBD8B8;
  color: #2D1826;
  border-color: #EBD8B8;
  transform: rotate(45deg);
}

.faq-clean-body {
  padding: 16px 24px 22px 24px;
  color: #555555;
  font-size: 13px;
  line-height: 1.75;
  background-color: #ffffff;
  border-top: 1px solid #F2F2F2;
}

/* Sağ Taraf: Görsel Kartı */
.faq-right-photo-card {
  background-color: #ffffff;
  border-radius: 26px;
  border: 1px solid #EAEAEA;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.photo-box {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.faq-right-photo-card:hover .photo-box img {
  transform: scale(1.03);
}

.photo-overlay-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  background: rgba(28, 29, 33, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 28px;
  border-radius: 50px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.tag-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #4C233C;
  color: #EBD8B8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.tag-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tag-text strong {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}

.tag-text span {
  font-size: 11px;
  color: #EBD8B8;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .faq-container {
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .faq-divider-line {
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 992px) {
  .faq-dual-grid-reverse {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .faq-divider-line {
    max-width: calc(100% - 40px);
  }
}
