/* ========================================
   Service Pages — Shared Styles
   ======================================== */

.service-hero {
  min-height: 50vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 24px 60px; text-align: center;
}
.service-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,7,13,0.88) 0%, rgba(7,7,13,0.55) 50%, rgba(7,7,13,0.88) 100%);
}
.service-hero-content { position: relative; z-index: 1; max-width: 800px; }
.service-hero-content .section-subtitle { font-size: 0.8rem; }
.service-hero-content h1 {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  margin: 12px 0 16px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-hero-content p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 28px; line-height: 1.8; }
.service-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---- Service Sections ---- */
.service-section { padding: 80px 0; }
.service-section-alt { background: var(--bg-secondary); }
.service-section h2 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  margin-bottom: 16px; text-align: center;
}
.service-section > .container > p { text-align: center; color: var(--text-secondary); max-width: 700px; margin: 0 auto 40px; font-size: 0.95rem; line-height: 1.8; }

/* ---- Overview ---- */
.service-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.service-overview-text p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.service-overview-image { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-color); }
.service-overview-image img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Process ---- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.process-step { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: var(--transition); position: relative; }
.process-step:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.process-step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: rgba(212,168,83,0.08); line-height: 1; }
.process-step .step-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: var(--gold-subtle); color: var(--gold); font-size: 1.4rem; margin: 0 auto 16px; }
.process-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }

/* ---- Deliverables ---- */
.deliverables-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 800px; margin: 0 auto; }
.deliverable-item { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); transition: var(--transition); }
.deliverable-item:hover { border-color: var(--gold); background: var(--bg-card-hover); }
.deliverable-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.deliverable-item span { font-size: 0.9rem; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: var(--transition); position: relative; }
.pricing-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.pricing-card.featured { border-color: var(--gold); background: var(--gold-subtle); }
.pricing-card.featured::before { content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--bg-primary); padding: 4px 20px; border-radius: 50px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.pricing-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); margin: 12px 0; }
.pricing-card .price span { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.pricing-card p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 20px; }
.pricing-card ul { margin-bottom: 24px; }
.pricing-card ul li { padding: 6px 0; font-size: 0.85rem; color: var(--text-secondary); display: flex; align-items: center; justify-content: center; gap: 8px; }
.pricing-card ul li i { color: var(--gold); font-size: 0.7rem; }

/* ---- FAQ ---- */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--gold); }
.faq-question { width: 100%; padding: 18px 24px; background: none; border: none; color: var(--text-primary); font-size: 0.95rem; font-weight: 500; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-body); }
.faq-question i { color: var(--gold); transition: var(--transition); font-size: 0.8rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 18px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }

/* ---- Service CTA ---- */
.service-cta-section {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, rgba(212,168,83,0.06) 0%, transparent 100%);
  border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.service-cta-section h2 { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 12px; }
.service-cta-section p { color: var(--text-secondary); max-width: 550px; margin: 0 auto 28px; font-size: 1rem; }
.service-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Service Nav ---- */
.service-nav { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; padding: 60px 0 0; border-top: 1px solid var(--border-color); margin-top: 60px; }
.service-nav a { padding: 10px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 50px; color: var(--text-secondary); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.service-nav a:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .service-hero-content h1 { font-size: 2.6rem; }
  .service-overview-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .service-hero-content h1 { font-size: 2rem; }
  .service-hero-actions, .service-cta-actions { flex-direction: column; align-items: center; }
  .process-grid, .pricing-grid { grid-template-columns: 1fr; }
  .service-section h2 { font-size: 1.6rem; }
}
