/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
    position: relative;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-intro {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1rem;
}

/* Services Grid Section */
.services-grid-section {
    padding: 4rem 0;
}

.services-grid {
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-smooth);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 16px;
    font-size: 32px;
    color: var(--accent-gradient-end);
    margin-bottom: 1.5rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: var(--text-primary);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--accent-gradient-end);
    font-size: 12px;
}

/* Process Section */
.process-section {
    padding: 4rem 0;
    background: var(--secondary-bg);
}

.process-grid {
    gap: 2rem;
}

.process-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.process-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-card::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    font-size: 32px;
    color: var(--accent-gradient-end);
    opacity: 0.3;
}

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

/* CTA Section */
.cta-card {
    padding: 4rem 2rem;
    text-align: center;
}

.cta-card h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-card::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding-top: 120px;
    }
    
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}
