/* Services Page Only */

.services-page {
  overflow-x: hidden;
}

@media (max-width: 480px) {
  .services-page .services-hero-badge {
    max-width: min(92vw, 320px);
    gap: 10px;
  }

  .services-page .services-hero-badge-line {
    width: 40px;
  }
}

.services-page .services-hero {
  position: relative;
  min-height: 680px;
  overflow: visible;
}

.services-page .services-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.services-page .services-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.services-page .services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.7) 100%);
}

.services-page .services-hero-center {
  position: relative;
  z-index: 10;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 120px;
}

.services-page .services-hero-graphic {
  position: relative;
  text-align: center;
}

.services-page .services-hero-graphic-img {
  width: min(894px, 92vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.services-page .services-hero-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 18, 30, 0.6);
  padding: 10px 14px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-page .services-hero-badge-line {
  width: 56px;
  height: 3px;
}

.services-page .services-hero-badge-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
}

.services-page .services-hero-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: min(760px, 86vw);
  text-align: center;
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.services-page .services-hero-title-line {
  font-size: 58px;
  line-height: 1.18;
}

.services-page .services-section {
  padding: 96px 0 120px;
}

.services-page .services-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-page .services-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
}

.services-page .services-section-badge::before,
.services-page .services-section-badge::after {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(202, 156, 94, 0.3) 100%);
  border-radius: 2px;
}

.services-page .services-section-badge::after {
  background: linear-gradient(270deg, var(--primary-gold) 0%, rgba(202, 156, 94, 0.3) 100%);
}

.services-page .services-section-badge span {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-gold);
  white-space: nowrap;
}

.services-page .services-section-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto;
}

.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 1024px) {
  .services-page .services-hero-center {
    padding: 110px 0 120px;
  }

  .services-page .services-hero-title-line {
    font-size: 48px;
  }

  .services-page .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .services-page .services-hero {
    min-height: 620px;
  }

  .services-page .services-hero-center {
    min-height: 620px;
    padding: 110px 0 110px;
  }

  .services-page .services-hero-badge {
    top: 12px;
    max-width: min(92vw, 420px);
    padding: 10px 12px;
  }

  .services-page .services-hero-badge-text {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    font-size: 16px;
  }

  .services-page .services-hero-title {
    width: min(560px, 90vw);
    transform: translate(-50%, -40%);
  }

  .services-page .services-hero-title-line {
    font-size: 34px;
    line-height: 1.22;
  }

  .services-page .services-section {
    padding: 80px 0 96px;
  }

  .services-page .services-section-title {
    font-size: 26px;
  }

  .services-page .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-page .services-hero-title-line {
    font-size: 30px;
  }
}
