/* ============================================================================
   SERVICES STRIP - Reusable 4-Column Service Icons Row
   ============================================================================
   Usage:
   <div class="services-strip">
       <div class="service-item">
           <div class="service-icon cyan">
               <Icon Name="server" />
           </div>
           <span class="service-label">Service Name</span>
       </div>
       <!-- repeat 4x -->
   </div>

   Icon color variants: .cyan, .purple, .green, .gold, .red
   ============================================================================ */

/* Base Services Strip */
.services-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Individual service item */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

/* Service icon container */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon inside */
.service-icon :deep(.icon),
.service-icon svg {
    width: 24px;
    height: 24px;
}

/* Service label */
.service-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    line-height: 1.4;
}

/* Optional: Service description */
.service-desc {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 200px;
}

/* ============================================================================
   ICON COLOR VARIANTS
   ============================================================================ */

.service-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.service-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.service-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.service-icon.gold {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.service-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Accent (indigo) */
.service-icon.accent {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

/* ============================================================================
   HOVER STATES (Optional - for clickable services)
   ============================================================================ */

.service-item--clickable {
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item--clickable:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-item--clickable:hover .service-icon {
    transform: scale(1.1);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

/* Tablet: 2 columns */
@media (max-width: 768px) {
    .services-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon :deep(.icon),
    .service-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-label {
        font-size: 0.8125rem;
    }
}

/* Mobile: 2 columns maintained for compactness */
@media (max-width: 480px) {
    .services-strip {
        gap: 16px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .service-icon :deep(.icon),
    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-label {
        font-size: 0.75rem;
    }
}
