/* Shared styles for all service detail pages */
.page-hero {
  background: var(--navy);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/istanbul-hero.png') center/cover no-repeat;
  opacity: 0.2;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .tag { color: var(--gold); }
.page-hero h1 { color: white; font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 600px; margin: 0 auto; }

.breadcrumb { background: var(--light); padding: 12px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* Detail sections */
.detail-section { padding: 80px 0; }
.detail-section.alt { background: var(--light); }
.detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.detail-img { border-radius: var(--radius); overflow: hidden; min-height: 380px; background: linear-gradient(135deg, var(--navy), var(--blue)); box-shadow: var(--shadow); }
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-text h2 { font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 16px; }
.detail-text p  { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.detail-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.detail-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.detail-list li::before { content: '✓'; background: var(--gold); color: var(--navy); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* PRICING */
.pricing-section { padding: 80px 0; background: var(--navy); }
.pricing-section .tag { color: var(--gold); }
.pricing-section h2 { color: white; font-size: clamp(28px, 4vw, 42px); text-align: center; margin-bottom: 12px; }
.pricing-sub { text-align: center; color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  transition: transform var(--transition), background var(--transition);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.price-card.featured {
  background: var(--gold); border-color: var(--gold);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px;
}
.price-card h3 { font-size: 20px; color: white; margin-bottom: 8px; }
.price-card.featured h3 { color: var(--navy); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; margin: 16px 0 4px; }
.price-card.featured .price-amount { color: var(--navy); }
.price-unit { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.price-card.featured .price-unit { color: rgba(13,27,42,0.65); }
.price-features { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.75); }
.price-card.featured .price-features li { color: var(--navy); }
.price-features li::before { content: '✓'; flex-shrink: 0; font-weight: 700; color: var(--gold); }
.price-card.featured .price-features li::before { color: var(--navy); }
.price-card .btn-primary { width: 100%; text-align: center; border-radius: 8px; }
.price-card.featured .btn-primary { background: var(--navy); color: var(--gold); }
.price-card.featured .btn-primary:hover { background: #0a1520; }

/* NOTE BOX */
.note-box { background: rgba(201,168,76,0.12); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 16px 20px; margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.75); }
.note-box strong { color: var(--gold); }

/* FAQ */
.faq-section { padding: 80px 0; }
.faq-section h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--navy); text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 24px; font-size: 15px; font-weight: 600;
  color: var(--navy); background: var(--white); border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--light); }
.faq-q .faq-icon { font-size: 20px; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* CTA BANNER */
.cta-banner { background: var(--gold); padding: 56px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--navy); margin-bottom: 12px; }
.cta-banner p { color: rgba(13,27,42,0.75); font-size: 15px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark { display: inline-block; background: var(--navy); color: var(--gold); padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.btn-dark:hover { background: #0a1520; transform: translateY(-2px); }
.btn-wa-dark { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: white; padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.btn-wa-dark:hover { background: #1EB558; transform: translateY(-2px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .detail-inner { grid-template-columns: 1fr; }
  .detail-img { min-height: 240px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
