/**
 * About Us Page Styles
 *
 * @package Modex
 */

/* Our Journey Section */
.our-journey-section {
    padding: 80px 0;
    background-color: #fff;
}

.journey-header {
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #FFCC00;
    margin-bottom: 10px;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0A2463;
    text-transform: uppercase;
}

.section-title .highlight {
    color: #FFCC00;
}

.journey-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.journey-text {
    flex: 1;
    min-width: 300px;
}

.journey-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FFCC00;
    color: #0A2463;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0A2463;
    color: #fff;
}

.btn-primary i {
    margin-left: 8px;
}

.journey-visuals {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.journey-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-image img {
    width: 100%;
    height: auto;
    display: block;
}

.journey-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.stat-year, .stat-region {
    font-size: 32px;
    font-weight: 700;
    color: #FFCC00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .journey-content {
        flex-direction: column;
    }
    
    .journey-text, .journey-visuals {
        width: 100%;
    }
    
    .section-title {
        font-size: 32px;
    }
}
