     /* ===================== SECTION ===================== */
.glass-journey {
    height: 100vh;
    background: #0b0f14;
    color: #fff;
    overflow: hidden;
}

/* ===================== LAYOUT ===================== */
.journey-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 100%;
    align-items: center;
}

/* ===================== LEFT CONTENT ===================== */
.journey-left {
    padding: 60px;
}

.step-no {
    font-size: 72px;
    font-weight: 700;
    opacity: 0.15;
}

.step-title {
    font-size: 32px;
    margin: 10px 0;
}

.step-desc {
    color: #bdbdbd;
    max-width: 360px;
    line-height: 1.6;
    font-size: 16px;
}

/* ===================== CENTER GLASS ===================== */
.journey-center {
    display: flex;
    justify-content: center;
}

.glass-slab {
    width: 440px;
    height: 440px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.slab-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

/* Glass reflection */
.glass-slab::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.05) 40%,
        rgba(255,255,255,0.15)
    );
    pointer-events: none;
}

/* ===================== RIGHT INDICATOR ===================== */
.journey-right {
    padding: 60px;
}

.step-indicator li {
    list-style: none;
    margin: 14px 0;
    font-size: 14px;
    opacity: 0.3;
}

.step-indicator li.active {
    opacity: 1;
    font-weight: 600;
}

/* ===================== MOBILE ===================== */
@media (max-width: 991px) {
    .journey-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .journey-left, .journey-right {
        padding: 30px;
    }
    .journey-right {
        display: none;
    }
    .step-desc {
        margin: 0 auto;
    }
}