/* Implementation Process Styles for Veritas AI */

/* Header */
.implementation-header {
    background: linear-gradient(135deg, #0a192f 0%, #0d47a1 100%);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
}

.implementation-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.header-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Process Overview Section */
.process-overview-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-intro {
    margin-bottom: 50px;
}

.section-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

/* Implementation Timeline */
.implementation-timeline {
    padding: 40px 0;
}

.timeline-phases {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 36px;
    width: 4px;
    height: calc(100% - 80px);
    background-color: #e9ecef;
    z-index: 1;
}

.timeline-phase {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.timeline-phase:last-child {
    margin-bottom: 0;
}

.phase-marker {
    margin-right: 30px;
    flex-shrink: 0;
}

.phase-number {
    width: 76px;
    height: 76px;
    background-color: white;
    border: 4px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #6c757d;
    transition: all 0.3s ease;
}

.timeline-phase.active .phase-number {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
}

.phase-content {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-phase.active .phase-content {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #0a192f;
}

.phase-summary {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 15px;
}

.view-details-btn {
    transition: all 0.2s ease;
}

.view-details-btn:hover {
    transform: translateY(-2px);
}

/* Phase Details Sections */
.phase-details-section {
    padding: 80px 0;
    display: none;
}

.phase-details-section:nth-child(even) {
    background-color: #f8f9fa;
}

.phase-details-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.phase-banner {
    padding: 40px;
    color: white;
    position: relative;
}

.phase1-banner {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.phase2-banner {
    background: linear-gradient(135deg, #6610f2 0%, #4209a5 100%);
}

.phase3-banner {
    background: linear-gradient(135deg, #6f42c1 0%, #45258e 100%);
}

.phase4-banner {
    background: linear-gradient(135deg, #17a2b8 0%, #107788 100%);
}

.phase-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.phase-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.phase-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

.phase-description {
    padding: 40px;
}

.phase-description .lead {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 30px;
}

.phase-description h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #0a192f;
}

/* Activity List */
.activity-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.activity-list li {
    display: flex;
    margin-bottom: 20px;
}

.activity-list li:last-child {
    margin-bottom: 0;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.activity-icon i {
    color: #0d6efd;
    font-size: 1.1rem;
}

.activity-content {
    flex: 1;
}

.activity-content strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: #0a192f;
}

.activity-content p {
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
}

/* Deliverables List */
.deliverables-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.deliverables-list li:last-child {
    margin-bottom: 0;
}

.deliverable-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
}

.pdf-icon {
    background-color: #dc3545;
}

.excel-icon {
    background-color: #198754;
}

.doc-icon {
    background-color: #0d6efd;
}

.ppt-icon {
    background-color: #fd7e14;
}

.chart-icon {
    background-color: #6f42c1;
}

.report-icon {
    background-color: #17a2b8;
}

.alert-icon {
    background-color: #ffc107;
}

.deliverable-content {
    flex: 1;
}

.deliverable-content strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 3px;
    color: #0a192f;
}

.deliverable-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* Veritas Support */
.veritas-support {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.support-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.support-item:last-child {
    margin-bottom: 0;
}

.support-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.support-icon i {
    color: #0d6efd;
    font-size: 1.5rem;
}

.support-content {
    flex: 1;
}

.support-content strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: #0a192f;
}

.support-content p {
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
}

/* Resource Sidebar */
.resources-sidebar {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}

.resources-sidebar h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0a192f;
}

.resource-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: #f1f3f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.resource-icon i {
    font-size: 1.2rem;
    color: #0d6efd;
}

.resource-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.resource-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.success-metrics {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin: 25px 0;
}

.success-metrics h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0a192f;
}

.success-metrics ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.success-metrics li {
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 5px;
}

.phase-cta {
    margin-top: 20px;
}

/* Readiness Section */
.readiness-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.readiness-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a192f;
}

.readiness-tool {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.question-counter {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 10px;
}

.question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0a192f;
}

.answer-options {
    margin-bottom: 30px;
}

.form-check {
    margin-bottom: 15px;
}

.form-check-label {
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background-color: white;
}

.case-studies-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a192f;
}

.case-study-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industry-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e6f2ff;
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.case-study-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 15px;
    color: #0a192f;
}

.case-study-card p {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 20px;
    min-height: 60px;
}

.results {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.result-item {
    flex: 1;
    min-width: 120px;
}

.result-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Start Journey Section */
.start-journey-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.start-journey-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a192f;
}

.journey-steps {
    margin: 30px 0;
}

.journey-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0a192f;
}

.step-content p {
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
}

.journey-cta {
    margin-top: 30px;
}

.journey-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .implementation-header {
        padding: 80px 0 40px;
    }
    
    .implementation-header h1 {
        font-size: 2rem;
    }
    
    .phase-details-section {
        padding: 60px 0;
    }
    
    .phase-banner {
        padding: 30px;
    }
    
    .phase-banner h2 {
        font-size: 1.8rem;
    }
    
    .phase-description {
        padding: 30px;
    }
    
    .journey-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .implementation-header {
        padding: 70px 0 30px;
    }
    
    .implementation-header h1 {
        font-size: 1.8rem;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .phase-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .phase-marker {
        margin-right: 20px;
    }
    
    .phase-title {
        font-size: 1.3rem;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .phase-banner {
        padding: 25px;
    }
    
    .phase-banner h2 {
        font-size: 1.6rem;
    }
    
    .phase-description {
        padding: 25px;
    }
    
    .activity-list li {
        flex-direction: column;
    }
    
    .activity-icon {
        margin-bottom: 10px;
    }
    
    .deliverables-list li {
        flex-direction: column;
    }
    
    .deliverable-icon {
        margin-bottom: 10px;
    }
    
    .support-item {
        flex-direction: column;
    }
    
    .support-icon {
        margin-bottom: 10px;
    }
    
    .journey-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .journey-cta .btn {
        margin: 0 !important;
    }
}
