/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: calc(80px + var(--space-20)) 0 var(--space-20);
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.5;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-4);
}

.page-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Introduction */
.services-intro {
    background: var(--color-bg-secondary);
}

.intro-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-secondary);
}

/* Service Section */
.service-section {
    padding: var(--space-24) 0;
}

.service-section.alt-bg {
    background: var(--color-bg-secondary);
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid var(--color-border);
}

.service-icon-large {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--glass-blur);
}

.service-icon-large img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-header-content h2 {
    margin-bottom: var(--space-3);
    font-size: var(--text-5xl);
}

.service-tagline {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    font-style: italic;
    margin: 0;
}

/* Service Content */
.service-content {
    margin-top: var(--space-12);
}

.service-description h3 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-8);
    color: var(--color-text-primary);
}

/* Feature Cards */
.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    backdrop-filter: var(--glass-blur);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    display: block;
}

.feature-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--color-text-primary);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Service Outcome */
.service-outcome {
    margin-top: var(--space-12);
    padding: var(--space-8);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    text-align: center;
}

.service-outcome h4 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.service-outcome p {
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin: 0;
    font-weight: var(--weight-medium);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-dark);
    padding: var(--space-24) 0;
}

.cta-section h2 {
    font-size: var(--text-4xl);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: var(--text-4xl);
    }

    .page-subtitle {
        font-size: var(--text-base);
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-header-content h2 {
        font-size: var(--text-3xl);
    }

    .service-tagline {
        font-size: var(--text-base);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}