/* ============================================================
   Vimsi Travel Agency — hizmet-detay.css
   Hizmet Detay sayfasına özel stiller (hizmet-detay.php)
   Temel stiller main.css içindedir.
   ============================================================ */

/* ------------------------------------------------------------
   DETAY WRAPPER & İÇERİK ALANI
   ------------------------------------------------------------ */
.service-detail-wrapper {
  background: var(--pm-cream);
  padding: 72px 0 56px;
}
@media (max-width: 768px) {
  .service-detail-wrapper { padding: 48px 0 36px; }
}

.service-detail-inner {
  max-width: 980px;
  margin: 0 auto;
}

/* İçerik kutusu — Summernote/editor çıktısı buraya gelecek */
.service-detail-content {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 52px 56px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .service-detail-content { padding: 30px 22px; }
}

/* Summernote/Editor tipografi stilleri */
.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  color: var(--clr-green-dark);
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.28;
  font-weight: 700;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #1E1E1E;
  margin-top: 36px;
  margin-bottom: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.service-detail-content p {
  font-size: 15.5px;
  color: rgba(30,30,30,0.72);
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-detail-content ul,
.service-detail-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.service-detail-content li {
  font-size: 15px;
  color: rgba(30,30,30,0.72);
  line-height: 1.75;
  margin-bottom: 7px;
}
.service-detail-content li::marker {
  color: var(--pm-gold);
}

.service-detail-content strong {
  color: #1E1E1E;
  font-weight: 700;
}
.service-detail-content em {
  color: var(--clr-green-dark);
  font-style: italic;
}

.service-detail-content blockquote {
  border-left: 3px solid var(--pm-gold);
  background: rgba(201,165,90,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16px;
  color: rgba(30,30,30,0.70);
  font-style: italic;
  line-height: 1.72;
}
.service-detail-content blockquote p {
  margin-bottom: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

/* Editörden gelen img etiketleri — responsive & estetik */
.service-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  margin: 32px auto;
  box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------
   İÇERİK SONU HIZLI İLETİŞİM CTA
   ------------------------------------------------------------ */
.service-detail-cta {
  background: var(--clr-green-dark);
  border-radius: var(--radius-md);
  padding: 42px 44px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.service-detail-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pm-gold), transparent);
}
.service-detail-cta h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.service-detail-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 560px;
}
.service-detail-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hizmetlere Dön butonu */
.btn-back-services {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 2px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-back-services:hover {
  border-color: rgba(255,255,255,0.50);
  color: #fff;
}

@media (max-width: 768px) {
  .service-detail-cta { padding: 30px 22px; }
}
@media (max-width: 576px) {
  .service-detail-cta-btns { flex-direction: column; align-items: stretch; }
  .service-detail-cta-btns a { justify-content: center; }
}

/* ------------------------------------------------------------
   BENZER HİZMETLER
   ------------------------------------------------------------ */
.related-services {
  background: var(--pm-cream);
  padding: 72px 0;
}
@media (max-width: 768px) {
  .related-services { padding: 48px 0; }
}

.related-services .section-header {
  margin-bottom: 36px;
}

.related-service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.related-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}

.related-service-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.related-service-card:hover .related-service-card-img img {
  transform: scale(1.06);
}
.related-service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,10,20,0.18);
}

.related-service-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.related-service-card-body .rsc-icon {
  width: 38px;
  height: 38px;
  background: rgba(201,165,90,0.10);
  border: 1px solid rgba(201,165,90,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--pm-gold);
  margin-bottom: 11px;
  flex-shrink: 0;
}
.related-service-card-body h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #1E1E1E;
  margin-bottom: 6px;
  font-weight: 700;
}
.related-service-card-body p {
  font-size: 13px;
  color: rgba(30,30,30,0.60);
  margin-bottom: 16px;
  line-height: 1.55;
  flex: 1;
}
.related-service-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--clr-green-dark);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}
.related-service-card:hover .related-service-link {
  gap: 8px;
  color: var(--pm-gold);
}
