/* Service Page Specific Styles */

/* Hero and breadcrumb styles moved to common.css to avoid duplication */

/* Service Overview */
.service-overview {
    padding: 80px 40px;
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, var(--grass-green), var(--blue));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Key Services */
.key-services {
    padding: 80px 40px;
    background: var(--light-bg);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-detail-card.featured {
    border: 2px solid var(--grass-green);
    background: linear-gradient(to bottom, rgba(124, 179, 66, 0.05), var(--white));
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--grass-green), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-detail-icon svg {
    width: 30px;
    height: 30px;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-detail-card ul li {
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

.service-detail-card ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Technologies Section */
.technologies {
    padding: 80px 40px;
    background: var(--white);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.tech-category h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Consulting Process */
.consulting-process {
    padding: 80px 40px;
    background: var(--light-bg);
}

.consulting-process .section-subtitle {
    margin-top: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--grass-green), var(--blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Delivery Models */
.delivery-models {
    padding: 80px 40px;
    background: var(--white);
}

.delivery-models .section-subtitle {
    margin-top: 1rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.model-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.model-card:hover {
    border-color: var(--grass-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.model-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.model-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.model-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(124, 179, 66, 0.2);
}

.model-card ul li {
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.model-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

/* CTA Section - moved to common.css to avoid duplication */

/* Research Stages */
.research-stages {
    padding: 80px 40px;
    background: var(--light-bg);
}

.research-stages .section-subtitle {
    margin-top: 1rem;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.stage-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--grass-green), var(--blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.stage-icon svg {
    width: 28px;
    height: 28px;
}

.stage-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.stage-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stage-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-bg);
}

.stage-card ul li {
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.stage-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

/* Development Lifecycle */
.development-lifecycle {
    padding: 80px 40px;
    /* background: var(--white); */
    background: var(--light-bg);
}

.development-lifecycle .section-subtitle {
    margin-top: 1rem;
}

.lifecycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.lifecycle-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.lifecycle-card:hover {
    border-color: var(--grass-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.lifecycle-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--grass-green), var(--blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.lifecycle-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    padding-right: 60px;
}

.lifecycle-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.lifecycle-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(124, 179, 66, 0.2);
}

.lifecycle-card ul li {
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.lifecycle-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

/* Quality Management */
.quality-management {
    padding: 80px 40px;
    background: var(--white);
}

.quality-management .section-subtitle {
    margin-top: 1rem;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.quality-card {
    /* background: var(--white); */
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--grass-green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.quality-icon svg {
    width: 32px;
    height: 32px;
}

.quality-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.quality-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* Responsive */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 20px 60px;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-overview,
    .key-services,
    .technologies,
    .consulting-process,
    .cta-section {
        padding: 60px 20px;
    }
    
    .overview-text h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}
