/* ===== SERVICES PAGE STYLES ===== */

/* Service Details */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 20px;
}

.service-detail-reverse {
  direction: rtl;
}

.service-detail-reverse > * { direction: ltr; }

.service-detail-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.service-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-img:hover img { transform: scale(1.04); }

.service-img-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: -12px;
  letter-spacing: -0.04em;
}

.service-detail-content h2 em { font-style: italic; color: var(--gold); }

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.service-includes li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 80px 0;
}

/* Process */
.process-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 16px;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-light), var(--ivory));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon i { font-size: 1.3rem; color: var(--gold-dark); }

.step-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-step h4 { font-size: 1.1rem; margin-bottom: 12px; }
.process-step p { font-size: 0.9rem; line-height: 1.7; }

.process-arrow {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-top: 80px;
}

/* FAQ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 em { font-style: italic; color: var(--gold); }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--ivory);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--ivory); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* CTA (shared from home) */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(42,42,42,0.88), rgba(42,42,42,0.7)); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 em { font-style: italic; color: var(--gold-light); }

/* Responsive */
@media (max-width: 1024px) {
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-reverse { direction: ltr; }
  .service-detail-img { height: 360px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-timeline { flex-direction: column; align-items: stretch; }
  .process-arrow { display: none; }
}

@media (max-width: 768px) {
  .service-detail-img { height: 280px; }
  .service-divider { margin: 48px 0; }
}
