/* ========================================
   INVESTMENT OUTLOOK PAGE - ENHANCED
   Institutional Visual Elements | Data-Driven
   Executive-Level Design | Investment-Grade
   ======================================== */

/* Hero Enhancement */
.hero {
    background: linear-gradient(135deg, #272147 0%, #3a316a 50%, #4d6db8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(114, 139, 199, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(77, 109, 184, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
}

/* Section Separators */
.section::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4d6db8, transparent);
    margin: 0 auto;
    opacity: 0.3;
}

.section-dark::after {
    background: linear-gradient(90deg, transparent, #96a9d5, transparent);
}

/* Highlight Statistics Cards */
.stat-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-highlight-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #4d6db8;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stat-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(77, 109, 184, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #272147;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #272147 0%, #4d6db8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4d6db8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Insight Blocks - Replace Dense Text */
.insight-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.insight-block {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 3px solid #4d6db8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.insight-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #272147;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.insight-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-block li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.insight-block li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4d6db8;
    font-weight: 700;
}

/* Data Panels */
.data-panel {
    background: linear-gradient(135deg, #272147 0%, #3a316a 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.data-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(114, 139, 199, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.data-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.data-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.data-metric {
    text-align: center;
}

.data-metric-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: #96a9d5;
    margin-bottom: 0.5rem;
}

.data-metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-metric-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Infographic Blocks */
.infographic-section {
    background: #f8f9fa;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.info-block {
    text-align: center;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4d6db8 0%, #728bc7 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #272147;
    margin-bottom: 0.5rem;
}

.info-label {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
}

/* Section Background Alternation */
.section-off-white {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.section-light {
    background: #ffffff;
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(77, 109, 184, 0.2), transparent);
}

/* Enhanced Outlook Cards */
.outlook-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.outlook-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #4d6db8, #728bc7);
    transition: height 0.4s ease;
}

.outlook-card:hover::before {
    height: 100%;
}

.outlook-card:hover {
    border-left-color: transparent;
}

/* Chart Enhancements */
.chart-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(77, 109, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.chart-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(114, 139, 199, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.chart-wrapper-large {
    position: relative;
    z-index: 10;
}

/* Content Restructure */
.structured-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 2rem;
}

.content-block h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #272147;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.75;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
}

.content-block strong {
    color: #4d6db8;
    font-weight: 700;
}

/* Bullet Points Enhancement */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bullet-list li {
    font-size: 1rem;
    line-height: 1.75;
    color: #2c2c2c;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4d6db8, #728bc7);
    border-radius: 50%;
}

/* Section Transitions */
.section {
    transition: all 0.3s ease;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient Overlay for Dark Sections */
.section-dark {
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(114, 139, 199, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(77, 109, 184, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-dark .container {
    position: relative;
    z-index: 10;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .stat-highlight-grid,
    .data-panel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .insight-blocks {
        grid-template-columns: 1fr;
    }
    
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .infographic-grid {
        grid-template-columns: 1fr;
    }
    
    .data-panel {
        padding: 2rem 1.5rem;
    }
    
    .stat-highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
