/* Service Page Styles */

.sp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.sp-back {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.sp-back:hover {
  color: #D4AF37;
}

/* Hero */
.sp-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
}

.sp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0D0D0D, rgba(13,13,13,0.9), rgba(13,13,13,0.6));
}

.sp-hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  max-width: 640px;
}

.sp-hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  color: #D4AF37;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sp-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.sp-hero-desc {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #D4AF37;
  color: #0D0D0D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.sp-btn-primary:hover {
  background: #C5A028;
}

.sp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.sp-btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Overview */
.sp-overview {
  padding: 6rem 0;
  background: #0D0D0D;
}

.sp-overview-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.sp-overview h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.sp-overview p {
  color: #9ca3af;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Features Grid */
.sp-features {
  padding: 6rem 0;
  background: #111111;
}

.sp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.sp-feature-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.5s;
}

.sp-feature-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.sp-feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #D4AF37;
  font-size: 1.5rem;
}

.sp-feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.sp-feature-card p {
  color: #9ca3af;
  line-height: 1.7;
}

/* FAQ */
.sp-faq {
  padding: 6rem 0;
  background: #0D0D0D;
}

.sp-faq-inner {
  max-width: 768px;
  margin: 0 auto;
}

.sp-faq h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.sp-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.sp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.sp-faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sp-faq-arrow {
  color: #D4AF37;
  font-size: 1.25rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.sp-faq-item.open .sp-faq-arrow {
  transform: rotate(180deg);
}

.sp-faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: #9ca3af;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.sp-faq-item.open .sp-faq-answer {
  display: block;
}

/* CTA */
.sp-cta {
  padding: 6rem 0;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sp-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.sp-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.sp-cta p {
  color: #9ca3af;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.sp-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.sp-footer {
  padding: 2rem 0;
  background: #0D0D0D;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .sp-hero h1 {
    font-size: 2rem;
  }

  .sp-features-grid {
    grid-template-columns: 1fr;
  }

  .sp-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* RTL */
[dir="rtl"] .sp-hero-overlay {
  background: linear-gradient(to left, #0D0D0D, rgba(13,13,13,0.9), rgba(13,13,13,0.6));
}
