/**
 * @file
 * Services Section Styles
 * 6-card grid with icons, hover effects, and animations
 */

.dobig-services {
  background-color: #0a0a0a;
  padding: 6rem 0;
}

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

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

@media (max-width: 640px) {
  .dobig-services-grid {
    grid-template-columns: 1fr;
  }
}

.dobig-service-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dobig-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F97316, #FB923C);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.dobig-service-card:hover::before {
  transform: scaleX(1);
}

.dobig-service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(249, 115, 22, 0.1);
}

.dobig-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: #F97316;
  transition: all 0.4s ease;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.dobig-service-card:hover .dobig-service-icon {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.dobig-service-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.dobig-service-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.dobig-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #F97316;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.dobig-service-link:hover {
  gap: 0.75rem;
  color: #FB923C;
}

.dobig-service-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

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

/* Service Category Tags */
.dobig-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dobig-service-tag {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Featured Service Card */
.dobig-service-card.featured {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.1), #0f0f0f);
  border-color: rgba(249, 115, 22, 0.2);
}

.dobig-service-card.featured .dobig-service-icon {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
}

.dobig-service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #F97316;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
