/* Service Page Styles */

/* Hero Section */
.service-hero {
  background: linear-gradient(135deg, #0F2A4A 0%, #1a3d5c 100%);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.2;
  font-family: 'Sora', sans-serif;
}

.service-hero-subtitle {
  font-size: 1.25rem;
  color: #E8EDF3;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0.95;
}

.service-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.service-hero-cta-btn {
  display: inline-block;
  background-color: #D4A017;
  color: #0F2A4A;
  padding: 16px 48px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #D4A017;
  cursor: pointer;
}

.service-hero-cta-btn:hover {
  background-color: transparent;
  color: #D4A017;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 160, 23, 0.3);
}

.service-hero-cta-btn:active {
  transform: translateY(0);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .service-hero {
    padding: 80px 24px;
  }

  .service-hero-title {
    font-size: 2.5rem;
  }

  .service-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

  .service-hero-cta-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-hero {
    padding: 60px 16px;
  }

  .service-hero-title {
    font-size: 2rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }

  .service-hero-cta-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
  }
}

/* How It Works Section */
.service-how-it-works {
  padding: 80px 0;
}

.service-how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.5rem;
  color: #0F2A4A;
}

/* Card Styles (reuse from components.css) */
.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Pricing Section */
.service-pricing {
  background-color: #F7F9FC;
  padding: 80px 0;
}

.service-pricing h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.5rem;
  color: #0F2A4A;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.25s ease;
}

.pricing-card h3 {
  margin-bottom: 8px;
  color: #0F2A4A;
  font-size: 1.5rem;
}

.pricing-card .price-range {
  color: #999999;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.pricing-card .price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #D4A017;
  margin-bottom: 4px;
}

.pricing-card .price-label {
  color: #999999;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.pricing-card .description {
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-card-popular {
  border: 3px solid #D4A017;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.2);
}

.pricing-card-popular .popular-badge {
  display: inline-block;
  background-color: #D4A017;
  color: #0F2A4A;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* FAQ Section */
.service-faq {
  padding: 80px 0;
}

.service-faq h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.5rem;
  color: #0F2A4A;
}

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

.faq-item {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #FFFFFF;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: #D4A017;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.1);
}

.faq-item summary {
  padding: 20px;
  background-color: #F5F5F5;
  cursor: pointer;
  font-weight: 600;
  color: #0F2A4A;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s ease;
}

.faq-item summary:hover {
  background-color: #EFEFEF;
}

.faq-item[open] > summary {
  background-color: #EFEFEF;
  color: #D4A017;
}

.faq-item p {
  padding: 20px;
  margin: 0;
  color: #666666;
  line-height: 1.6;
}

/* Related Services Section */
.service-related {
  padding: 80px 0;
}

.service-related h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2.5rem;
  color: #0F2A4A;
}

/* CTA Section */
.service-cta-footer {
  background-color: #0F2A4A;
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 80px;
}

.service-cta-footer h2 {
  color: #FFFFFF;
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-cta-footer p {
  color: #E8EDF3;
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.service-cta-footer .cta-btn {
  display: inline-block;
  background-color: #D4A017;
  color: #0F2A4A;
  padding: 16px 48px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #D4A017;
}

.service-cta-footer .cta-btn:hover {
  background-color: transparent;
  color: #D4A017;
  transform: translateY(-2px);
}

/* Responsive Sections */
@media (max-width: 768px) {
  .service-pricing,
  .service-faq,
  .service-related {
    padding: 60px 24px;
  }

  .pricing-card-popular {
    transform: scale(1.02);
  }

  .faq-list {
    margin: 0 auto;
  }

  .service-cta-footer {
    padding: 40px 24px;
    margin-bottom: 60px;
  }

  .service-cta-footer h2 {
    font-size: 1.5rem;
  }

  .service-cta-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-pricing,
  .service-faq,
  .service-related {
    padding: 40px 16px;
  }

  .pricing-card-popular {
    transform: scale(1);
  }

  .service-cta-footer {
    padding: 32px 16px;
  }

  .service-cta-footer h2 {
    font-size: 1.3rem;
  }

  .faq-item summary {
    padding: 16px;
  }

  .faq-item p {
    padding: 16px;
  }
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.pricing-card,
.faq-item {
  animation: slideInUp 0.5s ease-out;
}
