/* Service Pages Styles */

/* Service Hero */
.service-hero {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.4) 100%);
}

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

.service-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 56px;
    color: white;
    animation: float 3s ease-in-out infinite;
}

.service-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.service-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.service-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Service Overview Cards */
.service-overview {
    padding: 80px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.overview-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
}

.overview-card .highlight {
    font-size: 36px;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 5px;
}

.overview-card .description {
    font-size: 14px;
    color: #64748b;
}

/* Service Details Section */
.service-details {
    background: #f8fafc;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.feature-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.feature-badge {
    padding: 8px 16px;
    background: #e0e7ff;
    color: #4f46e5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-details {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-details h4 i {
    color: #2563eb;
}

.feature-details ul {
    list-style: none;
    padding: 0;
}

.feature-details li {
    padding: 10px 0;
    color: #475569;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.feature-details li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-benefits {
    margin-bottom: 20px;
}

.feature-benefits h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-benefits h4 i {
    color: #f59e0b;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.1));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
}

.feature-highlight i {
    color: #f59e0b;
    margin-right: 8px;
}

.feature-highlight strong {
    color: #2563eb;
    font-weight: 700;
}

/* Process Section */
.process-section {
    background: white;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #64748b;
}

.process-arrow {
    font-size: 32px;
    color: #cbd5e1;
    font-weight: 300;
}

/* Technology Section */
.tech-section {
    background: #f8fafc;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    transform: translateY(-10px);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* Color Variants for Different Services */
.development-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.evaluation-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.utilization-hero {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.strategy-hero {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }
    
    .service-hero-title {
        font-size: 40px;
    }
    
    .service-hero-subtitle {
        font-size: 16px;
    }
    
    .service-hero-description {
        font-size: 16px;
    }
    
    .service-icon-large {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }
    
    .feature-item {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .feature-number {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .overview-card .highlight {
        font-size: 28px;
    }
    
    .process-flow {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 32px;
    }
    
    .benefit-tags {
        flex-direction: column;
    }
    
    .benefit-tag {
        text-align: center;
    }
}
