@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-element.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

.aksi-page-wrapper {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.aksi-page-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ffd9b3 0%, #ffe8cc 100%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.aksi-page-wrapper::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #c9b3ff 0%, #e0d4ff 100%);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.aksi-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    color: #2e8b57;
    text-align: left;
    margin-bottom: 50px;
}

.aksi-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.combined-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
    position: relative;
    padding: 80px 100px;
}

.combined-container > .action-buttons,
.combined-container > .content-area {
    position: relative;
    z-index: 5;
    margin-left: 10%;
    margin-top: 80px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-width: 320px;
    position: relative;
}

.action-buttons::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #d4f4dd 0%, #e8f9ec 100%);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 45px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #b8c9f0 0%, #98aed8 100%);
    color: #777;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.action-btn img {
    width: 36px;
    height: 36px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.action-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.action-btn.active {
    background: linear-gradient(135deg, #FF9966 0%, #FF7744 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 102, 51, 0.3);
}

.action-btn.active img {
    filter: brightness(1.2);
}

.content-area {
    flex: 1;
    position: relative;
    min-height: 550px;
    background: transparent;
}

.content-item {
    display: none;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.content-item.active {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-text {
    background: white;
    border-radius: 30px;
    padding: 50px 55px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 550px;
    z-index: 3;
    margin-top: 0;
}

.content-text::before {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 80px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 0 20px;
    border-color: white transparent transparent transparent;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.04));
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8B4789;
    margin-bottom: 20px;
}

.content-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.content-image {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 450px;
    z-index: 10;
}

.character-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.combined-container .corner-img {
    position: absolute;
    pointer-events: none;
    opacity: 0.85;
}

.corner-img.top-right {
    top: -20px;
    right: -20px;
    width: 460px;
    height: auto;
    z-index: 2;
}

.corner-img.bottom-left {
    bottom: -20px;
    left: -30px;
    width: 420px;
    height: auto;
    z-index: 1;
}

.corner-img.bottom-right {
    bottom: 20px;
    right: 48px;
    width: 420px;
    height: auto;
    z-index: 1;
}

@media (max-width: 992px) {
    .combined-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
        padding: 40px 30px;
    }

    .page-title {
        font-size: 48px;
        text-align: center;
    }

    .action-buttons {
        flex-direction: row;
        min-width: 100%;
        overflow-x: auto;
        justify-content: center;
        flex-wrap: wrap;
    }

    .action-btn {
        flex-shrink: 0;
        min-width: 200px;
        padding: 20px 35px;
        font-size: 18px;
    }

    .action-btn img {
        width: 32px;
        height: 32px;
    }

    .content-text {
        max-width: 100%;
        padding: 40px 50px;
    }

    .content-text h2 {
        font-size: 30px;
    }

    .content-text p {
        font-size: 17px;
    }

    .content-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 350px;
        margin: 30px auto 0;
        display: block;
    }

    .corner-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 38px;
        text-align: center;
        margin-bottom: 30px;
    }

    .combined-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .action-buttons {
        gap: 15px;
    }

    .action-btn {
        padding: 16px 28px;
        font-size: 17px;
        min-width: auto;
    }

    .action-btn img {
        width: 28px;
        height: 28px;
    }

    .content-text {
        padding: 35px 40px;
    }

    .content-text h2 {
        font-size: 26px;
    }

    .content-text p {
        font-size: 16px;
    }

    .content-image {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }

    .combined-container {
        padding: 20px 15px;
    }

    .action-btn {
        padding: 14px 24px;
        font-size: 16px;
        gap: 12px;
    }

    .action-btn img {
        width: 24px;
        height: 24px;
    }

    .content-text {
        padding: 30px 35px;
        border-radius: 25px;
    }

    .content-text h2 {
        font-size: 22px;
    }

    .content-text p {
        font-size: 15px;
    }

    .content-image {
        width: 220px;
    }
}
