/* Services Page Styles (Light Theme) */

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.page-label {
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
}

.page-title {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 32px;
    color: var(--text-main);
}

.page-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Cards */
.services-list {
    padding: 80px 0;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
}

.service-card.reversed {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-header {
    margin-bottom: 24px;
}

.service-num {
    font-family: var(--font-en);
    font-size: 3rem;
    color: #f0f0f0;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.service-title {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-main);
}

.service-sub {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 24px;
    font-weight: 600;
}

.service-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.tag-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tag {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 100px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.kpi-box {
    display: inline-flex;
    flex-direction: column;
    padding-left: 20px;
    border-left: 4px solid var(--accent-blue);
}

.kpi-value {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    line-height: 1;
}

.kpi-label {
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Service Images (Placeholders) */
.service-image {
    flex: 1;
    height: 400px;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.code-theme {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.app-theme {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.consult-theme {
    background: linear-gradient(135deg, #e6e9f0 0%, #eef1f5 100%);
}

.edu-theme {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.center-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
}

.label {
    font-family: var(--font-en);
    letter-spacing: 0.2em;
    color: var(--accent-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-item {
    background: #fff;
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.p-num {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 800;
    color: #f0f0f0;
    display: block;
    margin-bottom: 16px;
}

.process-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.process-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA */
.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-inner {
    background: linear-gradient(135deg, #0058a5 0%, #003366 100%);
    border-radius: 40px;
    padding: 80px 20px;
    color: #fff;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-inner .btn-primary {
    background: #fff;
    color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 900px) {
    .service-card, .service-card.reversed {
        flex-direction: column;
        gap: 32px;
        padding: 24px;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
