/* assets/css/pages/services.css */

/* === Services Hero - Match Homepage === */
.services-hero {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #0E2247 0%, #1A3A6B 100%);
  overflow: hidden;
}

.services-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.services-hero__bg > div:nth-child(1) {
  position: absolute;
  top: -180px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,174,239,0.2) 0%, transparent 70%);
  border-radius: 8px;
}

.services-hero__bg > div:nth-child(2) {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(26,58,107,0.6) 0%, transparent 70%);
  border-radius: 8px;
}

.services-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.services-hero__label .dot {
  color: var(--cyan);
  font-size: 8px;
}

.services-hero__title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.services-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #C0C0C0;
  margin-bottom: 32px;
}

.services-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.services-hero__buttons .btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn--outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .services-hero {
    padding: 60px 0 80px;
  }
  .services-hero__title {
    font-size: 36px;
  }
  .services-hero__subtitle {
    font-size: 16px;
  }
  .services-hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .services-hero__buttons .btn--lg {
    width: 100%;
    max-width: 280px;
  }
}

/* === Service Pillars === */
.service-pillar {
  padding: 80px 0;
  position: relative;
}

.service-pillar.bg-light {
  background: #F8FAFC;
}

.service-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--cyan);
}

.service-card__number {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #E0F2FE;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 0;
  pointer-events: none;
}

.service-card h2 {
  margin-top: 8px;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: 28px;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card > .two-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.service-card .capability-list li,
.service-card .process-list li {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #E0F2FE;
  border: 1px solid #BAE6FD;
  font-size: 15px;
  color: #0369A1;
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-card .capability-list li:hover,
.service-card .process-list li:hover {
  border-color: #94A3B8;
  background: #F1F5F9;
  color: #475569;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .service-pillar {
    padding: 48px 0;
  }
  .service-card {
    padding: 24px;
  }
  .service-card__number {
    font-size: 48px;
    top: 8px;
    right: 16px;
  }
  .service-card > .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* === Footer - Override dark to light === */
.footer {
  padding: 48px 0 24px;
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__wordmark {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 15px;
  color: #1E293B;
}

.footer__tagline {
  font-size: 14px;
  color: #64748B;
  margin-top: 12px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--cyan);
}

.footer__copyright {
  font-size: 14px;
  color: #94A3B8;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #E2E8F0;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }
}
