/* ========================================
   STATISTICS METRICS WIDGET
   ======================================== */

.statistics-metrics-widget {
    width: 100%;
}

.statistics-metrics-widget .stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.statistics-metrics-widget .stat-item {
    text-align: center;
    padding-bottom: 60px;
}

.statistics-metrics-widget .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #17a2b8;
    margin-bottom: 8px;
}

.statistics-metrics-widget .stat-label {
    font-size: 16px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .statistics-metrics-widget .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .statistics-metrics-widget .stat-item {
        width: 100%;
    }
}


/* ========================================
   PROCESS TIMELINE WIDGET
   ======================================== */

.process-timeline-widget {
    width: 100%;
}

.process-timeline-widget .timeline-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-timeline-widget .timeline-step {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.process-timeline-widget .step-number {
    flex-shrink: 0;
    font-size: 36px;
    font-weight: 700;
    color: #17a2b8;
    line-height: 1;
}

.process-timeline-widget .step-content {
    flex: 1;
}

.process-timeline-widget .step-title {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 8px 0;
}

.process-timeline-widget .step-description {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.process-timeline-widget .timeline-connector {
    position: absolute;
    left: 17px;
    top: 40px;
    bottom: -40px;
    width: 2px;
    background-color: #dee2e6;
}

.process-timeline-widget .timeline-step:last-child .timeline-connector {
    display: none;
}

@media (max-width: 768px) {
    .process-timeline-widget .step-number {
        font-size: 28px;
    }
    
    .process-timeline-widget .step-title {
        font-size: 20px;
    }
    
    .process-timeline-widget .step-description {
        font-size: 14px;
    }
    
    .process-timeline-widget .timeline-connector {
        left: 13px;
    }
}


/* ========================================
   ARROW CTA WIDGET
   ======================================== */

.arrow-cta-widget {
    width: 100%;
}

.arrow-cta-widget .arrow-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #17a2b8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.arrow-cta-widget .arrow-cta:hover {
    color: #138496;
}

.arrow-cta-widget .arrow-cta:hover .arrow-icon {
    transform: translateX(4px);
}

.arrow-cta-widget .cta-text {
    transition: color 0.3s ease;
}

.arrow-cta-widget .arrow-icon {
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    line-height: 1;
}
