/* ===========================================
   CARDS COMPONENT
   =========================================== */

/* Service Card */
.service-card {
  padding: 2rem;
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(192, 199, 214, 0.1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 92, 171, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--primary);
  color: white;
}

.service-icon-wrapper span {
  font-size: 1.875rem !important;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--on-surface);
}

.service-description {
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.link-arrow {
  font-size: 1.125rem !important;
  transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Tech Card */
.tech-card {
  width: 6rem;
  height: 6rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  padding: 1rem;
}

@media (min-width: 768px) {
  .tech-card {
    width: 8rem;
    height: 8rem;
  }
}

.tech-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.tech-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

.tech-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--on-surface);
}
