/* ============================================
   Services Page - Professional Modern Design
   ============================================ */

/* Services Page Hero */
.services-page-hero {
    padding: calc(var(--header-height) + 120px) 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #163B5F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.services-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-page-hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Page Section */
.services-page-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.services-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E2E8F0, transparent);
}

.services-page-header {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 2px solid #E2E8F0;
}

.services-page-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0E2A47;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(14, 42, 71, 0.08);
    border-radius: 50px;
}

.services-page-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0E2A47;
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-page-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A5A6A;
    margin: 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-page-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(14, 42, 71, 0.04);
    position: relative;
    overflow: hidden;
}

.services-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0E2A47 0%, #163B5F 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.services-page-card:hover::before {
    transform: scaleY(1);
}

.services-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(14, 42, 71, 0.12);
    border-color: #0E2A47;
}

.services-page-card-number {
    font-size: 4rem;
    font-weight: 700;
    color: #0E2A47;
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.services-page-card:hover .services-page-card-number {
    opacity: 0.15;
}

.services-page-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0E2A47 0%, #163B5F 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 42, 71, 0.2);
}

.services-page-card:hover .services-page-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(14, 42, 71, 0.3);
}

.services-page-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0E2A47;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.services-page-card-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #1E2933;
    margin: 0;
    font-weight: 400;
}

/* Services Approach Section */
.services-approach-section {
    padding: 120px 0;
    background: #F8FAFC;
    position: relative;
}

.services-approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E2E8F0, transparent);
}

.services-approach-content {
    max-width: 1400px;
    margin: 0 auto;
}

.services-approach-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.services-approach-item {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(14, 42, 71, 0.04);
}

.services-approach-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14, 42, 71, 0.12);
    border-color: #0E2A47;
}

.services-approach-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0E2A47 0%, #163B5F 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(14, 42, 71, 0.2);
}

.services-approach-item:hover .services-approach-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(14, 42, 71, 0.3);
}

.services-approach-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0E2A47;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.services-approach-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4A5A6A;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-page-hero {
        padding: calc(var(--header-height) + 80px) 0 80px;
    }
    
    .services-page-section,
    .services-approach-section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .services-page-hero {
        padding: calc(var(--header-height) + 60px) 0 60px;
    }
    
    .services-page-hero-title {
        font-size: 2.25rem;
    }
    
    .services-page-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .services-page-section,
    .services-approach-section {
        padding: 80px 0;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-page-card {
        padding: 32px;
    }
    
    .services-approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-page-header {
        margin-bottom: 48px;
        padding-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .services-page-hero {
        padding: calc(var(--header-height) + 40px) 0 40px;
    }
    
    .services-page-hero-title {
        font-size: 1.875rem;
    }
    
    .services-page-section,
    .services-approach-section {
        padding: 60px 0;
    }
    
    .services-page-card {
        padding: 24px;
    }
    
    .services-approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-approach-item {
        padding: 24px;
    }
}
