/* -------------------------------------------- */

/* SERVICES COMPONENT SPECIFIC STYLES */

/* For use with the services component structure */

/* -------------------------------------------- */

/* Services Component Container */

.services-component {
  background-color: var(--bg-deep-solid);
  padding: 5rem 2rem;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-badge {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.services-header h2 {
  font-size: 2.25rem;
  color: var(--text-pure);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.services-header p {
  color: var(--text-body-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid - 6 columns */

.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Service Card Modern */

.service-card-modern {
  background-color: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-modern:hover .service-image {
  transform: scale(1.05);
}

.service-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(0, 180, 216, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin: -27px 0 0 1.5rem;
  transition: var(--transition-smooth);
}

.service-card-modern:hover .service-icon {
  background-color: var(--accent-primary);
  color: var(--bg-deep-solid);
  box-shadow: 0 0 15px var(--accent-primary-glow);
}

.service-card-modern h3 {
  font-size: 1.3rem;
  color: var(--text-pure);
  font-family: var(--font-mono);
  margin: 1rem 1.5rem 0.75rem 1.5rem;
}

.service-card-modern p {
  font-size: 0.9rem;
  color: var(--text-body-muted);
  line-height: 1.5;
  margin: 0 1.5rem 1rem 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-pure);
  margin: 0 1.5rem 1.5rem 1.5rem;
  opacity: 0.6;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.service-card-modern:hover .service-link {
  opacity: 1;
  color: var(--accent-primary);
}

/* CTA Button inside services */

.services-cta-banner {
  background: linear-gradient(90deg, var(--bg-surface-elevated), var(--bg-surface-card));
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cta-text p {
  margin: 0;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--accent-primary);
  color: var(--bg-deep-solid);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cta-button:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-2px);
}

/* -------------------------------------------- */

/* SECTORS COMPONENT STYLES */

/* -------------------------------------------- */

.sectors-component {
  background-color: var(--bg-surface-elevated);
  padding: 5rem 2rem;
}

.sectors-container {
  max-width: 1280px;
  margin: 0 auto;
}

.sectors-header {
  text-align: center;
  margin-bottom: 4rem;
}

.sectors-badge {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.sectors-header h2 {
  font-size: 2.25rem;
  color: var(--text-pure);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.sectors-header p {
  color: var(--text-body-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Sectors Grid - 3 columns */

.sectors-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Sector Card */

.sector-card {
  background-color: var(--bg-surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.sector-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.sector-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-primary);
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.sector-card:hover .sector-icon {
  background-color: var(--accent-primary);
  color: var(--bg-deep-solid);
}

.sector-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.sector-card p {
  font-size: 0.9rem;
  color: var(--text-body-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.sector-link:hover {
  gap: 0.75rem;
}

/* -------------------------------------------- */

/* RESPONSIVE FOR SERVICES COMPONENT */

/* -------------------------------------------- */

@media (max-width: 1024px) {
  .services-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .services-component {
    padding: 3rem 1.5rem;
  }

  .services-grid-6 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-header h2 {
    font-size: 1.5rem;
  }

  .service-card-modern h3 {
    font-size: 1.1rem;
  }

  .services-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .sectors-component {
    padding: 3rem 1.5rem;
  }

  .sectors-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sectors-header h2 {
    font-size: 1.5rem;
  }

  .sector-card {
    padding: 1.5rem;
  }

}

