/* Service Page Specific Styles */

/* Service Hero Section */
.service-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.service-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #4d94ff;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #666;
}

.service-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.service-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 900px;
    font-weight: 400;
}

/* Service Content */
.service-content {
    background-color: #ffffff;
}

.content-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
}

.content-section:last-of-type {
    border-bottom: none;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #004d99 100%);
}

.section-body {
    max-width: 1200px;
}

.body-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 25px;
}

.body-text:last-child {
    margin-bottom: 0;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.deliverable-item {
    position: relative;
    padding-left: 80px;
}

.deliverable-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    font-weight: 700;
    color: #e5e5e5;
    font-family: 'Space Mono', monospace;
}

.deliverable-title {
    font-size: 22px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.deliverable-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, #0066cc 0%, #004d99 100%);
}

.process-step {
    position: relative;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-marker {
    position: absolute;
    left: -48px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: #0066cc;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #0066cc;
}

.process-step-content {
    padding-left: 20px;
}

.process-step-title {
    font-size: 24px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.process-step-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.standard-card {
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.standard-card:hover {
    border-color: #0066cc;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.1);
}

.standard-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Space Mono', monospace;
}

.standard-title {
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.standard-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Expertise List */
.expertise-list {
    margin-top: 30px;
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #fafafa;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.expertise-bullet {
    color: #0066cc;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: 700;
}

.expertise-content {
    font-size: 16px;
    line-height: 1.7;
    color: #2a2a2a;
}

.expertise-content strong {
    color: #0a0a0a;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #16213e 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: transparent;
    border-color: #0066cc;
    color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 20px 40px;
    }
    
    .service-hero-title {
        font-size: 40px;
    }
    
    .service-hero-subtitle {
        font-size: 18px;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .deliverables-grid {
        gap: 30px;
    }
    
    .deliverable-item {
        padding-left: 60px;
    }
    
    .deliverable-number {
        font-size: 36px;
    }
    
    .process-timeline {
        padding-left: 40px;
    }
    
    .process-step-marker {
        left: -36px;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .deliverable-title {
        font-size: 20px;
    }
    
    .process-step-title {
        font-size: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
}
