/* 2026 Vision Specific Styles */
.vision-hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
}

.vision-hero .article-category {
    background: rgba(255,255,255,0.2);
    color: white;
}

.vision-hero .article-tags .tag {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* Executive Summary */
.executive-summary {
    margin: 40px 0;
}

.summary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.summary-header {
    background: linear-gradient(135deg, #0078b0 0%, #004466 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-header i {
    font-size: 1.8rem;
}

.summary-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.summary-content {
    padding: 30px;
}

.summary-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 25px;
}

.summary-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.highlight i {
    font-size: 1.5rem;
    color: #0078b0;
}

.highlight span {
    line-height: 1.4;
}

.highlight strong {
    color: #2d3748;
}

/* Timeline */
.timeline-wrapper {
    margin: 30px 0;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #0078b0, #00c6ff);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #0078b0;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-marker i {
    color: white;
    font-size: 0.8rem;
}

.timeline-content {
    margin-left: 40px;
}

.timeline-content h3 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Shifts Grid */
.shifts-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.shift-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.shift-header {
    background: linear-gradient(135deg, var(--shift-color, #0078b0) 0%, color-mix(in srgb, var(--shift-color, #0078b0), #000 20%) 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.shift-card:nth-child(1) { --shift-color: #0078b0; }
.shift-card:nth-child(2) { --shift-color: #805ad5; }
.shift-card:nth-child(3) { --shift-color: #38a169; }
.shift-card:nth-child(4) { --shift-color: #d69e2e; }
.shift-card:nth-child(5) { --shift-color: #e53e3e; }

.shift-number {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.shift-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.shift-body {
    display: flex;
    padding: 25px;
    gap: 25px;
}

.shift-icon {
    flex-shrink: 0;
    font-size: 3rem;
    color: var(--shift-color);
}

.shift-content {
    flex: 1;
}

.shift-content h4 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.shift-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.impact-box {
    background: #f7fafc;
    border-left: 4px solid var(--shift-color);
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.impact-box h5 {
    color: var(--shift-color);
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.impact-box ul {
    padding-left: 20px;
    margin: 0;
}

.impact-box li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.5;
}

/* Winners Grid */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.winner-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
}

.winner-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0078b0 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.winner-avatar i {
    font-size: 1.8rem;
    color: white;
}

.winner-info h3 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.winner-subtitle {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.winner-advantage h4 {
    color: #0078b0;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.winner-advantage ul {
    padding-left: 20px;
    margin: 0;
}

.winner-advantage li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.5;
}

/* Predictions Grid */
.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.prediction-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #0078b0;
    transition: transform 0.3s ease;
}

.prediction-card:hover {
    transform: translateY(-5px);
}

.prediction-stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0078b0;
    margin-bottom: 15px;
    text-align: center;
}

.prediction-content h3 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
}

.prediction-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.prediction-source {
    font-size: 0.85rem;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.prediction-source i {
    color: #0078b0;
}

/* UAE Implications */
.uae-implications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.implication-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-left: 4px solid #0078b0;
}

.implication-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: #0078b0;
}

.implication-content h3 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.implication-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.implication-content strong {
    color: #2d3748;
}

/* Playbook Steps */
.playbook-intro {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #0078b0;
}

.playbook-intro p {
    margin: 0;
    line-height: 1.8;
    color: #2d3748;
}

.playbook-intro strong {
    color: #0078b0;
}

.playbook-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.step-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(5px);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078b0 0%, #00c6ff 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-benefit {
    background: #f0f9ff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #0078b0;
}

.playbook-conclusion {
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

.playbook-conclusion h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.playbook-conclusion i {
    color: #00c6ff;
}

.playbook-conclusion p {
    line-height: 1.8;
    margin: 0;
    opacity: 0.9;
}

/* Risks Grid */
.risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.risk-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #e53e3e;
}

.risk-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.risk-header i {
    font-size: 1.5rem;
    color: #e53e3e;
}

.risk-header h3 {
    color: #2d3748;
    margin: 0;
    font-size: 1.2rem;
}

.risk-content p {
    margin: 10px 0;
    line-height: 1.6;
    color: #4a5568;
}

.risk-content strong {
    color: #2d3748;
}

/* Vision Statement */
.vision-statement {
    margin: 50px 0;
}

.vision-content blockquote {
    background: #f7fafc;
    border-left: 4px solid #0078b0;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    margin: 0 0 40px 0;
    font-style: italic;
}

.vision-content blockquote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 20px;
}

.vision-content blockquote em {
    color: #0078b0;
    font-style: normal;
}

.vision-content blockquote footer {
    color: #718096;
    font-size: 0.9rem;
    text-align: right;
}

.vision-action {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.vision-action h3 {
    color: #0078b0;
    margin-top: 0;
    margin-bottom: 15px;
}

.vision-action p {
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
}

.vision-action .btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Readiness Quiz */
.readiness-quiz {
    background: #f7fafc;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

.quiz-question p {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 15px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-option:hover {
    background: #f0f9ff;
    border-color: #0078b0;
}

.quiz-option input {
    margin-right: 10px;
}

.quiz-option span {
    flex: 1;
    font-size: 0.9rem;
    color: #4a5568;
}

.quiz-submit {
    background: #0078b0;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    transition: background 0.3s ease;
}

.quiz-submit:hover {
    background: #004466;
}

.quiz-result {
    margin-top: 15px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.quiz-result.excellent {
    background: #c6f6d5;
    color: #22543d;
    display: block;
}

.quiz-result.good {
    background: #fed7d7;
    color: #742a2a;
    display: block;
}

.quiz-result.needs-work {
    background: #feebc8;
    color: #744210;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shift-body {
        flex-direction: column;
        text-align: center;
    }
    
    .shift-icon {
        margin: 0 auto;
    }
    
    .summary-highlights,
    .winners-grid,
    .predictions-grid,
    .uae-implications,
    .risks-grid {
        grid-template-columns: 1fr;
    }
    
    .implication-card {
        flex-direction: column;
        text-align: center;
    }
    
    .implication-icon {
        margin: 0 auto;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .summary-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .vision-action .btn-large {
        width: 100%;
    }
}