/* assets/services_styles.css - Palveluiden CSS-tyylit */

/* Services Section */
.services-section {
    padding: 100px 0;
}

.services-container {
    display: grid;
    gap: 60px;
}

.service-detailed {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.service-detailed:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.service-header {
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
}

.service-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.service-header-text {
    flex: 1;
}

.service-header-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: left;
}

.service-price {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    text-align: left;
}

.service-body {
    padding: 40px;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.features-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
    border-left-color: #667eea;
}

.feature-item::before {
    content: '⚡';
    margin-right: 12px;
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item-icon {
    font-size: 1.4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-header-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .service-header-text h3 {
        font-size: 1.8rem;
    }
    
    .service-body {
        padding: 24px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}