/* Bunya Method Process Visualization */
.bunya-method-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
}

.process-node {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-node:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.process-node-1 { top: 50%; left: 10%; transform: translateY(-50%); }
.process-node-2 { top: 30%; left: 30%; }
.process-node-3 { top: 10%; left: 50%; }
.process-node-4 { top: 30%; left: 70%; }
.process-node-5 { top: 50%; left: 90%; transform: translateY(-50%); }

.process-connection {
    position: absolute;
    height: 4px;
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    z-index: 1;
}

.connection-1-2 {
    width: 22%;
    top: 40%;
    left: 16%;
    transform: rotate(-20deg);
}

.connection-2-3 {
    width: 22%;
    top: 20%;
    left: 36%;
    transform: rotate(-20deg);
}

.connection-3-4 {
    width: 22%;
    top: 20%;
    left: 56%;
    transform: rotate(20deg);
}

.connection-4-5 {
    width: 22%;
    top: 40%;
    left: 76%;
    transform: rotate(20deg);
}

.process-details {
    position: absolute;
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-details h4 {
    margin-bottom: 8px;
    color: #4a00e0;
}

.process-details p {
    font-size: 14px;
    line-height: 1.4;
}

.details-1 { top: 75%; left: 10%; transform: translateX(-50%); }
.details-2 { top: 5%; left: 30%; transform: translateX(-50%); }
.details-3 { top: -15%; left: 50%; transform: translateX(-50%); }
.details-4 { top: 5%; left: 70%; transform: translateX(-50%); }
.details-5 { top: 75%; left: 90%; transform: translateX(-50%); }

.process-node:hover + .process-details,
.process-details:hover {
    opacity: 1;
}

.process-animation-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    top: 40%;
    left: 10%;
    z-index: 3;
    box-shadow: 0 0 10px 2px rgba(142, 45, 226, 0.6);
    animation: moveDot 10s infinite linear;
}

@keyframes moveDot {
    0% { top: 50%; left: 10%; transform: translate(-50%, -50%); }
    20% { top: 30%; left: 30%; transform: translate(-50%, -50%); }
    40% { top: 10%; left: 50%; transform: translate(-50%, -50%); }
    60% { top: 30%; left: 70%; transform: translate(-50%, -50%); }
    80% { top: 50%; left: 90%; transform: translate(-50%, -50%); }
    100% { top: 50%; left: 10%; transform: translate(-50%, -50%); }
}

/* Assessment Radar Chart */
.assessment-radar {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.radar-circle {
    position: absolute;
    border: 1px dashed rgba(74, 0, 224, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-circle-1 { width: 20%; height: 20%; }
.radar-circle-2 { width: 40%; height: 40%; }
.radar-circle-3 { width: 60%; height: 60%; }
.radar-circle-4 { width: 80%; height: 80%; }
.radar-circle-5 { width: 100%; height: 100%; }

.radar-axis {
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: rgba(74, 0, 224, 0.2);
    top: 50%;
    left: 50%;
    transform-origin: left center;
}

.radar-axis-1 { transform: rotate(0deg); }
.radar-axis-2 { transform: rotate(72deg); }
.radar-axis-3 { transform: rotate(144deg); }
.radar-axis-4 { transform: rotate(216deg); }
.radar-axis-5 { transform: rotate(288deg); }

.radar-data-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #4a00e0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.radar-data-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 30%, 75% 40%, 70% 60%, 30% 50%, 35% 35%);
    background-color: rgba(74, 0, 224, 0.2);
    z-index: 1;
}

.radar-label {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    color: #4a00e0;
}

.radar-label-1 { top: 50%; right: -5%; transform: translateY(-50%); }
.radar-label-2 { top: 10%; right: 20%; }
.radar-label-3 { top: 10%; left: 20%; }
.radar-label-4 { top: 50%; left: -5%; transform: translateY(-50%); }
.radar-label-5 { bottom: 10%; left: 45%; }

.assessment-legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.legend-color {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 4px;
}

.legend-text {
    font-size: 14px;
}

/* Roadmap Visualization */
.roadmap-timeline {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.roadmap-quarter {
    flex: 1;
    padding: 0 10px;
}

.quarter-label {
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4a00e0;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roadmap-item {
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.priority-high { background: linear-gradient(135deg, #4a00e0, #8e2de2); }
.priority-medium { background: linear-gradient(135deg, #2d8ce2, #2de2e2); }
.priority-low { background: linear-gradient(135deg, #2de28c, #8ce22d); }

.roadmap-legend {
    display: flex;
    justify-content: center;
}

/* POC Process Visualization */
.poc-process {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.poc-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.stage-icon i {
    color: white;
    font-size: 24px;
}

.stage-label {
    font-weight: 600;
    color: #4a00e0;
}

.stage-connector {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #4a00e0, #8e2de2);
    top: 30px;
    left: 100%;
    z-index: -1;
}

.poc-metrics {
    display: flex;
    justify-content: space-around;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #4a00e0;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
}

/* Implementation Architecture Visualization */
.implementation-architecture {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.architecture-layer {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-layer { background-color: rgba(74, 0, 224, 0.1); }
.ai-layer { background-color: rgba(142, 45, 226, 0.1); }
.integration-layer { background-color: rgba(45, 142, 226, 0.1); }
.application-layer { background-color: rgba(45, 226, 142, 0.1); }

.layer-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #4a00e0;
}

.layer-components {
    display: flex;
    justify-content: space-around;
}

.architecture-component {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.architecture-component i {
    font-size: 24px;
    color: #4a00e0;
    margin-bottom: 5px;
}

.architecture-component span {
    font-size: 12px;
}

/* Enablement Visualization */
.skill-progression {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skill-level {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 6px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.skill-level span {
    font-weight: 600;
    color: #4a00e0;
}

.skill-description {
    position: absolute;
    left: 100%;
    top: 0;
    width: 200px;
    padding: 10px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.skill-level:hover .skill-description {
    opacity: 1;
}

.skill-level-0 { border-left: 5px solid #e0e0e0; }
.skill-level-1 { border-left: 5px solid #8ce22d; }
.skill-level-2 { border-left: 5px solid #2de28c; }
.skill-level-3 { border-left: 5px solid #2d8ce2; }
.skill-level-4 { border-left: 5px solid #4a00e0; }

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Case Study */
.case-study-detailed {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.case-study-header {
    margin-bottom: 20px;
}

.case-study-industry {
    display: inline-block;
    padding: 5px 10px;
    background-color: #4a00e0;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.case-study-title {
    color: #333;
    margin-bottom: 0;
}

.case-study-challenge,
.case-study-approach,
.case-study-results {
    margin-bottom: 30px;
}

.case-study-challenge h4,
.case-study-approach h4,
.case-study-results h4 {
    color: #4a00e0;
    margin-bottom: 15px;
}

.approach-phases {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.approach-phase {
    display: flex;
    align-items: flex-start;
    width: calc(50% - 10px);
}

.phase-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #4a00e0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.phase-content h5 {
    margin-bottom: 5px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.result-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(74, 0, 224, 0.05);
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: #4a00e0;
    margin-bottom: 5px;
}

.case-study-quote {
    padding: 20px;
    border-left: 4px solid #4a00e0;
    background-color: rgba(74, 0, 224, 0.05);
}

.case-study-quote blockquote {
    font-style: italic;
    margin-bottom: 15px;
}

.quote-author {
    text-align: right;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 14px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-node {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
    
    .process-details {
        width: 150px;
        font-size: 12px;
    }
    
    .approach-phase {
        width: 100%;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .roadmap-timeline,
    .poc-process {
        flex-direction: column;
        gap: 20px;
    }
    
    .roadmap-quarter {
        margin-bottom: 20px;
    }
    
    .stage-connector {
        display: none;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}
