:root {
    --journey-bg: linear-gradient(135deg, #07111e 0%, #111827 45%, #172033 100%);
    --journey-panel: rgba(15, 23, 42, 0.78);
    --journey-border: rgba(255, 255, 255, 0.12);
    --journey-accent: #6f42c1;
    --journey-gold: #000;
    --journey-text: #eff6ff;
    --journey-muted: #dbe4f0;
}

.journey-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 140px 0 70px;
    background:
        linear-gradient(110deg,
            rgba(7, 17, 30, 0.86),
            rgba(17, 24, 39, 0.78),
            rgba(111, 66, 193, 0.46)),
        url("../images/banner-3.jpg") center/cover no-repeat;
    color: #fff;
}

.journey-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(7, 17, 30, 0.15),
            rgba(7, 17, 30, 0.35));
}

.journey-hero .container {
    position: relative;
    z-index: 1;
    /* max-width: 900px; */
}

.wrapper_header {
    width: 60%;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 14px;
}

.journey-hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 14px;
    color: #fff;
}

.hero-copy {
    max-width: 640px;
    color: #edf2ff;
    font-size: 1.08rem;
    line-height: 1.75;
}

.journey-section {
    padding: 100px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.journey-head {
    margin-bottom: 50px;
}

.journey-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.journey-head p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.journey-layout {
    display: grid;
    grid-template-columns: 42% 120px 58%;
    gap: 40px;
    align-items: center;
}

.journey-content {
    height: 700px;
}

.journey-swiper,
.journey-swiper .swiper-wrapper,
.journey-swiper .swiper-slide {
    height: 100%;
}

.journey-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 30px;
}

.journey-card h1 {
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 1;
    font-weight: 300;
    color: #0440ab;
    margin-bottom: 30px;
}

.journey-card ul {
    margin: 0;
    padding-left: 30px;
}

.journey-card li {
    color: #333;
}

.journey-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111;
}

.journey-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.journey-timeline {
    position: relative;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-line {
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e4161d6e;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e3171fba;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    background: #e2171f;
    transform: scale(1.3);
}

.timeline-year {
    font-size: 1rem;
    font-weight: 400;
    color: #0440abc2;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-year {
    color: #0440ab;
    font-weight: 700;
}

.journey-images {
    height: 700px;
    overflow: hidden;
}

.journey-image-swiper,
.journey-image-swiper .swiper-wrapper,
.journey-image-swiper .swiper-slide {
    height: 100%;
}

.journey-image-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-image-swiper .swiper-slide {
    overflow: hidden;
}

.journey-image-swiper img {
    transition: transform 1s ease;
}

.journey-image-swiper .swiper-slide-active img {
    transform: scale(1.03);
}

@media (min-width: 1600px) {

    .journey-layout {
        grid-template-columns: 40% 140px 60%;
        gap: 60px;
    }

    .journey-card h1 {
        font-size: 10rem;
    }

    .timeline-year {
        font-size: 2rem;
    }
}

@media (max-width: 1199px) {

    .journey-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-content {
        height: 350px;
    }

    .journey-images {
        height: 500px;
    }

    .journey-timeline {
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 30px;
        padding-bottom: 15px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        min-width: 70px;
        gap: 10px;
    }

    .timeline-year {
        font-size: 1rem;
        white-space: nowrap;
    }

    .wrapper_header {
        width: 90%;
    }
}

@media (max-width: 768px) {

    .journey-section {
        padding: 70px 0;
    }

    .journey-title {
        font-size: 2rem;
    }

    .journey-head p {
        font-size: 1rem;
    }

    .journey-card {
        padding-right: 0;
    }

    .journey-card h1 {
        font-size: 4rem;
        margin-bottom: 20px;
    }

    .journey-card h3 {
        font-size: 1.5rem;
    }

    .journey-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .journey-card ul {
        padding-left: 20px;
    }

    .journey-images {
        height: 320px;
    }

    .timeline-item {
        min-width: 60px;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
    }

    .timeline-year {
        font-size: 0.9rem;
    }
}