/* Services Page Styles */

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--dark-cream);
    overflow: hidden;
    transition: all 0.3s;
    scroll-margin-top: 100px;
}

.service-detail-card:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
}

.service-detail-header {
    background: linear-gradient(135deg, var(--pastel-green), var(--cream));
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--dark-cream);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.service-detail-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-tagline {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
}

.service-detail-content {
    padding: 48px;
}

.service-detail-content > p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-detail-content h4 {
    font-size: 20px;
    margin: 32px 0 20px;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--pastel-green);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 24px 0 32px;
}

.pricing-card {
    background: var(--pastel-green);
    padding: 32px 24px;
    border-radius: 16px;
    border: 2px solid var(--dark-cream);
    text-align: center;
    transition: all 0.3s;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(74, 144, 226, 0.1));
    border-color: var(--orange);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
}

.price-tag {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.price-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.process-step {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--dark-cream);
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: var(--orange);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--orange), var(--blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.process-step h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .service-detail-content {
        padding: 32px 24px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}