/* Services Page Specific Styles */

.services-overview {
    background: var(--white);
}

.services-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-overview .service-card.featured {
    background: var(--off-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.services-overview .service-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.services-overview .service-card.featured .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.services-overview .service-card.featured h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.services-overview .service-card.featured > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 30px;
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* More Services */
.more-services {
    background: var(--off-white);
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.more-service-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.more-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.more-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.more-service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.more-service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 42px 32px;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
}

.process-step:last-child::after {
    display: none;
}

.process-step:nth-child(3)::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Tech Stack */
.tech-stack {
    background: var(--off-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tech-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    border: 2px solid transparent;
}

.tech-item:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 212, 255, 0.05);
}

@media (max-width: 1024px) {
    .services-overview .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        max-width: 780px;
    }
    
    .process-step::after {
        display: block;
    }

    .process-step:nth-child(2n)::after {
        display: none;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-overview .services-grid,
    .more-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 520px;
    }

    .process-step { min-height: 310px; }
    .process-step::after { display: none; }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-overview .service-card.featured {
        padding: 35px 25px;
    }
}
