/* =========================================================
   APPLE-STYLE SCROLL-DRIVEN ELEVATOR HISTORY INTERFACE
========================================================= */

.apple-elevator-container {
    position: relative;
    width: 100%;
    z-index: 1;
    background: transparent;
}

.elevator-slide {
    position: relative;
    min-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
    background: transparent;
}

.slide-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* İki Sütunlu Grid */
.apple-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.apple-grid-layout.reverse {
    direction: rtl;
}
.apple-grid-layout.reverse .slide-text-box,
.apple-grid-layout.reverse .slide-image-box {
    direction: ltr;
}

/* Saf Görsel Hücreleri */
.slide-image-box {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image-box img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.elevator-slide:hover .slide-image-box img {
    transform: scale(1.03);
}

/* Metin Hücreleri */
.slide-text-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.giant-apple-text {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: bold;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 15px;
}

.apple-intro-sub {
    font-size: 1.45rem;
    color: #a1a1a6;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.apple-body-story {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #e5e5ea;
    font-weight: normal;
    text-align: justify;
}

.text-center-forced {
    text-align: center !important;
}

/* Gösterge Animasyonu */
.scroll-indicator {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 30px;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

.finale-slide {
    min-height: 65vh;
}

.finale-bento-box {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    max-width: 850px;
    margin: 0 auto;
}

.finale-avatar-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(169, 0, 0, 0.4);
}

.finale-avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apple-action-btn {
    margin-top: 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

/* Belirgin Asansör Tırmanış Animasyonu */
.elevator-slide.reveal {
    opacity: 0;
    transform: translateY(180px) scale(0.92);
    transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1), transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
}

.elevator-slide.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media screen and (max-width: 968px) {
    .apple-grid-layout, .apple-grid-layout.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    .giant-apple-text { font-size: 3.2rem; }
    .apple-intro-sub { font-size: 1.2rem; }
    .elevator-slide { padding: 60px 5%; min-height: auto; }
}