/* ===== Service Page Styles ===== */

/* Service Hero */
.service-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  padding: 120px 24px 80px;
}

.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 61, 0.3);
}

.service-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.service-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-hero .hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Service Details */
.service-details {
  padding: 70px 0;
  background: var(--white);
}

.service-details h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.service-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  list-style: none;
  padding: 0;
}

.service-items-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-200);
}

.service-items-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Process Steps */
.service-process {
  padding: 70px 0;
  background: var(--gray-100);
}

.service-process h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 36px;
  text-align: center;
}

.process-steps {
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-step .step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing */
.service-pricing {
  padding: 70px 0;
  background: var(--white);
  text-align: center;
}

.service-pricing h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-pricing p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ */
.service-faq {
  padding: 70px 0;
  background: var(--gray-100);
}

.service-faq h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  margin-bottom: 36px;
  text-align: center;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .service-items-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
