:root {
    --brand-orange: #ff7b00;
    --primary-green: #2ecc71;
}

.about-story-section {
    padding: 100px 20px;
    background: #ffffff;
    /* Premier dark background comment intact, currently rendering clean light canvas */
    color: #0f0f0f;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}


/* Static Left Side */

.story-static-text {
    flex: 1;
}

.story-static-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-green {
    color: var(--primary-green);
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-orange);
    display: block;
}


/* Right Side: Vertical Slider Window */

.vertical-slider-window {
    flex: 1;
    height: 550px;
    /* Adjust height to match your premier style */
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vertical-track {
    display: flex;
    flex-direction: column;
    /* This makes it vertical */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.v-slide {
    height: 100%;
    /* Matches window height */
    width: 100%;
    flex-shrink: 0;
}

.v-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Vertical Navigation Controls */

.v-slider-controls {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
}

.v-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.v-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}


/* ==============================================
   PREMIER RESPONSIVE RESPONSIVE GRID (TABLETS)
   ============================================== */

@media (max-width: 992px) {
    .about-story-section {
        padding: 60px 30px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .story-static-text, 
    .vertical-slider-window {
        width: 100%;
        flex: none;
    }

    .vertical-slider-window {
        height: 450px;
    }
}


/* ==============================================
   PREMIER RESPONSIVE RESPONSIVE GRID (PHONES)
   ============================================== */

@media (max-width: 768px) {
    .about-story-section {
        padding: 40px 20px;
    }

    .story-static-text h2 {
        font-size: 2rem;
        text-align: left;
    }

    .story-stats {
        gap: 30px;
        margin-top: 30px;
        padding-top: 20px;
        justify-content: flex-start;
    }

    .stat-num {
        font-size: 2.3rem;
    }

    .story-stats p {
        font-size: 0.85rem;
    }

    .vertical-slider-window {
        height: 380px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .v-slider-controls {
        right: 15px;
        gap: 10px;
    }

    .v-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}


/* ==============================================
   SMALL HANDSET OPTIMIZATIONS (COMPACT PHONES)
   ============================================== */

@media (max-width: 480px) {
    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .vertical-slider-window {
        height: 320px;
    }
}