/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Service Cards */
.service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.dark .service-card {
    background: #111;
    border-color: #222;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.dark .service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.dark .product-card {
    background: #111;
    border-color: #222;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.dark .product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Hero Gradient */
.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.dark .services-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

/* Push Learn More CTA to the bottom of each service card */
.service-card > span:last-child {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .product-card {
        padding: 1rem;
    }
}