/* ===== 720 SCANNING - SERVICES PAGE STYLES ===== */

/* services part1: Page Hero + Intro */

/* Page Hero Banner */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 60px;
}

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

.page-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.page-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.page-hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle linear infinite;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
}

.page-hero-content .section-label {
  color: var(--primary-light);
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: var(--primary-light);
}

.breadcrumb span {
  color: rgba(255,255,255,0.25);
}

/* Services Intro */
.services-intro {
  padding: 60px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.services-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-intro-content p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
}

.services-intro-visual {
  max-width: 700px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.services-intro-visual img {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 50vh;
    padding: 160px 48px 80px;
  }
  .services-intro {
    padding: 80px 0;
  }
}


/* services part2: Services Grid */

/* Full Services Grid */
.services-full-grid {
  padding: 80px 0 100px;
  background: var(--white);
}

.services-full-grid-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .services-full-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-full-grid-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-full-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-full-card:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(232, 97, 31, 0.1);
  transform: translateY(-4px);
}

.service-full-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 97, 31, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-full-card:hover .service-full-card-icon {
  background: var(--primary);
}

.service-full-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-full-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .services-full-grid {
    padding: 100px 0 120px;
  }
}


/* Deliverables Showcase */
.services-showcase {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.services-showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .services-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.services-showcase-card img {
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .services-showcase {
    padding: 100px 0;
  }
}


/* services part3: CTA Section */

/* Services CTA */
.services-cta {
  padding: 80px 0;
  background: var(--dark);
}

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

.services-cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.services-cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

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

@media (min-width: 768px) {
  .services-cta {
    padding: 100px 0;
  }
}


